Interface ExtractorOutput
-
- All Known Implementing Classes:
BundledChunkExtractor,DummyExtractorOutput,FakeExtractorOutput,StartOffsetExtractorOutput
@Deprecated public interface ExtractorOutput
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.Receives stream level data extracted by anExtractor.
-
-
Field Summary
Fields Modifier and Type Field Description static ExtractorOutputPLACEHOLDERDeprecated.PlaceholderExtractorOutputimplementation throwing anUnsupportedOperationExceptionin each method.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidendTracks()Deprecated.Called when all tracks have been identified, meaning no newtrackIdvalues will be passed totrack(int, int).voidseekMap(SeekMap seekMap)Deprecated.Called when aSeekMaphas been extracted from the stream.TrackOutputtrack(int id, @com.google.android.exoplayer2.C.TrackType int type)Deprecated.Called by theExtractorto get theTrackOutputfor a specific track.
-
-
-
Field Detail
-
PLACEHOLDER
static final ExtractorOutput PLACEHOLDER
Deprecated.PlaceholderExtractorOutputimplementation throwing anUnsupportedOperationExceptionin each method.
-
-
Method Detail
-
track
TrackOutput track(int id, @com.google.android.exoplayer2.C.TrackType int type)
Deprecated.Called by theExtractorto get theTrackOutputfor a specific track.The same
TrackOutputis returned if multiple calls are made with the sameid.- Parameters:
id- A track identifier.type- Thetrack type.- Returns:
- The
TrackOutputfor the given track identifier.
-
endTracks
void endTracks()
Deprecated.Called when all tracks have been identified, meaning no newtrackIdvalues will be passed totrack(int, int).
-
-