[FFmpeg-cvslog] r17041 - in trunk/libavformat: mxf.c mxf.h mxfdec.c mxfenc.c

bcoudurier subversion
Sun Feb 8 05:42:38 CET 2009


Author: bcoudurier
Date: Sun Feb  8 05:42:38 2009
New Revision: 17041

Log:
remove implicit header inclusions from mxf.h

Modified:
   trunk/libavformat/mxf.c
   trunk/libavformat/mxf.h
   trunk/libavformat/mxfdec.c
   trunk/libavformat/mxfenc.c

Modified: trunk/libavformat/mxf.c
==============================================================================
--- trunk/libavformat/mxf.c	Sun Feb  8 05:35:36 2009	(r17040)
+++ trunk/libavformat/mxf.c	Sun Feb  8 05:42:38 2009	(r17041)
@@ -41,6 +41,7 @@ const MXFCodecUL ff_mxf_codec_uls[] = {
     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x01,0x02,0x02,0x02,0x01,0x02,0x00 }, 13,    CODEC_ID_DVVIDEO }, /* DV25 IEC PAL */
     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x07,0x04,0x01,0x02,0x02,0x03,0x01,0x01,0x00 }, 14,   CODEC_ID_JPEG2000 }, /* JPEG2000 Codestream */
     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x01,0x02,0x01,0x7F,0x00,0x00,0x00 }, 13,   CODEC_ID_RAWVIDEO }, /* Uncompressed */
+    { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x01,0x02,0x02,0x03,0x02,0x00,0x00 }, 14,      CODEC_ID_DNXHD }, /* SMPTE VC-3/DNxHD */
     /* SoundEssenceCompression */
     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x01,0x00,0x00,0x00,0x00 }, 13,  CODEC_ID_PCM_S16LE }, /* Uncompressed */
     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x01,0x7F,0x00,0x00,0x00 }, 13,  CODEC_ID_PCM_S16LE },

Modified: trunk/libavformat/mxf.h
==============================================================================
--- trunk/libavformat/mxf.h	Sun Feb  8 05:35:36 2009	(r17040)
+++ trunk/libavformat/mxf.h	Sun Feb  8 05:42:38 2009	(r17041)
@@ -21,9 +21,8 @@
 #ifndef AVFORMAT_MXF_H
 #define AVFORMAT_MXF_H
 
-#include <string.h>
-#include "avformat.h"
-#include "libavcodec/bytestream.h"
+#include "libavcodec/avcodec.h"
+#include <stdint.h>
 
 typedef uint8_t UID[16];
 

Modified: trunk/libavformat/mxfdec.c
==============================================================================
--- trunk/libavformat/mxfdec.c	Sun Feb  8 05:35:36 2009	(r17040)
+++ trunk/libavformat/mxfdec.c	Sun Feb  8 05:42:38 2009	(r17041)
@@ -46,6 +46,8 @@
 //#define DEBUG
 
 #include "libavutil/aes.h"
+#include "libavcodec/bytestream.h"
+#include "avformat.h"
 #include "mxf.h"
 
 typedef struct {

Modified: trunk/libavformat/mxfenc.c
==============================================================================
--- trunk/libavformat/mxfenc.c	Sun Feb  8 05:35:36 2009	(r17040)
+++ trunk/libavformat/mxfenc.c	Sun Feb  8 05:42:38 2009	(r17041)
@@ -36,7 +36,9 @@
 #include <time.h>
 
 #include "libavutil/fifo.h"
+#include "libavcodec/bytestream.h"
 #include "audiointerleave.h"
+#include "avformat.h"
 #include "mxf.h"
 
 static const int NTSC_samples_per_frame[] = { 1602, 1601, 1602, 1601, 1602, 0 };




More information about the ffmpeg-cvslog mailing list