Remove local variable for seek duration
This commit is contained in:
parent
949c01b37f
commit
334437137e
|
@ -954,14 +954,12 @@ public abstract class BasePlayer implements
|
|||
|
||||
public void onFastRewind() {
|
||||
if (DEBUG) Log.d(TAG, "onFastRewind() called");
|
||||
final int duration = getSeekDuration();
|
||||
seekBy(-duration);
|
||||
seekBy(-getSeekDuration());
|
||||
}
|
||||
|
||||
public void onFastForward() {
|
||||
if (DEBUG) Log.d(TAG, "onFastForward() called");
|
||||
final int duration = getSeekDuration();
|
||||
seekBy(duration);
|
||||
seekBy(getSeekDuration());
|
||||
}
|
||||
|
||||
private int getSeekDuration() {
|
||||
|
|
Loading…
Reference in New Issue