Commit 06639e0a by ibaker Committed by Oliver Woodman

Fix stale javadoc in DashUtil

The type of this parameter was changed when it was moved from
OfflineLicenseHelper to DashUtil in
<unknown commit>

PiperOrigin-RevId: 433770325
parent 64d174b3
...@@ -33,7 +33,6 @@ import com.google.android.exoplayer2.source.dash.manifest.RangedUri; ...@@ -33,7 +33,6 @@ import com.google.android.exoplayer2.source.dash.manifest.RangedUri;
import com.google.android.exoplayer2.source.dash.manifest.Representation; import com.google.android.exoplayer2.source.dash.manifest.Representation;
import com.google.android.exoplayer2.upstream.DataSource; import com.google.android.exoplayer2.upstream.DataSource;
import com.google.android.exoplayer2.upstream.DataSpec; import com.google.android.exoplayer2.upstream.DataSpec;
import com.google.android.exoplayer2.upstream.HttpDataSource;
import com.google.android.exoplayer2.upstream.ParsingLoadable; import com.google.android.exoplayer2.upstream.ParsingLoadable;
import com.google.android.exoplayer2.util.Assertions; import com.google.android.exoplayer2.util.Assertions;
import com.google.android.exoplayer2.util.MimeTypes; import com.google.android.exoplayer2.util.MimeTypes;
...@@ -83,7 +82,7 @@ public final class DashUtil { ...@@ -83,7 +82,7 @@ public final class DashUtil {
/** /**
* Loads a DASH manifest. * Loads a DASH manifest.
* *
* @param dataSource The {@link HttpDataSource} from which the manifest should be read. * @param dataSource The {@link DataSource} from which the manifest should be read.
* @param uri The {@link Uri} of the manifest to be read. * @param uri The {@link Uri} of the manifest to be read.
* @return An instance of {@link DashManifest}. * @return An instance of {@link DashManifest}.
* @throws IOException Thrown when there is an error while loading. * @throws IOException Thrown when there is an error while loading.
...@@ -95,7 +94,7 @@ public final class DashUtil { ...@@ -95,7 +94,7 @@ public final class DashUtil {
/** /**
* Loads a {@link Format} for acquiring keys for a given period in a DASH manifest. * Loads a {@link Format} for acquiring keys for a given period in a DASH manifest.
* *
* @param dataSource The {@link HttpDataSource} from which data should be loaded. * @param dataSource The {@link DataSource} from which data should be loaded.
* @param period The {@link Period}. * @param period The {@link Period}.
* @return The loaded {@link Format}, or null if none is defined. * @return The loaded {@link Format}, or null if none is defined.
* @throws IOException Thrown when there is an error while loading. * @throws IOException Thrown when there is an error while loading.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment