diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-02 22:45:15 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-03 00:44:06 +0200 |
commit | f190f676bc93a7e80344f2feeb3b9b44604d4717 (patch) | |
tree | d450a39677cd2e45abdea10256675ac7267cce92 /libavformat/ape.c | |
parent | 068aa387128850da488af262d54986d03eebe423 (diff) | |
download | ffmpeg-f190f676bc93a7e80344f2feeb3b9b44604d4717.tar.gz |
Replace custom DEBUG preprocessor trickery by the standard one.
Diffstat (limited to 'libavformat/ape.c')
-rw-r--r-- | libavformat/ape.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/ape.c b/libavformat/ape.c index d7c1447b01..90b02619e0 100644 --- a/libavformat/ape.c +++ b/libavformat/ape.c @@ -26,8 +26,6 @@ #include "avformat.h" #include "apetag.h" -#define ENABLE_DEBUG 0 - /* The earliest and latest file formats supported by this library */ #define APE_MIN_VERSION 3950 #define APE_MAX_VERSION 3990 @@ -96,7 +94,7 @@ static int ape_probe(AVProbeData * p) static void ape_dumpinfo(AVFormatContext * s, APEContext * ape_ctx) { -#if ENABLE_DEBUG +#ifdef DEBUG int i; av_log(s, AV_LOG_DEBUG, "Descriptor Block:\n\n"); |