public interface ExtractorOutput
Extractor.| Modifier and Type | Method and Description |
|---|---|
void |
endTracks()
Called when all tracks have been identified, meaning no new
trackId values will be
passed to 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. |
TrackOutput track(int id, int type)
Extractor to get the TrackOutput for a specific track.
The same TrackOutput is returned if multiple calls are made with the same id.
id - A track identifier.type - The type of the track. Typically one of the C
TRACK_TYPE_* constants.TrackOutput for the given track identifier.void endTracks()
trackId values will be
passed to track(int, int).