DefaultLivePlaybackSpeedControl
public interface LivePlaybackSpeedControl
Modifier and Type | Method | Description |
---|---|---|
float |
getAdjustedPlaybackSpeed(long liveOffsetUs,
long bufferedDurationUs) |
Returns the adjusted playback speed in order get closer towards the
target live offset . |
long |
getTargetLiveOffsetUs() |
Returns the current target live offset, in microseconds, or
C.TIME_UNSET if no target
live offset is defined for the current media. |
void |
notifyRebuffer() |
Notifies the live playback speed control that a rebuffer occurred.
|
void |
setLiveConfiguration(MediaItem.LiveConfiguration liveConfiguration) |
Sets the live configuration defined by the media.
|
void |
setTargetLiveOffsetOverrideUs(long liveOffsetUs) |
Sets the target live offset in microseconds that overrides the live offset
configured by the media. |
void setLiveConfiguration(MediaItem.LiveConfiguration liveConfiguration)
liveConfiguration
- The MediaItem.LiveConfiguration
as defined by the media.void setTargetLiveOffsetOverrideUs(long liveOffsetUs)
configured
by the media. Passing C.TIME_UNSET
deletes a previous
override.
If no target live offset is configured by setLiveConfiguration(com.google.android.exoplayer2.MediaItem.LiveConfiguration)
, this override has
no effect.
void notifyRebuffer()
A rebuffer is defined to be caused by buffer depletion rather than a user action. Hence this method is not called during initial buffering or when buffering as a result of a seek operation.
float getAdjustedPlaybackSpeed(long liveOffsetUs, long bufferedDurationUs)
target live offset
.liveOffsetUs
- The current live offset, in microseconds.bufferedDurationUs
- The duration of media that's currently buffered, in microseconds.long getTargetLiveOffsetUs()
C.TIME_UNSET
if no target
live offset is defined for the current media.