diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-08-22 04:12:52 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-08-22 04:12:52 +0000 |
commit | 9b9466b0cd15f88bcd2cff2d30b1f67d2e8755d1 (patch) | |
tree | ca2adbb0bee42ae2bf659779a7c81b53709f9186 /libavformat/mxf.h | |
parent | 474efc188974b13ddf8f4b29e82818f0bdb0b787 (diff) | |
download | ffmpeg-9b9466b0cd15f88bcd2cff2d30b1f67d2e8755d1.tar.gz |
Apply parts of MXF muxer ok'ed by Michael
Originally committed as revision 14903 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mxf.h')
-rw-r--r-- | libavformat/mxf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/mxf.h b/libavformat/mxf.h index 15e7069789..480b619d38 100644 --- a/libavformat/mxf.h +++ b/libavformat/mxf.h @@ -64,7 +64,11 @@ extern const MXFDataDefinitionUL ff_mxf_data_definition_uls[]; extern const MXFCodecUL ff_mxf_codec_uls[]; extern const MXFCodecUL ff_mxf_essence_container_uls[]; +#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 */ |