From: Baptiste Coudurier Date: Sun, 24 May 2009 09:59:53 +0000 (+0000) Subject: move DEBUG define before include to get dprintf and move guidcmp before print_guid... X-Git-Tag: v0.6~4325 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c9d7cd6dca91be73a1f3b727bcc1bef22935de27;p=platform%2Fupstream%2Flibav.git move DEBUG define before include to get dprintf and move guidcmp before print_guid, fix compilation with DEBUG Originally committed as revision 18928 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 3810663..e89c0e4 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -19,6 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +//#define DEBUG + #include "libavutil/common.h" #include "libavutil/avstring.h" #include "libavcodec/mpegaudio.h" @@ -46,7 +48,10 @@ static const ff_asf_guid stream_bitrate_guid = { /* (http://get.to/sdp) */ /**********************************/ /* decoding */ -//#define DEBUG +static int guidcmp(const void *g1, const void *g2) +{ + return memcmp(g1, g2, sizeof(ff_asf_guid)); +} #ifdef DEBUG #define PRINT_IF_GUID(g,cmp) \ @@ -90,11 +95,6 @@ static void print_guid(const ff_asf_guid *g) #define print_guid(g) #endif -static int guidcmp(const void *g1, const void *g2) -{ - return memcmp(g1, g2, sizeof(ff_asf_guid)); -} - static void get_guid(ByteIOContext *s, ff_asf_guid *g) { assert(sizeof(*g) == 16);