docs/doc/reference/com/google/android/exoplayer2/extractor/DummyExtractorOutput.html
Package com.google.android.exoplayer2.extractor
All Implemented Interfaces:ExtractorOutput
[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public final classDummyExtractorOutputextends[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")implements[ExtractorOutput](ExtractorOutput.html "interface in com.google.android.exoplayer2.extractor")
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 fake ExtractorOutput implementation.
-
PLACEHOLDER
Constructors | Constructor | Description |
| --- | --- |
| DummyExtractorOutput() |
Deprecated.
|
All Methods Instance Methods Concrete Methods Deprecated Methods | Modifier and Type | Method | Description |
| --- | --- | --- |
| void | endTracks() |
Deprecated.
Called when all tracks have been identified, meaning no new trackId values will be passed to ExtractorOutput.track(int, int).
|
| void | seekMap(SeekMap seekMap) |
Deprecated.
Called when a SeekMap has been extracted from the stream.
|
| TrackOutput | track(int id, int type) |
Deprecated.
Called by the Extractor to get the TrackOutput for a specific track.
|
-
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
public DummyExtractorOutput()
Deprecated.
-
public[TrackOutput](TrackOutput.html "interface in com.google.android.exoplayer2.extractor")track(int id,
int type)
Deprecated.
Description copied from interface: ExtractorOutput
Called by the Extractor to get the TrackOutput for a specific track.
The same TrackOutput is returned if multiple calls are made with the same id.
Specified by:track in interface ExtractorOutputParameters:id - A track identifier.type - The track type.Returns:The TrackOutput for the given track identifier.
-
public void endTracks()
Deprecated.
Description copied from interface: ExtractorOutput
Called when all tracks have been identified, meaning no new trackId values will be passed to ExtractorOutput.track(int, int).
Specified by:endTracks in interface ExtractorOutput
-
public void seekMap([SeekMap](SeekMap.html "interface in com.google.android.exoplayer2.extractor")seekMap)
Deprecated.
Description copied from interface: ExtractorOutput
Called when a SeekMap has been extracted from the stream.
Specified by:seekMap in interface ExtractorOutputParameters:seekMap - The extracted SeekMap.