Remove deprecated DashMediaSource.DEFAULT_LIVE_PRESENTATION_DELAY_MS

Use `DashMediaSource.DEFAULT_FALLBACK_TARGET_LIVE_OFFSET_MS` instead.

PiperOrigin-RevId: 636906922
This commit is contained in:
ibaker 2024-05-24 07:08:49 -07:00 committed by Copybara-Service
parent 0f1f6bfa41
commit 2ab1c75ca7
2 changed files with 2 additions and 5 deletions

View File

@ -209,6 +209,8 @@
instead.
* Remove `DefaultHttpDataSource` constructors. Use
`DefaultHttpDataSource.Factory` instead.
* Remove `DashMediaSource.DEFAULT_LIVE_PRESENTATION_DELAY_MS`. Use
`DashMediaSource.DEFAULT_FALLBACK_TARGET_LIVE_OFFSET_MS` instead.
## 1.4

View File

@ -387,11 +387,6 @@ public final class DashMediaSource extends BaseMediaSource {
*/
public static final long DEFAULT_FALLBACK_TARGET_LIVE_OFFSET_MS = 30_000;
/**
* @deprecated Use {@link #DEFAULT_FALLBACK_TARGET_LIVE_OFFSET_MS} instead.
*/
@Deprecated public static final long DEFAULT_LIVE_PRESENTATION_DELAY_MS = 30_000;
/** The media id used by media items of dash media sources without a manifest URI. */
public static final String DEFAULT_MEDIA_ID = "DashMediaSource";