summaryrefslogtreecommitdiff
path: root/libavformat/svag.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-03-28 21:34:08 -0300
committerJames Almer <jamrial@gmail.com>2016-03-28 21:34:08 -0300
commitd5a3578350a3901a26df39df196bb085760ec46f (patch)
tree0064a68a6233d2c6bc0b3efafdecdce8ce2ddc66 /libavformat/svag.c
parent06eef96b69d73a31f2b390955d1be0537214a0c8 (diff)
avformat/svag: fix division by zero
Fixes ticket #5386 Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/svag.c')
-rw-r--r--libavformat/svag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/svag.c b/libavformat/svag.c
index ab7f36c81a..08fc06b1ba 100644
--- a/libavformat/svag.c
+++ b/libavformat/svag.c
@@ -48,7 +48,7 @@ static int svag_read_header(AVFormatContext *s)
if (st->codec->sample_rate <= 0)
return AVERROR_INVALIDDATA;
st->codec->channels = avio_rl32(s->pb);
- if (st->codec->channels <= 0)
+ if (st->codec->channels <= 0 || st->codec->channels > 8)
return AVERROR_INVALIDDATA;
st->duration = size / (16 * st->codec->channels) * 28;
align = avio_rl32(s->pb);