From 63d744e2be39466e3a734c2987cd713e0bac101e Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 25 Feb 2013 23:53:52 +0100 Subject: av_log_missing_feature() ---> avpriv_report_missing_feature() --- libavcodec/flacdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/flacdec.c') diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index 91412ef821..ec54dfc292 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -371,7 +371,7 @@ static inline int decode_subframe(FLACContext *s, int channel) bps -= wasted; } if (bps > 32) { - av_log_missing_feature(s->avctx, "Decorrelated bit depth > 32", 0); + avpriv_report_missing_feature(s->avctx, "Decorrelated bit depth > 32"); return AVERROR_PATCHWELCOME; } -- cgit v1.2.3