mirror of
https://github.com/samsonjs/media.git
synced 2026-04-25 14:47:40 +00:00
remove test comment
This commit is contained in:
parent
ec3065e981
commit
327d26cb32
1 changed files with 0 additions and 3 deletions
|
|
@ -353,7 +353,6 @@ public final class Cea708Decoder extends CeaDecoder {
|
|||
int endBlockPosition = captionChannelPacketData.getPosition() + (blockSize * 8);
|
||||
while (captionChannelPacketData.getPosition() < endBlockPosition) {
|
||||
int command = captionChannelPacketData.readBits(8);
|
||||
Log.d("DatDoan", "Cea708 handleCommand " + command);
|
||||
if (command != COMMAND_EXT1) {
|
||||
if (command <= GROUP_C0_END) {
|
||||
handleC0Command(command);
|
||||
|
|
@ -779,11 +778,9 @@ public final class Cea708Decoder extends CeaDecoder {
|
|||
// first byte
|
||||
captionChannelPacketData.skipBits(2); // null padding
|
||||
boolean visible = captionChannelPacketData.readBit();
|
||||
|
||||
// ANSI/CTA-708-E S-2023 spec (Section 8.4.7) indicates that rowLock and columnLock values in
|
||||
// the media should be ignored and assumed to be true.
|
||||
captionChannelPacketData.skipBits(2);
|
||||
|
||||
int priority = captionChannelPacketData.readBits(3);
|
||||
// second byte
|
||||
boolean relativePositioning = captionChannelPacketData.readBit();
|
||||
|
|
|
|||
Loading…
Reference in a new issue