public final class DummyExtractorOutput extends java.lang.Object implements ExtractorOutput
ExtractorOutput implementation.| Constructor and Description |
|---|
DummyExtractorOutput() |
| Modifier and Type | Method and Description |
|---|---|
void |
endTracks()
Called when all tracks have been identified, meaning no new
trackId values will be
passed to ExtractorOutput.track(int, int). |
void |
seekMap(SeekMap seekMap)
Called when a
SeekMap has been extracted from the stream. |
TrackOutput |
track(int id,
int type)
Called by the
Extractor to get the TrackOutput for a specific track. |
public TrackOutput track(int id, int type)
ExtractorOutputExtractor to get the TrackOutput for a specific track.
The same TrackOutput is returned if multiple calls are made with the same id.
track in interface ExtractorOutputid - A track identifier.type - The type of the track. Typically one of the C
TRACK_TYPE_* constants.TrackOutput for the given track identifier.public void endTracks()
ExtractorOutputtrackId values will be
passed to ExtractorOutput.track(int, int).endTracks in interface ExtractorOutputpublic void seekMap(SeekMap seekMap)
ExtractorOutputSeekMap has been extracted from the stream.seekMap in interface ExtractorOutputseekMap - The extracted SeekMap.