Home | History | Annotate | Download | only in examples

Lines Matching defs:player

121     SLObjectItf                player;
151 // Create Output Mix object to be used by player
202 /* Create the music player */
203 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player,
207 /* Realizing the player in synchronous mode. */
208 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res);
212 res = (*player)->GetInterface(player, SL_IID_PLAY, (void*)&playItf);
216 res = (*player)->GetInterface(player, SL_IID_BUFFERQUEUE,
263 /* Make sure player is stopped */
266 /* Destroy the player */
267 (*player)->Destroy(player);