Commit b30f55f1 by Andrey Udovenko

Process only type == 0 captions. #156

parent ef396933
...@@ -107,8 +107,7 @@ public class Eia608Parser { ...@@ -107,8 +107,7 @@ public class Eia608Parser {
continue; continue;
} }
int ccType = seiBuffer.readBits(2); int ccType = seiBuffer.readBits(2);
if (ccType != 0 && ccType != 1) { if (ccType != 0) {
// Not EIA-608 captions.
seiBuffer.skipBits(16); seiBuffer.skipBits(16);
continue; continue;
} }
......
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