SectionReader
@UnstableApi
class SectionReader : TsPayloadReader
Reads section data packets and feeds the whole sections to a given SectionPayloadReader. Useful information on PSI sections can be found in ISO/IEC 13818-1, section 2.4.4.
Summary
Public constructors |
|---|
SectionReader(reader: SectionPayloadReader!) |
Public functions |
|
|---|---|
Unit |
consume(data: ParsableByteArray!, @TsPayloadReader.Flags flags: Int)Consumes the payload of a TS packet. |
Unit |
init(Initializes the payload reader. |
Unit |
seek()Notifies the reader that a seek has occurred. |
Inherited Constants |
|---|
Public constructors
Public functions
consume
fun consume(data: ParsableByteArray!, @TsPayloadReader.Flags flags: Int): Unit
Consumes the payload of a TS packet.
| Parameters | |
|---|---|
data: ParsableByteArray! |
The TS packet. The position will be set to the start of the payload. |
@TsPayloadReader.Flags flags: Int |
See |
| Throws | |
|---|---|
androidx.media3.common.ParserException |
If the payload could not be parsed. |
init
fun init(
timestampAdjuster: TimestampAdjuster!,
extractorOutput: ExtractorOutput!,
idGenerator: TsPayloadReader.TrackIdGenerator!
): Unit
Initializes the payload reader.
| Parameters | |
|---|---|
timestampAdjuster: TimestampAdjuster! |
A timestamp adjuster for offsetting and scaling sample timestamps. |
extractorOutput: ExtractorOutput! |
The |
idGenerator: TsPayloadReader.TrackIdGenerator! |
A |