[FFmpeg-soc] [soc]: r3484 - mxf/mxf.h
spyfeng
subversion at mplayerhq.hu
Wed Aug 20 17:07:18 CEST 2008
Author: spyfeng
Date: Wed Aug 20 17:07:18 2008
New Revision: 3484
Log:
modify #ifndef to #ifdef.
this is more readable.
Modified:
mxf/mxf.h
Modified: mxf/mxf.h
==============================================================================
--- mxf/mxf.h (original)
+++ mxf/mxf.h Wed Aug 20 17:07:18 2008
@@ -63,11 +63,11 @@ extern const MXFDataDefinitionUL ff_mxf_
extern const MXFCodecUL ff_mxf_codec_uls[];
extern const MXFCodecUL ff_mxf_essence_container_uls[];
-#ifndef DEBUG
-#define PRINT_KEY(pc, s, x)
-#else
+#ifdef DEBUG
#define PRINT_KEY(pc, s, x) dprintf(pc, "%s %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X\n", s, \
(x)[0], (x)[1], (x)[2], (x)[3], (x)[4], (x)[5], (x)[6], (x)[7], (x)[8], (x)[9], (x)[10], (x)[11], (x)[12], (x)[13], (x)[14], (x)[15])
+#else
+#define PRINT_KEY(pc, s, x)
#endif
#endif /* FFMPEG_MXF_H */
More information about the FFmpeg-soc
mailing list