You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
imc: validate channel count
ask for a sample if not mono
This commit is contained in:
@@ -108,6 +108,11 @@ static av_cold int imc_decode_init(AVCodecContext * avctx)
|
|||||||
IMCContext *q = avctx->priv_data;
|
IMCContext *q = avctx->priv_data;
|
||||||
double r1, r2;
|
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;
|
q->decoder_reset = 1;
|
||||||
|
|
||||||
for(i = 0; i < BANDS; i++)
|
for(i = 0; i < BANDS; i++)
|
||||||
|
Reference in New Issue
Block a user