Class ServiceDescriptionElement
- java.lang.Object
-
- com.google.android.exoplayer2.source.dash.manifest.ServiceDescriptionElement
-
@Deprecated public final class ServiceDescriptionElement extends Object
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Represents a service description element.
-
-
Field Summary
Fields Modifier and Type Field Description longmaxOffsetMsDeprecated.The maximum live offset in milliseconds, orC.TIME_UNSETif undefined.floatmaxPlaybackSpeedDeprecated.The maximum factor by which playback can be sped up for live speed adjustment, orC.RATE_UNSETif undefined.longminOffsetMsDeprecated.The minimum live offset in milliseconds, orC.TIME_UNSETif undefined.floatminPlaybackSpeedDeprecated.The minimum factor by which playback can be sped up for live speed adjustment, orC.RATE_UNSETif undefined.longtargetOffsetMsDeprecated.The target live offset in milliseconds, orC.TIME_UNSETif undefined.
-
Constructor Summary
Constructors Constructor Description ServiceDescriptionElement(long targetOffsetMs, long minOffsetMs, long maxOffsetMs, float minPlaybackSpeed, float maxPlaybackSpeed)Deprecated.Creates a service description element.
-
-
-
Field Detail
-
targetOffsetMs
public final long targetOffsetMs
Deprecated.The target live offset in milliseconds, orC.TIME_UNSETif undefined.
-
minOffsetMs
public final long minOffsetMs
Deprecated.The minimum live offset in milliseconds, orC.TIME_UNSETif undefined.
-
maxOffsetMs
public final long maxOffsetMs
Deprecated.The maximum live offset in milliseconds, orC.TIME_UNSETif undefined.
-
minPlaybackSpeed
public final float minPlaybackSpeed
Deprecated.The minimum factor by which playback can be sped up for live speed adjustment, orC.RATE_UNSETif undefined.
-
maxPlaybackSpeed
public final float maxPlaybackSpeed
Deprecated.The maximum factor by which playback can be sped up for live speed adjustment, orC.RATE_UNSETif undefined.
-
-
Constructor Detail
-
ServiceDescriptionElement
public ServiceDescriptionElement(long targetOffsetMs, long minOffsetMs, long maxOffsetMs, float minPlaybackSpeed, float maxPlaybackSpeed)Deprecated.Creates a service description element.- Parameters:
targetOffsetMs- The target live offset in milliseconds, orC.TIME_UNSETif undefined.minOffsetMs- The minimum live offset in milliseconds, orC.TIME_UNSETif undefined.maxOffsetMs- The maximum live offset in milliseconds, orC.TIME_UNSETif undefined.minPlaybackSpeed- The minimum factor by which playback can be sped up for live speed adjustment, orC.RATE_UNSETif undefined.maxPlaybackSpeed- The maximum factor by which playback can be sped up for live speed adjustment, orC.RATE_UNSETif undefined.
-
-