Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-04-20 05:12:45 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-04-20 05:27:08 +0300
commitdbd94b771f1b1a90591e556edb65c91a34f994b6 (patch)
treeea815c76729da3bf18611d136558388ac957bd10 /libavcodec/internal.h
parent0a582aeee41d529d5e9711fb76422c31389d42ef (diff)
avcodec/internal: Fix ff_dlog() define like av_dlog()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r--libavcodec/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 38108b4b6e..83f185d538 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -51,7 +51,7 @@
#ifdef DEBUG
# define ff_dlog(ctx, ...) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__)
#else
-# define ff_dlog(ctx, ...)
+# define ff_dlog(ctx, ...) do { if (0) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
#endif
#ifdef TRACE