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

  /system/media/opensles/libopensles/
CAudioPlayer.c 17 /** \file CAudioPlayer.c AudioPlayer class */
79 CAudioPlayer *audioPlayer = track->mAudioPlayer;
80 if (NULL == audioPlayer)
82 assert(audioPlayer == this);
98 COutputMix *CAudioPlayer_GetOutputMix(CAudioPlayer *audioPlayer)
100 assert(NULL != audioPlayer);
101 assert(SL_DATALOCATOR_OUTPUTMIX == audioPlayer->mDataSink.mLocator.mLocatorType);
102 SLObjectItf outputMix = audioPlayer->mDataSink.mLocator.mOutputMix.outputMix;
IOutputMixExt.c 50 CAudioPlayer *audioPlayer = track->mAudioPlayer;
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->mBufferQueue.mRear = &audioPlayer->mBufferQueue.mArray[0]
    [all...]
SndFile.c 135 /** \brief Check whether the partially-constructed AudioPlayer is compatible with libsndfile */
183 void audioPlayerTransportUpdate(CAudioPlayer *audioPlayer)
186 if (NULL != audioPlayer->mSndFile.mSNDFILE) {
188 object_lock_exclusive(&audioPlayer->mObject);
189 SLboolean empty = 0 == audioPlayer->mBufferQueue.mState.count;
191 audioPlayer->mPrefetchStatus.mLevel = 1000;
192 SLmillisecond pos = audioPlayer->mSeek.mPos;
194 audioPlayer->mSeek.mPos = SL_TIME_UNKNOWN;
196 if (pos > audioPlayer->mPlay.mDuration) {
197 pos = audioPlayer->mPlay.mDuration
    [all...]
sync.c 80 CAudioPlayer *audioPlayer = (CAudioPlayer *) instance;
81 audioPlayerTransportUpdate(audioPlayer);
IPlay.c 34 CAudioPlayer *audioPlayer = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(this)) ?
55 if ((NULL != audioPlayer) && (audioPlayer->mBufferQueue.mFront !=
56 audioPlayer->mBufferQueue.mRear)) {
167 // will be set by containing AudioPlayer or MidiPlayer object at Realize, if known,
201 CAudioPlayer *audioPlayer = (CAudioPlayer *) this->mThis;
202 SLmillisecond pos = audioPlayer->mSeek.mPos;
354 CAudioPlayer *audioPlayer = (CAudioPlayer *) this->mThis;
356 (long long) audioPlayer->mSampleRateMilliHz) / 1000000LL;
IBufferQueue.c 90 CAudioPlayer *audioPlayer = (CAudioPlayer *) this->mThis;
92 result = android_audioPlayer_bufferQueue_onClear(audioPlayer);
IEffectSend.c 42 CAudioPlayer *audioPlayer = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(this)) ?
44 if (NULL == audioPlayer) {
48 COutputMix *outputMix = CAudioPlayer_GetOutputMix(audioPlayer);
sles_allinclusive.h     [all...]

Completed in 123 milliseconds