mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix bad assertion. It doesn't hold for TTML subtitle chunks.
This commit is contained in:
parent
6e9ba9ba47
commit
d4e35358a1
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ public final class Mp4MediaChunk extends MediaChunk {
|
||||||
prepared = true;
|
prepared = true;
|
||||||
}
|
}
|
||||||
if (prepared) {
|
if (prepared) {
|
||||||
mediaFormat = Assertions.checkNotNull(extractor.getFormat());
|
mediaFormat = extractor.getFormat();
|
||||||
psshInfo = extractor.getPsshInfo();
|
psshInfo = extractor.getPsshInfo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue