summaryrefslogtreecommitdiff
path: root/libavcodec/alsdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-02-25 23:53:52 +0100
committerDiego Biurrun <diego@biurrun.de>2013-03-13 20:42:21 +0100
commit63d744e2be39466e3a734c2987cd713e0bac101e (patch)
treeccea7c1ea4dd0e8a160472cd67a053874864208a /libavcodec/alsdec.c
parentf099d3d1d5466bd63f4ab36270d169ff9ea613b8 (diff)
av_log_missing_feature() ---> avpriv_report_missing_feature()
Diffstat (limited to 'libavcodec/alsdec.c')
-rw-r--r--libavcodec/alsdec.c3
1 files changed, 2 insertions, 1 deletions
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; \
} \
}