mirror of https://git.ffmpeg.org/ffmpeg.git
opusdec: make sure all substreams have the same number of coded samples
Fixes invalid writes with invalid multichannel streams.
CC:libav-stable@libav.org
(cherry picked from commit 1973079417
)
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
517ce1d09b
commit
ca78ee73db
|
@ -500,6 +500,12 @@ static int opus_decode_packet(AVCodecContext *avctx, void *data,
|
|||
av_log(avctx, AV_LOG_ERROR, "Error parsing the packet header.\n");
|
||||
return ret;
|
||||
}
|
||||
if (coded_samples != s->packet.frame_count * s->packet.frame_duration) {
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
"Mismatching coded sample count in substream %d.\n", i);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
s->silk_samplerate = get_silk_samplerate(s->packet.config);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue