mirror of https://git.ffmpeg.org/ffmpeg.git
vmdaudio: fix invalid reads when packet size is not a multiple of chunk size
CC:libav-stable@libav.org (cherry picked from commitf86d66bcfa
) Signed-off-by: Reinhard Tartler <siretart@tauware.de> (cherry picked from commit77cf052e39
) Signed-off-by: Reinhard Tartler <siretart@tauware.de>
This commit is contained in:
parent
e050af9a80
commit
98406bd26e
|
@ -625,7 +625,7 @@ static int vmdaudio_decode_frame(AVCodecContext *avctx, void *data,
|
|||
/* decode audio chunks */
|
||||
if (audio_chunks > 0) {
|
||||
buf_end = buf + buf_size;
|
||||
while (buf < buf_end) {
|
||||
while (buf + s->chunk_size <= buf_end) {
|
||||
if (s->out_bps == 2) {
|
||||
decode_audio_s16(output_samples_s16, buf, s->chunk_size,
|
||||
avctx->channels);
|
||||
|
|
Loading…
Reference in New Issue