Commit 23b5921b by Oliver Woodman

Fix typo on CEA-708 decoder

Issue: #2595
parent 646f6a74
...@@ -483,7 +483,7 @@ public final class Cea708Decoder extends CeaDecoder { ...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment