Browse Source

brstm: reject negative sample rate

A negative sample rate causes assertion failures in av_rescale_rnd.

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
(cherry picked from commit 7b67fe20f6)
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
tags/n2.8.3
Andreas Cadhalpun 10 years ago
parent
commit
d09fd0736a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/brstm.c

+ 1
- 1
libavformat/brstm.c View File

@@ -205,7 +205,7 @@ static int read_header(AVFormatContext *s)
avio_skip(s->pb, 1); // padding

st->codec->sample_rate = bfstm ? read32(s) : read16(s);
if (!st->codec->sample_rate)
if (st->codec->sample_rate <= 0)
return AVERROR_INVALIDDATA;

if (!bfstm)


Loading…
Cancel
Save