Stay organized with collections
Save and categorize content based on your preferences.
public
static
interface
MediaParser.SeekableInputReader
implements
MediaParser.InputReader
android.media.MediaParser.SeekableInputReader
|
InputReader
that allows setting the read position.
Summary
Public methods |
abstract
void
|
seekToPosition(long position)
Sets the read position at the given position .
|
Inherited methods |
From interface
android.media.MediaParser.InputReader
abstract
long
|
getLength()
Returns the length of the input in bytes, or -1 if the length is unknown.
|
abstract
long
|
getPosition()
Returns the current read position (byte offset) in the stream.
|
abstract
int
|
read(byte[] buffer, int offset, int readLength)
Reads up to readLength bytes of data and stores them into buffer ,
starting at index offset .
|
|
Public methods
seekToPosition
public abstract void seekToPosition (long position)
Sets the read position at the given position
.
MediaParser.advance(SeekableInputReader)
will immediately return after calling this method.
Parameters |
position |
long : The position to seek to, in bytes. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# MediaParser.SeekableInputReader\n\nAdded in [API level 30](/guide/topics/manifest/uses-sdk-element#ApiLevels) \nSummary: [Methods](#pubmethods) \\| [Inherited Methods](#inhmethods) \n\nMediaParser.SeekableInputReader\n===============================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/media/MediaParser.SeekableInputReader \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\nstatic\n\n\ninterface\nMediaParser.SeekableInputReader\n`\n\n\n`\n\n\nimplements\n\n`[MediaParser.InputReader](/reference/android/media/MediaParser.InputReader)`\n\n\n`\n\n|-----------------------------------------------|\n| android.media.MediaParser.SeekableInputReader |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\n[InputReader](/reference/android/media/MediaParser.InputReader) that allows setting the read position.\n\nSummary\n-------\n\n| ### Public methods ||\n|------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` abstract void` | ` `[seekToPosition](/reference/android/media/MediaParser.SeekableInputReader#seekToPosition(long))`(long position) ` Sets the read position at the given `position`. |\n\n| ### Inherited methods |\n|-----------------------|---|\n| From interface ` `[android.media.MediaParser.InputReader](/reference/android/media/MediaParser.InputReader)` ` |------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ` abstract long` | ` `[getLength](/reference/android/media/MediaParser.InputReader#getLength())`() ` Returns the length of the input in bytes, or -1 if the length is unknown. | | ` abstract long` | ` `[getPosition](/reference/android/media/MediaParser.InputReader#getPosition())`() ` Returns the current read position (byte offset) in the stream. | | ` abstract int` | ` `[read](/reference/android/media/MediaParser.InputReader#read(byte[],%20int,%20int))`(byte[] buffer, int offset, int readLength) ` Reads up to `readLength` bytes of data and stores them into `buffer`, starting at index `offset`. | ||\n\nPublic methods\n--------------\n\n### seekToPosition\n\nAdded in [API level 30](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic abstract void seekToPosition (long position)\n```\n\nSets the read position at the given `position`.\n\n[MediaParser.advance(SeekableInputReader)](/reference/android/media/MediaParser#advance(android.media.MediaParser.SeekableInputReader)) will immediately return after calling this method.\n\n\u003cbr /\u003e\n\n| Parameters ||\n|------------|---------------------------------------------------|\n| `position` | `long`: The position to seek to, in bytes. \u003cbr /\u003e |"]]