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/alsdec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/alsdec.c') diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index f87c94425b..3d419bba10 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -422,7 +422,8 @@ static int check_specific_config(ALSDecContext *ctx) #define MISSING_ERR(cond, str, errval) \ { \ if (cond) { \ - av_log_missing_feature(ctx->avctx, str, 0); \ + avpriv_report_missing_feature(ctx->avctx, \ + str); \ error = errval; \ } \ } -- cgit v1.2.3