docs/doc/reference/com/google/android/exoplayer2/source/chunk/ContainerMediaChunk.html
Package com.google.android.exoplayer2.source.chunk
All Implemented Interfaces:Loader.Loadable
[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public classContainerMediaChunkextends[BaseMediaChunk](BaseMediaChunk.html "class in com.google.android.exoplayer2.source.chunk")
Deprecated. com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.
A BaseMediaChunk that uses an Extractor to decode sample data.
-
clippedEndTimeUs, clippedStartTimeUs
-
chunkIndex
-
dataSource, dataSpec, endTimeUs, loadTaskId, startTimeUs, trackFormat, trackSelectionData, trackSelectionReason, type
Constructors | Constructor | Description |
| --- | --- |
| ContainerMediaChunk(DataSource dataSource, DataSpec dataSpec, Format trackFormat, @com.google.android.exoplayer2.C.SelectionReason int trackSelectionReason, Object trackSelectionData, long startTimeUs, long endTimeUs, long clippedStartTimeUs, long clippedEndTimeUs, long chunkIndex, int chunkCount, long sampleOffsetUs, ChunkExtractor chunkExtractor) |
Deprecated.
|
All Methods Instance Methods Concrete Methods Deprecated Methods | Modifier and Type | Method | Description |
| --- | --- | --- |
| void | cancelLoad() |
Deprecated.
Cancels the load.
|
| long | getNextChunkIndex() |
Deprecated.
Returns the next chunk index or C.INDEX_UNSET if it is not known.
|
| protected ChunkExtractor.TrackOutputProvider | getTrackOutputProvider(BaseMediaChunkOutput baseMediaChunkOutput) |
Deprecated.
Returns the ChunkExtractor.TrackOutputProvider to be used by the wrapped extractor.
|
| boolean | isLoadCompleted() |
Deprecated.
Returns whether the chunk has been fully loaded.
|
| void | load() |
Deprecated.
Performs the load, returning on completion or cancellation. |
-
getFirstSampleIndex, getOutput, init
-
bytesLoaded, getDurationUs, getResponseHeaders, getUri
-
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
public ContainerMediaChunk([DataSource](../../upstream/DataSource.html "interface in com.google.android.exoplayer2.upstream")dataSource,[DataSpec](../../upstream/DataSpec.html "class in com.google.android.exoplayer2.upstream")dataSpec,[Format](../../Format.html "class in com.google.android.exoplayer2")trackFormat,
@com.google.android.exoplayer2.C.SelectionReason int trackSelectionReason,
@Nullable[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")trackSelectionData,
long startTimeUs,
long endTimeUs,
long clippedStartTimeUs,
long clippedEndTimeUs,
long chunkIndex,
int chunkCount,
long sampleOffsetUs,[ChunkExtractor](ChunkExtractor.html "interface in com.google.android.exoplayer2.source.chunk")chunkExtractor)
Deprecated.
Parameters:dataSource - The source from which the data should be loaded.dataSpec - Defines the data to be loaded.trackFormat - See Chunk.trackFormat.trackSelectionReason - See Chunk.trackSelectionReason.trackSelectionData - See Chunk.trackSelectionData.startTimeUs - The start time of the media contained by the chunk, in microseconds.endTimeUs - The end time of the media contained by the chunk, in microseconds.clippedStartTimeUs - The time in the chunk from which output will begin, or C.TIME_UNSET to output from the start of the chunk.clippedEndTimeUs - The time in the chunk from which output will end, or C.TIME_UNSET to output to the end of the chunk.chunkIndex - The index of the chunk, or C.INDEX_UNSET if it is not known.chunkCount - The number of chunks in the underlying media that are spanned by this instance. Normally equal to one, but may be larger if multiple chunks as defined by the underlying media are being merged into a single load.sampleOffsetUs - An offset to add to the sample timestamps parsed by the extractor.chunkExtractor - A wrapped extractor to use for parsing the data.
-
public long getNextChunkIndex()
Deprecated.
Description copied from class: MediaChunk
Returns the next chunk index or C.INDEX_UNSET if it is not known.
Overrides:getNextChunkIndex in class MediaChunk
-
public boolean isLoadCompleted()
Deprecated.
Description copied from class: MediaChunk
Returns whether the chunk has been fully loaded.
Specified by:isLoadCompleted in class MediaChunk
-
public final void cancelLoad()
Deprecated.
Description copied from interface: Loader.Loadable
Cancels the load.
Loadable implementations should ensure that a currently executing Loader.Loadable.load() call will exit reasonably quickly after this method is called. The Loader.Loadable.load() call may exit either by returning or by throwing an IOException.
If there is a currently executing Loader.Loadable.load() call, then the thread on which that call is being made will be interrupted immediately after the call to this method. Hence implementations do not need to (and should not attempt to) interrupt the loading thread themselves.
Although the loading thread will be interrupted, Loadable implementations should not use the interrupted status of the loading thread in Loader.Loadable.load() to determine whether the load has been canceled. This approach is not robust [Internal ref: b/79223737]. Instead, implementations should use their own flag to signal cancelation (for example, using AtomicBoolean).
-
public final void load()
throws[IOException](https://developer.android.com/reference/java/io/IOException.html "class or interface in java.io")
Deprecated.
Description copied from interface: Loader.Loadable
Performs the load, returning on completion or cancellation.
Throws:IOException - If the input could not be loaded.
-
protected[ChunkExtractor.TrackOutputProvider](ChunkExtractor.TrackOutputProvider.html "interface in com.google.android.exoplayer2.source.chunk")getTrackOutputProvider([BaseMediaChunkOutput](BaseMediaChunkOutput.html "class in com.google.android.exoplayer2.source.chunk")baseMediaChunkOutput)
Deprecated.
Returns the ChunkExtractor.TrackOutputProvider to be used by the wrapped extractor.
Parameters:baseMediaChunkOutput - The BaseMediaChunkOutput most recently passed to BaseMediaChunk.init(BaseMediaChunkOutput).Returns:A ChunkExtractor.TrackOutputProvider to be used by the wrapped extractor.