mirror of
https://github.com/samsonjs/media.git
synced 2026-03-31 10:25:48 +00:00
Process only type == 0 captions. #156
This commit is contained in:
parent
ef396933f8
commit
b30f55f147
1 changed files with 1 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue