Home | History | Annotate | Download | only in streamSource

Lines Matching defs:player

72 /* AndroidBufferQueueItf callback for an audio player */
196 SLObjectItf player;
225 // Create Output Mix object to be used by player
249 /* Create the audio player */
250 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink,
253 /* Realizing the player in synchronous mode. */
254 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res);
258 res = (*player)->GetInterface(player, SL_IID_PLAY, (void*)&playItf); CheckErr(res);
260 res = (*player)->GetInterface(player, SL_IID_VOLUME, (void*)&volItf); CheckErr(res);
262 res = (*player)->GetInterface(player, SL_IID_ANDROIDBUFFERQUEUESOURCE, (void*)&abqItf);
284 /* Set the player volume */
290 /* first cause the player to prefetch the data */
302 * we don't want to starve the player */
316 * we don't want to starve the player */
359 /* Make sure player is stopped */
369 /* Destroy the player */
370 (*player)->Destroy(player);