docs/doc/reference/com/google/android/exoplayer2/text/ttml/TtmlDecoder.html
Package com.google.android.exoplayer2.text.ttml
All Implemented Interfaces:Decoder<SubtitleInputBuffer,SubtitleOutputBuffer,SubtitleDecoderException>, SubtitleDecoder
[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public final classTtmlDecoderextends[SimpleSubtitleDecoder](../SimpleSubtitleDecoder.html "class in com.google.android.exoplayer2.text")
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.
A SimpleSubtitleDecoder for TTML supporting the DFXP presentation profile. Features supported by this decoder are:
See the TTML specification
Constructors | Constructor | Description |
| --- | --- |
| TtmlDecoder() |
Deprecated.
|
All Methods Instance Methods Concrete Methods Deprecated Methods | Modifier and Type | Method | Description |
| --- | --- | --- |
| protected Subtitle | decode(byte[] data, int length, boolean reset) |
Deprecated.
Decodes data into a Subtitle.
|
-
createInputBuffer, createOutputBuffer, createUnexpectedDecodeException, decode, getName, setPositionUs
-
dequeueInputBuffer, dequeueOutputBuffer, flush, queueInputBuffer, release, releaseOutputBuffer, setInitialInputBufferSize
-
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
dequeueInputBuffer, dequeueOutputBuffer, flush, queueInputBuffer, release
-
public TtmlDecoder()
Deprecated.
-
protected[Subtitle](../Subtitle.html "interface in com.google.android.exoplayer2.text")decode(byte[] data,
int length,
boolean reset)
throws[SubtitleDecoderException](../SubtitleDecoderException.html "class in com.google.android.exoplayer2.text")
Deprecated.
Description copied from class: SimpleSubtitleDecoder
Decodes data into a Subtitle.
Specified by:decode in class SimpleSubtitleDecoderParameters:data - An array holding the data to be decoded, starting at position 0.length - The number of bytes from data to be decoded.reset - Whether the decoder must be reset before decoding.Returns:The decoded Subtitle.Throws:SubtitleDecoderException - If a decoding error occurs.