Lines Matching full:rate
1146 * Sets the playback rate.
1151 * rate - rate (28-bit fractional amount)
1160 EAS_PUBLIC EAS_RESULT EAS_SetPlaybackRate (EAS_DATA_HANDLE pEASData, EAS_HANDLE pStream, EAS_U32 rate)
1164 if ((rate < (1 << 27)) || (rate > (1 << 29)))
1170 * maximum rate of 2.0 (2^28) is 2047 (2^13-1). To accomodate a
1171 * longer frame length or a higher maximum rate, the fixed point
1174 pStream->frameLength = (AUDIO_FRAME_LENGTH * (rate >> 8)) >> 20;
1176 /* notify stream of new playback rate */
1177 EAS_SetStreamParameter(pEASData, pStream, PARSER_DATA_PLAYBACK_RATE, (EAS_I32) rate);