diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-25 23:53:52 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-13 20:42:21 +0100 |
commit | 63d744e2be39466e3a734c2987cd713e0bac101e (patch) | |
tree | ccea7c1ea4dd0e8a160472cd67a053874864208a /libavcodec/libopencore-amr.c | |
parent | f099d3d1d5466bd63f4ab36270d169ff9ea613b8 (diff) | |
download | ffmpeg-63d744e2be39466e3a734c2987cd713e0bac101e.tar.gz |
av_log_missing_feature() ---> avpriv_report_missing_feature()
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 d46ddd7c9d..1f71a5bf01 100644 --- a/libavcodec/libopencore-amr.c +++ b/libavcodec/libopencore-amr.c @@ -34,7 +34,7 @@ static int amr_decode_fix_avctx(AVCodecContext *avctx) avctx->sample_rate = 8000 * is_amr_wb; if (avctx->channels > 1) { - av_log_missing_feature(avctx, "multi-channel AMR", 0); + avpriv_report_missing_feature(avctx, "multi-channel AMR"); return AVERROR_PATCHWELCOME; } |