mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +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;
|
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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue