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:
authorRonald S. Bultje <rsbultje@gmail.com>2015-08-18 03:27:25 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2015-08-18 16:46:49 +0300
commit70a19c482a62bbbcda5a1115cfcd6a708f598fbc (patch)
tree44fa374ad2096bfd1aa76c2e1c035871b2f3b27e /libavcodec/internal.h
parentb807f7e286642ea5303ad30ba7003beb1e65a862 (diff)
Move ff_dlog from lavc to lavu.
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r--libavcodec/internal.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 0daf6695e6..f93a196483 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -48,12 +48,6 @@
#define FF_CODEC_CAP_INIT_CLEANUP (1 << 1)
-#ifdef DEBUG
-# define ff_dlog(ctx, ...) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__)
-#else
-# define ff_dlog(ctx, ...) do { if (0) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
-#endif
-
#ifdef TRACE
# define ff_tlog(ctx, ...) av_log(ctx, AV_LOG_TRACE, __VA_ARGS__)
#else