Commit b30f55f1 by Andrey Udovenko

Process only type == 0 captions. #156

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