Commit 0ecef3a0 authored by Xidorn Quan's avatar Xidorn Quan Committed by Michael Niedermayer

amr_decode_fix_avctx should not return value

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6450c05b
...@@ -36,7 +36,7 @@ static void amr_decode_fix_avctx(AVCodecContext *avctx) ...@@ -36,7 +36,7 @@ static void amr_decode_fix_avctx(AVCodecContext *avctx)
if (avctx->channels > 1) { if (avctx->channels > 1) {
av_log_missing_feature(avctx, "multi-channel AMR", 0); av_log_missing_feature(avctx, "multi-channel AMR", 0);
return AVERROR_PATCHWELCOME; return;
} }
avctx->channels = 1; avctx->channels = 1;
......
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