Fix typo on CEA-708 decoder

Issue: #2595
This commit is contained in:
Oliver Woodman 2017-03-23 17:46:12 +00:00
parent 646f6a74c9
commit 23b5921b82

View file

@ -483,7 +483,7 @@ public final class Cea708Decoder extends CeaDecoder {
private void handleC2Command(int command) {
// 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.
} else if (command <= 0x0F) {
serviceBlockPacket.skipBits(8);