Searched defs:audioPlayer (Results 1 - 8 of 8) sorted by relevance

/frameworks/wilhelm/src/
H A Dsync.c80 CAudioPlayer *audioPlayer = (CAudioPlayer *) instance; local
81 audioPlayerTransportUpdate(audioPlayer);
/frameworks/wilhelm/src/objects/
H A DCAudioPlayer.c84 CAudioPlayer *audioPlayer = track->mAudioPlayer; local
85 if (NULL == audioPlayer) {
88 assert(audioPlayer == thiz);
104 COutputMix *CAudioPlayer_GetOutputMix(CAudioPlayer *audioPlayer) argument
106 assert(NULL != audioPlayer);
107 assert(SL_DATALOCATOR_OUTPUTMIX == audioPlayer->mDataSink.mLocator.mLocatorType);
108 SLObjectItf outputMix = audioPlayer->mDataSink.mLocator.mOutputMix.outputMix;
/frameworks/wilhelm/src/itf/
H A DIBufferQueue.c89 CAudioPlayer *audioPlayer = (CAudioPlayer *) thiz->mThis; local
91 result = android_audioPlayer_bufferQueue_onClear(audioPlayer);
H A DIEffectSend.c42 CAudioPlayer *audioPlayer = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
44 if (NULL == audioPlayer) {
48 COutputMix *outputMix = CAudioPlayer_GetOutputMix(audioPlayer);
H A DIPlay.c35 CAudioPlayer *audioPlayer = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
59 if ((NULL != audioPlayer) && (audioPlayer->mBufferQueue.mFront !=
60 audioPlayer->mBufferQueue.mRear)) {
224 CAudioPlayer *audioPlayer = (CAudioPlayer *) thiz->mThis; local
225 SLmillisecond pos = audioPlayer->mSeek.mPos;
395 CAudioPlayer *audioPlayer = (CAudioPlayer *) thiz->mThis; local
397 (long long) audioPlayer->mSampleRateMilliHz) / 1000000LL;
H A DIOutputMixExt.c50 CAudioPlayer *audioPlayer = track->mAudioPlayer; local
51 if (NULL != audioPlayer) {
57 object_lock_exclusive(&audioPlayer->mObject);
58 assert(audioPlayer->mTrack == track);
63 audioPlayer->mPlay.mFramesSinceLastSeek += framesMixed;
64 audioPlayer->mPlay.mFramesSincePositionUpdate += framesMixed;
70 if (audioPlayer->mBufferQueue.mClearRequested) {
73 audioPlayer->mBufferQueue.mFront = &audioPlayer->mBufferQueue.mArray[0];
74 audioPlayer
428 audioPlayerGainUpdate(CAudioPlayer *audioPlayer) argument
[all...]
/frameworks/wilhelm/src/desktop/
H A DSndFile.c188 void audioPlayerTransportUpdate(CAudioPlayer *audioPlayer) argument
191 if (NULL != audioPlayer->mSndFile.mSNDFILE) {
193 object_lock_exclusive(&audioPlayer->mObject);
194 SLboolean empty = 0 == audioPlayer->mBufferQueue.mState.count;
196 audioPlayer->mPrefetchStatus.mLevel = 1000;
197 SLmillisecond pos = audioPlayer->mSeek.mPos;
199 audioPlayer->mSeek.mPos = SL_TIME_UNKNOWN;
201 if (pos > audioPlayer->mPlay.mDuration) {
202 pos = audioPlayer->mPlay.mDuration;
204 audioPlayer
[all...]
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestManyPlayers.cpp39 SLObjectItf audioPlayer[MAX_NUMBER_PLAYERS]; variable
211 res = (*engineItf)->CreateAudioPlayer(engineItf, &audioPlayer[playerId],
222 res = (*audioPlayer[playerId])->Realize(audioPlayer[playerId], SL_BOOLEAN_FALSE);
232 res = (*audioPlayer[playerId])->GetInterface(audioPlayer[playerId], SL_IID_PLAY,
236 res = (*audioPlayer[playerId])->GetInterface(audioPlayer[playerId], SL_IID_VOLUME,
240 res = (*audioPlayer[playerId])->GetInterface(audioPlayer[playerI
[all...]

Completed in 2832 milliseconds