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) . |
void |
seekMap(SeekMap seekMap)
Called when a
SeekMap has been extracted from the stream. |
TrackOutput |
track(int trackId)
Called by the
Extractor to get the TrackOutput for a specific track. |
TrackOutput track(int trackId)
Extractor
to get the TrackOutput
for a specific track.
The same TrackOutput
is returned if multiple calls are made with the same
trackId
.
trackId
- A track identifier.TrackOutput
for the given track identifier.void endTracks()
trackId
values will be
passed to track(int)
.