From 391f710903d9550b37db25c9ef41466cfbd629eb Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Wed, 18 Aug 2021 15:05:09 +0200 Subject: [PATCH] mp4: Make channel count a 16 bit quantity. It gets initialized by reading an 16 bit integer. --- mp4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mp4.c b/mp4.c index 61feafdf..49b97504 100644 --- a/mp4.c +++ b/mp4.c @@ -14,7 +14,7 @@ struct mp4_track { bool is_audio; - uint32_t channelCount; + uint16_t channelCount; uint16_t sampleRate; /* stsz */ -- 2.39.2