Lines Matching full:speed
190 * The default playback speed, 1x.
569 false /* legacy API, converting to method with position and speed */);
574 * speed.
592 * 2.0f is 2x, 0.5f is half-speed, -2.0f is rewind at 2x speed. 0.0f means nothing is
663 if (DEBUG) { Log.d(TAG, " no valid position or 0 speed, no check needed"); }
981 * Last playback speed reported by the user
1748 * actual playback position. Is a funciton of playback speed.
1749 * @param speed 1.0f is normal playback speed
1752 private static long getCheckPeriodFromSpeed(float speed) {
1753 if (Math.abs(speed) <= 1.0f) {
1756 return Math.max((long)(POSITION_REFRESH_PERIOD_PLAYING_MS / Math.abs(speed)),