Skip to content

Commit

Permalink
Fix stale javadoc in DashUtil
Browse files Browse the repository at this point in the history
The type of this parameter was changed when it was moved from
OfflineLicenseHelper to DashUtil in
<unknown commit>

PiperOrigin-RevId: 433770325
  • Loading branch information
icbaker authored and ojw28 committed Mar 15, 2022

Verified

This commit was signed with the committer’s verified signature.
minrk Min RK
1 parent 64d174b commit 06639e0
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -33,7 +33,6 @@
import com.google.android.exoplayer2.source.dash.manifest.Representation;
import com.google.android.exoplayer2.upstream.DataSource;
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.util.Assertions;
import com.google.android.exoplayer2.util.MimeTypes;
@@ -83,7 +82,7 @@ public static DataSpec buildDataSpec(
/**
* 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.
* @return An instance of {@link DashManifest}.
* @throws IOException Thrown when there is an error while loading.
@@ -95,7 +94,7 @@ public static DashManifest loadManifest(DataSource dataSource, Uri uri) throws I
/**
* 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}.
* @return The loaded {@link Format}, or null if none is defined.
* @throws IOException Thrown when there is an error while loading.

0 comments on commit 06639e0

Please sign in to comment.