# HG changeset patch # User michael # Date 1082078975 0 # Node ID 2511d3e4513eaf82d2a53a233c971df2b16cc727 # Parent 71fe2180024c08f540e10c0901dbd823c794ceff t/dprintf printf -> av_log diff -r 71fe2180024c -r 2511d3e4513e common.h --- a/common.h Fri Apr 16 01:02:39 2004 +0000 +++ b/common.h Fri Apr 16 01:29:35 2004 +0000 @@ -217,7 +217,7 @@ # else # ifdef DEBUG -# define dprintf(fmt,...) printf(fmt, __VA_ARGS__) +# define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__) # else # define dprintf(fmt,...) # endif @@ -1061,7 +1061,7 @@ #define get_vlc(s, vlc) get_vlc_trace(s, (vlc)->table, (vlc)->bits, 3, __FILE__, __PRETTY_FUNCTION__, __LINE__) #define get_vlc2(s, tab, bits, max) get_vlc_trace(s, tab, bits, max, __FILE__, __PRETTY_FUNCTION__, __LINE__) -#define tprintf printf +#define tprintf(...) av_log(NULL, AV_LOG_DEBUG, __VA_ARGS__) #else //TRACE #define tprintf(...) {}