Process only type == 0 captions. #156

This commit is contained in:
Andrey Udovenko 2015-01-22 12:53:33 -05:00
parent ef396933f8
commit b30f55f147

View File

@ -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;
}