From 7b7f47e73356d113cace74b922eee0b6ff5ffe0b Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Fri, 28 Oct 2011 18:31:21 -0400 Subject: imc: validate channel count ask for a sample if not mono --- libavcodec/imc.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libavcodec/imc.c') diff --git a/libavcodec/imc.c b/libavcodec/imc.c index 6bc68cd81c..d0a0d9da02 100644 --- a/libavcodec/imc.c +++ b/libavcodec/imc.c @@ -108,6 +108,11 @@ static av_cold int imc_decode_init(AVCodecContext * avctx) IMCContext *q = avctx->priv_data; double r1, r2; + if (avctx->channels != 1) { + av_log_ask_for_sample(avctx, "Number of channels is not supported\n"); + return AVERROR_PATCHWELCOME; + } + q->decoder_reset = 1; for(i = 0; i < BANDS; i++) -- cgit v1.2.3