diff options
author | Xidorn Quan <quanxunzhen@gmail.com> | 2012-11-03 18:33:58 +0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-03 21:38:37 +0100 |
commit | 0ecef3a0eff80ba4414fb3984c5d96119575e156 (patch) | |
tree | f2b5fa8fd8927e68552a9a40b14d9e4afc43a05f /libavcodec/libopencore-amr.c | |
parent | 6450c05ba56d652901c362f27a6226d29dbf9381 (diff) | |
download | ffmpeg-0ecef3a0eff80ba4414fb3984c5d96119575e156.tar.gz |
amr_decode_fix_avctx should not return value
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libopencore-amr.c')
-rw-r--r-- | libavcodec/libopencore-amr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libopencore-amr.c b/libavcodec/libopencore-amr.c index cbc414c784..c5bc3ccc2b 100644 --- a/libavcodec/libopencore-amr.c +++ b/libavcodec/libopencore-amr.c @@ -36,7 +36,7 @@ static void amr_decode_fix_avctx(AVCodecContext *avctx) if (avctx->channels > 1) { av_log_missing_feature(avctx, "multi-channel AMR", 0); - return AVERROR_PATCHWELCOME; + return; } avctx->channels = 1; |