diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-20 04:12:45 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-20 04:27:08 +0200 |
commit | dbd94b771f1b1a90591e556edb65c91a34f994b6 (patch) | |
tree | ea815c76729da3bf18611d136558388ac957bd10 | |
parent | 0a582aeee41d529d5e9711fb76422c31389d42ef (diff) | |
download | ffmpeg-dbd94b771f1b1a90591e556edb65c91a34f994b6.tar.gz |
avcodec/internal: Fix ff_dlog() define like av_dlog()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/internal.h | 2 |
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 |