Class StandaloneMediaClock
- java.lang.Object
-
- com.google.android.exoplayer2.util.StandaloneMediaClock
-
- All Implemented Interfaces:
MediaClock
public final class StandaloneMediaClock extends Object implements MediaClock
AMediaClockwhose position advances with real time based on the playback parameters when started.
-
-
Constructor Summary
Constructors Constructor Description StandaloneMediaClock(Clock clock)Creates a new standalone media clock using the givenClockimplementation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PlaybackParametersgetPlaybackParameters()Returns the active playback parameters.longgetPositionUs()Returns the current media position in microseconds.voidresetPosition(long positionUs)Resets the clock's position.voidsetPlaybackParameters(PlaybackParameters playbackParameters)Attempts to set the playback parameters.voidstart()Starts the clock.voidstop()Stops the clock.
-
-
-
Method Detail
-
start
public void start()
Starts the clock. Does nothing if the clock is already started.
-
stop
public void stop()
Stops the clock. Does nothing if the clock is already stopped.
-
resetPosition
public void resetPosition(long positionUs)
Resets the clock's position.- Parameters:
positionUs- The position to set in microseconds.
-
getPositionUs
public long getPositionUs()
Description copied from interface:MediaClockReturns the current media position in microseconds.- Specified by:
getPositionUsin interfaceMediaClock
-
setPlaybackParameters
public void setPlaybackParameters(PlaybackParameters playbackParameters)
Description copied from interface:MediaClockAttempts to set the playback parameters. The media clock may override the speed if changing the playback parameters is not supported.- Specified by:
setPlaybackParametersin interfaceMediaClock- Parameters:
playbackParameters- The playback parameters to attempt to set.
-
getPlaybackParameters
public PlaybackParameters getPlaybackParameters()
Description copied from interface:MediaClockReturns the active playback parameters.- Specified by:
getPlaybackParametersin interfaceMediaClock
-
-