Skip to content

Commit

Permalink
fix: AudioSampleEntry size caluations due to bad merge (#1354)
Browse files Browse the repository at this point in the history
from ALAC pull request
  • Loading branch information
cosmin committed Feb 27, 2024
1 parent 673e49d commit 615720e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packager/media/formats/mp4/box_definitions.cc
Expand Up @@ -2058,8 +2058,8 @@ size_t AudioSampleEntry::ComputeSizeInternal() {
sizeof(samplesize) + sizeof(samplerate) + sinf.ComputeSize() +
esds.ComputeSize() + ddts.ComputeSize() + dac3.ComputeSize() +
dec3.ComputeSize() + dops.ComputeSize() + dfla.ComputeSize() +
dac4.ComputeSize() + mhac.ComputeSize() + alac.ComputeSize() +
dac4.ComputeSize() + mhac.ComputeSize() + udts.ComputeSize() +
alac.ComputeSize() +
// Reserved and predefined bytes.
6 + 8 + // 6 + 8 bytes reserved.
4; // 4 bytes predefined.
Expand Down

0 comments on commit 615720e

Please sign in to comment.