docs/doc/reference/com/google/android/exoplayer2/extractor/ts/PesReader.html
Package com.google.android.exoplayer2.extractor.ts
All Implemented Interfaces:TsPayloadReader
[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public final classPesReaderextends[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")implements[TsPayloadReader](TsPayloadReader.html "interface in com.google.android.exoplayer2.extractor.ts")
Deprecated. com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.
Parses PES packet data and extracts samples.
-
TsPayloadReader.DvbSubtitleInfo, TsPayloadReader.EsInfo, TsPayloadReader.Factory, TsPayloadReader.Flags, TsPayloadReader.TrackIdGenerator
-
FLAG_DATA_ALIGNMENT_INDICATOR, FLAG_PAYLOAD_UNIT_START_INDICATOR, FLAG_RANDOM_ACCESS_INDICATOR
Constructors | Constructor | Description |
| --- | --- |
| PesReader(ElementaryStreamReader reader) |
Deprecated.
|
All Methods Instance Methods Concrete Methods Deprecated Methods | Modifier and Type | Method | Description |
| --- | --- | --- |
| void | consume(ParsableByteArray data, @com.google.android.exoplayer2.extractor.ts.TsPayloadReader.Flags int flags) |
Deprecated.
Consumes the payload of a TS packet.
|
| void | init(TimestampAdjuster timestampAdjuster, ExtractorOutput extractorOutput, TsPayloadReader.TrackIdGenerator idGenerator) |
Deprecated.
Initializes the payload reader.
|
| void | seek() |
Deprecated.
Notifies the reader that a seek has occurred. |
-
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
public PesReader([ElementaryStreamReader](ElementaryStreamReader.html "interface in com.google.android.exoplayer2.extractor.ts")reader)
Deprecated.
-
public void init([TimestampAdjuster](../../util/TimestampAdjuster.html "class in com.google.android.exoplayer2.util")timestampAdjuster,[ExtractorOutput](../ExtractorOutput.html "interface in com.google.android.exoplayer2.extractor")extractorOutput,[TsPayloadReader.TrackIdGenerator](TsPayloadReader.TrackIdGenerator.html "class in com.google.android.exoplayer2.extractor.ts")idGenerator)
Deprecated.
Description copied from interface: TsPayloadReader
Initializes the payload reader.
Specified by:init in interface TsPayloadReaderParameters:timestampAdjuster - A timestamp adjuster for offsetting and scaling sample timestamps.extractorOutput - The ExtractorOutput that receives the extracted data.idGenerator - A TsPayloadReader.TrackIdGenerator that generates unique track ids for the TrackOutputs.
-
public final void seek()
Deprecated.
Description copied from interface: TsPayloadReader
Notifies the reader that a seek has occurred.
Following a call to this method, the data passed to the next invocation of TsPayloadReader.consume(com.google.android.exoplayer2.util.ParsableByteArray, @com.google.android.exoplayer2.extractor.ts.TsPayloadReader.Flags int) will not be a continuation of the data that was previously passed. Hence the reader should reset any internal state.
Specified by:seek in interface TsPayloadReader
-
public final void consume([ParsableByteArray](../../util/ParsableByteArray.html "class in com.google.android.exoplayer2.util")data,
@com.google.android.exoplayer2.extractor.ts.TsPayloadReader.Flags int flags)
throws[ParserException](../../ParserException.html "class in com.google.android.exoplayer2")
Deprecated.
Description copied from interface: TsPayloadReader
Consumes the payload of a TS packet.
Specified by:consume in interface TsPayloadReaderParameters:data - The TS packet. The position will be set to the start of the payload.flags - See TsPayloadReader.Flags.Throws:ParserException - If the payload could not be parsed.