Browse Source

avformat/dsfdec: check if number of channels is <= 0

Fixes FPE bellow.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n3.1
Paul B Mahol 9 years ago
parent
commit
d171cd076f
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/dsfdec.c

+ 3
- 0
libavformat/dsfdec.c View File

@@ -107,6 +107,9 @@ static int dsf_read_header(AVFormatContext *s)
st->codecpar->channels = avio_rl32(pb);
st->codecpar->sample_rate = avio_rl32(pb) / 8;

if (st->codecpar->channels <= 0)
return AVERROR_INVALIDDATA;

switch(avio_rl32(pb)) {
case 1: st->codecpar->codec_id = AV_CODEC_ID_DSD_LSBF_PLANAR; break;
case 8: st->codecpar->codec_id = AV_CODEC_ID_DSD_MSBF_PLANAR; break;


Loading…
Cancel
Save