Home | History | Annotate | Download | only in libopensles

Lines Matching defs:rate

22 static SLresult IPlaybackRate_SetRate(SLPlaybackRateItf self, SLpermille rate)
28 if (!(this->mMinRate <= rate && rate <= this->mMaxRate)) {
32 this->mRate = rate;
38 result = android_audioPlayer_setPlayRate(ap, rate, true);
60 SLpermille rate = this->mRate;
62 *pRate = rate;
119 SLpermille rate, SLuint32 *pCapabilities)
128 if (!(this->mMinRate <= rate && rate <= this->mMaxRate)) {