Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXidorn Quan <quanxunzhen@gmail.com>2012-11-03 14:33:58 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-11-04 00:38:37 +0400
commit0ecef3a0eff80ba4414fb3984c5d96119575e156 (patch)
treef2b5fa8fd8927e68552a9a40b14d9e4afc43a05f /libavcodec/libopencore-amr.c
parent6450c05ba56d652901c362f27a6226d29dbf9381 (diff)
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.c2
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;