HomeSort by relevance Sort by last modified time
    Searched refs:mPlay (Results 1 - 11 of 11) sorted by null

  /system/media/wilhelm/src/desktop/
SndFile.c 30 SLuint32 state = thisAP->mPlay.mState;
51 slPlayCallback callback = thisAP->mPlay.mCallback;
52 void *context = thisAP->mPlay.mContext;
57 thisAP->mPlay.mPosition = (SLuint32) (((long long) thisAP->mPlay.mFramesSinceLastSeek *
58 1000000LL) / sampleRateMilliHz) + thisAP->mPlay.mLastSeekPosition;
61 SLuint32 frameUpdatePeriod = thisAP->mPlay.mFrameUpdatePeriod;
63 (thisAP->mPlay.mFramesSincePositionUpdate >= frameUpdatePeriod) &&
64 (SL_PLAYEVENT_HEADATNEWPOS & thisAP->mPlay.mEventFlags)) {
68 if ((thisAP->mPlay.mFramesSincePositionUpdate -= thisAP->mPlay.mFrameUpdatePeriod) >
    [all...]
  /system/media/wilhelm/tests/sandbox/
monkey.c 42 SLPlayItf mPlay;
56 assert(NULL != p->mPlay);
57 SLresult result = (*p->mPlay)->SetPlayState(p->mPlay, SL_PLAYSTATE_PAUSED);
64 assert(NULL != p->mPlay);
65 SLresult result = (*p->mPlay)->SetPlayState(p->mPlay, SL_PLAYSTATE_PLAYING);
72 assert(NULL != p->mPlay);
73 SLresult result = (*p->mPlay)->SetPlayState(p->mPlay, SL_PLAYSTATE_STOPPED)
    [all...]
  /system/media/wilhelm/src/
handler_bodies.c 120 android_Player_setPlayState(avp, mp->mPlay.mState, &(mp->mAndroidObjState));
131 assert(SL_PLAYSTATE_PLAYING == ap->mPlay.mState);
142 assert(SL_PLAYSTATE_PLAYING == ap->mPlay.mState);
152 if (SL_PLAYSTATE_PLAYING == mp->mPlay.mState) {
classes.h 36 IPlay mPlay;
237 IPlay mPlay;
318 IPlay mPlay;
classes.c 59 {MPH_PLAY, INTERFACE_IMPLICIT, offsetof(CAudioPlayer, mPlay)},
286 {MPH_PLAY, INTERFACE_IMPLICIT, offsetof(CMidiPlayer, mPlay)},
409 {MPH_XAPLAY, INTERFACE_IMPLICIT, offsetof(CMediaPlayer, mPlay)},
  /system/media/wilhelm/src/android/
MediaPlayer_to_android.cpp 151 if (mp->mPlay.mEventFlags & XA_PLAYEVENT_HEADATEND) {
152 playCallback = mp->mPlay.mCallback;
153 playContext = mp->mPlay.mContext;
155 mp->mPlay.mState = XA_PLAYSTATE_PAUSED;
161 (*playCallback)(&mp->mPlay.mItf, playContext, XA_PLAYEVENT_HEADATEND);
163 SLresult res = EnqueueAsyncCallback_ppi(mp, playCallback, &mp->mPlay.mItf, playContext,
167 &mp->mPlay.mItf, playContext);
240 interface_lock_shared(&mp->mPlay);
241 slPlayCallback callback = mp->mPlay.mCallback;
242 void* callbackPContext = mp->mPlay.mContext
    [all...]
AudioPlayer_to_android.cpp 363 interface_lock_shared(&ap->mPlay);
364 callback = ap->mPlay.mCallback;
365 callbackPContext = ap->mPlay.mContext;
366 interface_unlock_shared(&ap->mPlay);
370 (*callback)(&ap->mPlay.mItf, callbackPContext, SL_PLAYEVENT_HEADATMARKER);
380 interface_lock_shared(&ap->mPlay);
381 callback = ap->mPlay.mCallback;
382 callbackPContext = ap->mPlay.mContext;
383 interface_unlock_shared(&ap->mPlay);
387 (*callback)(&ap->mPlay.mItf, callbackPContext, SL_PLAYEVENT_HEADATNEWPOS)
    [all...]
  /system/media/wilhelm/src/itf/
IOutputMixExt.c 63 audioPlayer->mPlay.mFramesSinceLastSeek += framesMixed;
64 audioPlayer->mPlay.mFramesSincePositionUpdate += framesMixed;
99 switch (audioPlayer->mPlay.mState) {
114 audioPlayer->mPlay.mState = SL_PLAYSTATE_PLAYING;
128 audioPlayer->mPlay.mPosition = (SLmillisecond) 0;
129 audioPlayer->mPlay.mFramesSinceLastSeek = 0;
130 audioPlayer->mPlay.mFramesSincePositionUpdate = 0;
131 audioPlayer->mPlay.mLastSeekPosition = 0;
132 audioPlayer->mPlay.mState = SL_PLAYSTATE_STOPPED;
IBufferQueue.c 31 state = ((CAudioPlayer *) thiz->mThis)->mPlay.mState;
IAndroidBufferQueue.c 35 state = ((CMediaPlayer *) thiz->mThis)->mPlay.mState;
38 state = ((CAudioPlayer *) thiz->mThis)->mPlay.mState;
IEngine.c 593 thiz->mPlay.mDuration = 0;
    [all...]

Completed in 158 milliseconds