Fix DashChunkSource @param name

This needs to match with the implementation for Dackka javadoc generation to succeed.

PiperOrigin-RevId: 396377019
This commit is contained in:
andrewlewis 2021-09-13 17:44:54 +01:00 committed by Christos Tsilopoulos
parent f8d60e2bbb
commit ee11d08760

View File

@ -40,7 +40,7 @@ public interface DashChunkSource extends ChunkSource {
* @param periodIndex The index of the corresponding period in the manifest. * @param periodIndex The index of the corresponding period in the manifest.
* @param adaptationSetIndices The indices of the corresponding adaptation sets in the period. * @param adaptationSetIndices The indices of the corresponding adaptation sets in the period.
* @param trackSelection The track selection. * @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 * @param elapsedRealtimeOffsetMs If known, an estimate of the instantaneous difference between
* server-side unix time and {@link SystemClock#elapsedRealtime()} in milliseconds, * 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} * 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 periodIndex,
int[] adaptationSetIndices, int[] adaptationSetIndices,
ExoTrackSelection trackSelection, ExoTrackSelection trackSelection,
@C.TrackType int type, @C.TrackType int trackType,
long elapsedRealtimeOffsetMs, long elapsedRealtimeOffsetMs,
boolean enableEventMessageTrack, boolean enableEventMessageTrack,
List<Format> closedCaptionFormats, List<Format> closedCaptionFormats,