From ee11d087604becfd4f0c4945dd6a5b26e84d5162 Mon Sep 17 00:00:00 2001 From: andrewlewis Date: Mon, 13 Sep 2021 17:44:54 +0100 Subject: [PATCH] Fix `DashChunkSource` @param name This needs to match with the implementation for Dackka javadoc generation to succeed. PiperOrigin-RevId: 396377019 --- .../android/exoplayer2/source/dash/DashChunkSource.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/DashChunkSource.java b/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/DashChunkSource.java index 48865510d1..0cd6ac1c11 100644 --- a/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/DashChunkSource.java +++ b/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/DashChunkSource.java @@ -40,7 +40,7 @@ public interface DashChunkSource extends ChunkSource { * @param periodIndex The index of the corresponding period in the manifest. * @param adaptationSetIndices The indices of the corresponding adaptation sets in the period. * @param trackSelection The track selection. - * @param type The {@link C.TrackType track type}. + * @param trackType The {@link C.TrackType track type}. * @param elapsedRealtimeOffsetMs If known, an estimate of the instantaneous difference between * server-side unix time and {@link SystemClock#elapsedRealtime()} in milliseconds, * specified as the server's unix time minus the local elapsed time. Or {@link C#TIME_UNSET} @@ -58,7 +58,7 @@ public interface DashChunkSource extends ChunkSource { int periodIndex, int[] adaptationSetIndices, ExoTrackSelection trackSelection, - @C.TrackType int type, + @C.TrackType int trackType, long elapsedRealtimeOffsetMs, boolean enableEventMessageTrack, List closedCaptionFormats,