From a9221e39600a31ee13e736e9e47743cde23f0280 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Sat, 28 Sep 2013 23:38:40 +0300 Subject: electronicarts: Add more sanity checking for the number of channels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö --- libavformat/electronicarts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/electronicarts.c') diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c index b0e0674ad8..9d00c2d95e 100644 --- a/libavformat/electronicarts.c +++ b/libavformat/electronicarts.c @@ -467,7 +467,7 @@ static int ea_read_header(AVFormatContext *s) } if (ea->audio_codec) { - if (ea->num_channels <= 0) { + if (ea->num_channels <= 0 || ea->num_channels > 2) { av_log(s, AV_LOG_WARNING, "Unsupported number of channels: %d\n", ea->num_channels); ea->audio_codec = 0; -- cgit v1.2.3