diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-14 13:07:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-14 13:07:25 +0100 |
commit | cacbf64a76acb69b2efd773e8d7ab01bc957560d (patch) | |
tree | 80e9d70ed0a266a3540daa5707ff5b71ee2b475f /libavcodec/amrwbdec.c | |
parent | 13795dbb642cecf46e75fb6a78c830bf862c2310 (diff) | |
parent | 12e25ed284592b32c954d471e9b7b1e5a0dbf18d (diff) | |
download | ffmpeg-cacbf64a76acb69b2efd773e8d7ab01bc957560d.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
avcodec: av_log_missing_feature(1) ---> avpriv_request_sample()
Conflicts:
libavcodec/aacsbr.c
libavcodec/amrnbdec.c
libavcodec/takdec.c
libavcodec/tta.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/amrwbdec.c')
-rw-r--r-- | libavcodec/amrwbdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/amrwbdec.c b/libavcodec/amrwbdec.c index 3be81d482c..8c3eb56d3b 100644 --- a/libavcodec/amrwbdec.c +++ b/libavcodec/amrwbdec.c @@ -1135,7 +1135,7 @@ static int amrwb_decode_frame(AVCodecContext *avctx, void *data, av_log(avctx, AV_LOG_ERROR, "Encountered a bad or corrupted frame\n"); if (ctx->fr_cur_mode == MODE_SID) { /* Comfort noise frame */ - av_log_missing_feature(avctx, "SID mode", 1); + avpriv_request_sample(avctx, "SID mode"); return AVERROR_PATCHWELCOME; } |