Commit dbd94b77 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/internal: Fix ff_dlog() define like av_dlog()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0a582aee
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment