mirror of
https://github.com/samsonjs/media.git
synced 2026-03-27 09:45:47 +00:00
CEA608 - Add space when handling mid-row codes
Issue: #3906 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=200526335
This commit is contained in:
parent
4dc6c85de4
commit
afc19bf6db
2 changed files with 5 additions and 0 deletions
|
|
@ -45,6 +45,8 @@
|
|||
([#4315](https://github.com/google/ExoPlayer/issues/4315)).
|
||||
* Set `METADATA_KEY_TITLE` on media descriptions
|
||||
((#4292)[https://github.com/google/ExoPlayer/issues/4292]).
|
||||
* Fix missing whitespace in CEA-608
|
||||
([#3906](https://github.com/google/ExoPlayer/issues/3906)).
|
||||
|
||||
### 2.8.1 ###
|
||||
|
||||
|
|
|
|||
|
|
@ -374,6 +374,9 @@ public final class Cea608Decoder extends CeaDecoder {
|
|||
private void handleMidrowCtrl(byte cc2) {
|
||||
// TODO: support the extended styles (i.e. backgrounds and transparencies)
|
||||
|
||||
// A midrow control code advances the cursor.
|
||||
currentCueBuilder.append(' ');
|
||||
|
||||
// cc2 - 0|0|1|0|ATRBT|U
|
||||
// ATRBT is the 3-byte encoded attribute, and U is the underline toggle
|
||||
boolean isUnderlined = (cc2 & 0x01) == 0x01;
|
||||
|
|
|
|||
Loading…
Reference in a new issue