mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix typo on CEA-708 decoder
Issue: #2595 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=151004198
This commit is contained in:
parent
255523b432
commit
7aff624477
1 changed files with 1 additions and 1 deletions
|
|
@ -483,7 +483,7 @@ public final class Cea708Decoder extends CeaDecoder {
|
||||||
|
|
||||||
private void handleC2Command(int command) {
|
private void handleC2Command(int command) {
|
||||||
// C2 Table doesn't contain any commands in CEA-708-B, but we do need to skip bytes
|
// C2 Table doesn't contain any commands in CEA-708-B, but we do need to skip bytes
|
||||||
if (command <= 0x0F) {
|
if (command <= 0x07) {
|
||||||
// Do nothing.
|
// Do nothing.
|
||||||
} else if (command <= 0x0F) {
|
} else if (command <= 0x0F) {
|
||||||
serviceBlockPacket.skipBits(8);
|
serviceBlockPacket.skipBits(8);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue