mirror of
https://github.com/androidx/media.git
synced 2025-05-08 16:10:38 +08:00

This change was originally made in6f8249184b
It was then accidentally lost in when `Cea708Parser` was merged back into `Cea708Decoder` in51b4fa2cc8
. This is the only change made to the actual 'decoding' logic in `Cea708Parser` between it being split from `Cea708Decoder` and merged back in again, all the other changes in this period relate to the implementation of the `SubtitleParser` interface, so don't need to be preserved in `Cea708Decoder`:51b4fa2cc8/libraries/extractor/src/main/java/androidx/media3/extractor/text/cea/Cea708Parser.java
`Cea608Parser` was also merged back into `Cea608Decoder` in25498b151b
and so is vulnerable to the same risk of accidental loss of changes. To be sure, I also checked the history of this file:25498b151b/libraries/extractor/src/main/java/androidx/media3/extractor/text/cea/Cea608Parser.java
The only 'decoding logic' change there is379cb3ba54
, which was also lost in25498b151b
. I will send a separate change to resolve this. PiperOrigin-RevId: 635796696