diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-14 12:30:19 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-14 12:30:19 +0100 |
commit | fa92ee821bba1d3c2a497ed22e41927b552856f8 (patch) | |
tree | 26bb0752049f1abb82e03e127f175ff2c0b78387 /libavcodec/wmalosslessdec.c | |
parent | 905e7eb41389e4394e9c6e459b7d1a99dc30b075 (diff) | |
parent | 63d744e2be39466e3a734c2987cd713e0bac101e (diff) | |
download | ffmpeg-fa92ee821bba1d3c2a497ed22e41927b552856f8.tar.gz |
Merge commit '63d744e2be39466e3a734c2987cd713e0bac101e'
* commit '63d744e2be39466e3a734c2987cd713e0bac101e':
av_log_missing_feature() ---> avpriv_report_missing_feature()
Conflicts:
libavcodec/aacdec.c
libavcodec/tta.c
libavformat/mpegts.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/wmalosslessdec.c')
-rw-r--r-- | libavcodec/wmalosslessdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index b38e0c0413..785e38fb11 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -189,7 +189,7 @@ static av_cold int decode_init(AVCodecContext *avctx) avctx->sample_fmt = AV_SAMPLE_FMT_S16P; else if (s->bits_per_sample == 24) { avctx->sample_fmt = AV_SAMPLE_FMT_S32P; - av_log_missing_feature(avctx, "Bit-depth higher than 16", 0); + avpriv_report_missing_feature(avctx, "Bit-depth higher than 16"); return AVERROR_PATCHWELCOME; } else { av_log(avctx, AV_LOG_ERROR, "Unknown bit-depth: %d\n", |