Browse Source

qdm2: make sure channels is not <= 0 and set channel layout

tags/n1.1
Justin Ruggles 13 years ago
parent
commit
be2ab8b75a
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavcodec/qdm2.c

+ 4
- 1
libavcodec/qdm2.c View File

@@ -36,6 +36,7 @@
#include <stdio.h>

#define BITSTREAM_READER_LE
#include "libavutil/audioconvert.h"
#include "avcodec.h"
#include "get_bits.h"
#include "dsputil.h"
@@ -1768,8 +1769,10 @@ static av_cold int qdm2_decode_init(AVCodecContext *avctx)

avctx->channels = s->nb_channels = s->channels = AV_RB32(extradata);
extradata += 4;
if (s->channels > MPA_MAX_CHANNELS)
if (s->channels <= 0 || s->channels > MPA_MAX_CHANNELS)
return AVERROR_INVALIDDATA;
avctx->channel_layout = avctx->channels == 2 ? AV_CH_LAYOUT_STEREO :
AV_CH_LAYOUT_MONO;

avctx->sample_rate = AV_RB32(extradata);
extradata += 4;


Loading…
Cancel
Save