Lines Matching full:player
64 /* PlayItf callback for an audio player */
107 /* PrefetchStatusItf callback for an audio player */
191 SLObjectItf player;
213 // Create Output Mix object to be used by player
237 /* Create the audio player */
244 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink,
247 /* Realizing the player in synchronous mode. */
248 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res);
252 res = (*player)->GetInterface(player, SL_IID_PLAY, (void*)&playItf); CheckErr(res);
254 res = (*player)->GetInterface(player, SL_IID_SEEK, (void*)&seekItf); CheckErr(res);
256 res = (*player)->GetInterface(player, SL_IID_PLAYBACKRATE, (void*)&rateItf); CheckErr(res);
258 res = (*player)->GetInterface(player, SL_IID_PREFETCHSTATUS, (void*)&prefetchItf);
336 /* first cause the player to prefetch the data */
385 /* Destroy the player */
386 (*player)->Destroy(player);