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-24 21:49:20 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-04-24 21:49:45 +0300
commit036162a3787044cd82b6fa4e73eb56ddf2e57c96 (patch)
tree439565a59d99e1322a993f7632e23f037f841658 /libavcodec/internal.h
parent10a28e8a08d609b9f8352c221845d15cd0021675 (diff)
parent5bba3ab0cf7a0238ee1ea31ca2da08ce860fd8f9 (diff)
Merge commit '5bba3ab0cf7a0238ee1ea31ca2da08ce860fd8f9'
* commit '5bba3ab0cf7a0238ee1ea31ca2da08ce860fd8f9': internal: Make dlog/tlog a no-op when disabled Conflicts: libavcodec/internal.h Merged-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 83f185d538..a49bf34a26 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -57,7 +57,7 @@
#ifdef TRACE
# define ff_tlog(ctx, ...) av_log(ctx, AV_LOG_TRACE, __VA_ARGS__)
#else
-# define ff_tlog(p, ...)
+# define ff_tlog(ctx, ...) while(0)
#endif