mirror of
https://github.com/samsonjs/media.git
synced 2026-04-13 12:35:48 +00:00
Add AC-4 Level-4 ISO base media file format support
This commit is contained in:
parent
29bda3bb5c
commit
ac94afa4b1
1 changed files with 1 additions and 1 deletions
|
|
@ -222,7 +222,7 @@ public final class Ac4Util {
|
|||
throw ParserException.createForUnsupportedContainerFeature(
|
||||
"Unsupported AC-4 DSI version: " + ac4DsiVersion);
|
||||
}
|
||||
final int bitstreamVersion = dataBitArray.readBits(7); // bitstream_version
|
||||
int bitstreamVersion = dataBitArray.readBits(7); // bitstream_version
|
||||
int sampleRate = dataBitArray.readBit() ? 48000 : 44100; // fs_index
|
||||
dataBitArray.skipBits(4); // frame_rate_index
|
||||
int nPresentations = dataBitArray.readBits(9); // n_presentations
|
||||
|
|
|
|||
Loading…
Reference in a new issue