Home | History | Annotate | Download | only in mimeUri

Lines Matching defs:player

64 /* PlayItf callback for an audio player */
107 /* PrefetchStatusItf callback for an audio player */
194 SLObjectItf player;
216 // Create Output Mix object to be used by player
240 /* Create the audio player */
247 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink,
250 /* Realizing the player in synchronous mode. */
251 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res);
255 res = (*player)->GetInterface(player, SL_IID_PLAY, (void*)&playItf); CheckErr(res);
257 res = (*player)->GetInterface(player, SL_IID_SEEK, (void*)&seekItf); CheckErr(res);
259 res = (*player)->GetInterface(player, SL_IID_PLAYBACKRATE, (void*)&rateItf); CheckErr(res);
261 res = (*player)->GetInterface(player, SL_IID_PREFETCHSTATUS, (void*)&prefetchItf);
337 /* first cause the player to prefetch the data */
386 /* Destroy the player */
387 (*player)->Destroy(player);