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

  /frameworks/wilhelm/src/objects/
CAudioPlayer.c 17 /** \file CAudioPlayer.c AudioPlayer class */
84 CAudioPlayer *audioPlayer = track->mAudioPlayer;
85 if (NULL == audioPlayer) {
88 assert(audioPlayer == thiz);
104 COutputMix *CAudioPlayer_GetOutputMix(CAudioPlayer *audioPlayer)
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/
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...]
IPlay.c 35 CAudioPlayer *audioPlayer = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ?
59 if ((NULL != audioPlayer) && (audioPlayer->mBufferQueue.mFront !=
60 audioPlayer->mBufferQueue.mRear)) {
184 // will be set by containing AudioPlayer or MidiPlayer object at Realize, if known,
224 CAudioPlayer *audioPlayer = (CAudioPlayer *) thiz->mThis;
225 SLmillisecond pos = audioPlayer->mSeek.mPos;
395 CAudioPlayer *audioPlayer = (CAudioPlayer *) thiz->mThis;
397 (long long) audioPlayer->mSampleRateMilliHz) / 1000000LL;
IBufferQueue.c 90 CAudioPlayer *audioPlayer = (CAudioPlayer *) thiz->mThis;
92 result = android_audioPlayer_bufferQueue_onClear(audioPlayer);
IEffectSend.c 42 CAudioPlayer *audioPlayer = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ?
44 if (NULL == audioPlayer) {
48 COutputMix *outputMix = CAudioPlayer_GetOutputMix(audioPlayer);
  /frameworks/wilhelm/src/desktop/
SndFile.c 135 /** \brief Check whether the partially-constructed AudioPlayer is compatible with libsndfile */
188 void audioPlayerTransportUpdate(CAudioPlayer *audioPlayer)
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
    [all...]
  /frameworks/wilhelm/tests/mimeUri/
slesTestManyPlayers.cpp 39 SLObjectItf audioPlayer[MAX_NUMBER_PLAYERS];
213 res = (*engineItf)->CreateAudioPlayer(engineItf, &audioPlayer[playerId],
224 res = (*audioPlayer[playerId])->Realize(audioPlayer[playerId], SL_BOOLEAN_FALSE);
234 res = (*audioPlayer[playerId])->GetInterface(audioPlayer[playerId], SL_IID_PLAY,
238 res = (*audioPlayer[playerId])->GetInterface(audioPlayer[playerId], SL_IID_VOLUME,
242 res = (*audioPlayer[playerId])->GetInterface(audioPlayer[playerId], SL_IID_PREFETCHSTATUS
    [all...]
  /frameworks/wilhelm/src/
sync.c 80 CAudioPlayer *audioPlayer = (CAudioPlayer *) instance;
81 audioPlayerTransportUpdate(audioPlayer);
sles_allinclusive.h 400 extern void audioPlayerTransportUpdate(CAudioPlayer *audioPlayer);
413 extern COutputMix *CAudioPlayer_GetOutputMix(CAudioPlayer *audioPlayer);
  /frameworks/ex/variablespeed/jni/
variablespeed.cc 219 static void setAudioStreamType(SLObjectItf audioPlayer, SLint32 audioStreamType) {
221 OpenSL(audioPlayer, GetInterface, SL_IID_ANDROIDCONFIGURATION, &playerConfig);
575 SLObjectItf &audioPlayer, SLEngineItf &engineInterface) {
593 OpenSL(engineInterface, CreateAudioPlayer, &audioPlayer, &playingSrc,
595 setAudioStreamType(audioPlayer, audioStreamType);
596 OpenSL(audioPlayer, Realize, SL_BOOLEAN_FALSE);
680 SLObjectItf audioPlayer = NULL;
696 GetSLChannels(), audioStreamType_, outputMix, audioPlayer,
698 OpenSL(audioPlayer, GetInterface, SL_IID_PLAY, &audioPlayerPlay);
699 OpenSL(audioPlayer, GetInterface, SL_IID_ANDROIDSIMPLEBUFFERQUEUE
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/background/js/
background.js 800 var audioPlayer = null;
820 audioPlayer = new SingletonAppWindowWrapper('audio_player.html',
833 audioPlayer.launch(playlist, false, function(appWindow) {
834 audioPlayer.setIcon(AUDIO_PLAYER_ICON);
835 AppWindowWrapper.focusOnDesktop(audioPlayer.rawAppWindow,
887 audioPlayer.reopen(function() {
888 // If the audioPlayer is reopened, change its window's icon. Otherwise
890 if (audioPlayer.rawAppWindow)
891 audioPlayer.setIcon(AUDIO_PLAYER_ICON);

Completed in 201 milliseconds