Browse Source

opusdec: Don't run vector_fmul_scalar on zero length arrays

Fixes crashes on fuzzed files
Fixes Ticket4969 part2

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.0
Kieran Kunhya Michael Niedermayer 9 years ago
parent
commit
b3e5f15b95
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/opusdec.c

+ 1
- 1
libavcodec/opusdec.c View File

@@ -585,7 +585,7 @@ static int opus_decode_packet(AVCodecContext *avctx, void *data,
memset(frame->extended_data[i], 0, frame->linesize[0]);
}

if (c->gain_i) {
if (c->gain_i && decoded_samples > 0) {
c->fdsp->vector_fmul_scalar((float*)frame->extended_data[i],
(float*)frame->extended_data[i],
c->gain, FFALIGN(decoded_samples, 8));


Loading…
Cancel
Save