Commit e67496fe authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'cee4490b'

* commit 'cee4490b':
  on2avc: check number of channels

See: 550f3e9dMerged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents c266d0e1 cee4490b
......@@ -923,6 +923,7 @@ static av_cold int on2avc_decode_init(AVCodecContext *avctx)
av_log(avctx, AV_LOG_ERROR, "0x500 version should be mono\n");
return AVERROR_INVALIDDATA;
}
if (avctx->channels == 2)
av_log(avctx, AV_LOG_WARNING,
"Stereo mode support is not good, patch is welcome\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment