public interface SeekMap
Modifier and Type | Field and Description |
---|---|
static SeekMap |
UNSEEKABLE
A
SeekMap that does not support seeking. |
Modifier and Type | Method and Description |
---|---|
long |
getPosition(long timeUs)
Maps a seek position in microseconds to a corresponding position (byte offset) in the stream
from which data can be provided to the extractor.
|
boolean |
isSeekable()
Whether or not the seeking is supported.
|
boolean isSeekable()
If seeking is not supported then the only valid seek position is the start of the file, and so
getPosition(long)
will return 0 for all input values.
long getPosition(long timeUs)
timeUs
- A seek position in microseconds.#isSeekable()
returns false.