Home | History | Annotate | Download | only in mimeUri

Lines Matching refs:playItf

45 /* PlayItf callback for an audio player */
125 SLPlayItf playItf;
185 res = (*player)->GetInterface(player, SL_IID_PLAY, (void*)&playItf); CheckErr(res);
203 res = (*playItf)->GetDuration(playItf, &durationInMsec); CheckErr(res);
215 res = (*playItf)->RegisterCallback(playItf, PlayEventCallback, &rateItf); CheckErr(res);
216 res = (*playItf)->SetCallbackEventsMask(playItf,
218 res = (*playItf)->SetMarkerPosition(playItf, 1500); CheckErr(res);
219 res = (*playItf)->SetPositionUpdatePeriod(playItf, 500); CheckErr(res);
227 res = (*playItf)->SetPlayState( playItf, SL_PLAYSTATE_PAUSED ); CheckErr(res);
244 res = (*playItf)->GetDuration(playItf, &durationInMsec); CheckErr(res);
252 res = (*playItf)->SetPlayState( playItf, SL_PLAYSTATE_PLAYING ); CheckErr(res);
264 res = (*playItf)->SetPlayState(playItf, SL_PLAYSTATE_STOPPED); CheckErr(res);