[FFmpeg-cvslog] r22337 - in trunk: libavcodec/aacsbrdata.h libavcodec/binkdata.h libavcodec/flv.h libavcodec/h263.h libavcodec/lzw.h libavcodec/mpeg4video.h libavcodec/synth_filter.h libavutil/x86/intreadwrite.h

mru subversion
Mon Mar 8 19:43:52 CET 2010


Author: mru
Date: Mon Mar  8 19:43:52 2010
New Revision: 22337

Log:
Add lots of missing includes

Modified:
   trunk/libavcodec/aacsbrdata.h
   trunk/libavcodec/binkdata.h
   trunk/libavcodec/flv.h
   trunk/libavcodec/h263.h
   trunk/libavcodec/lzw.h
   trunk/libavcodec/mpeg4video.h
   trunk/libavcodec/synth_filter.h
   trunk/libavutil/x86/intreadwrite.h

Modified: trunk/libavcodec/aacsbrdata.h
==============================================================================
--- trunk/libavcodec/aacsbrdata.h	Mon Mar  8 19:43:47 2010	(r22336)
+++ trunk/libavcodec/aacsbrdata.h	Mon Mar  8 19:43:52 2010	(r22337)
@@ -29,6 +29,7 @@
 #define AVCODEC_AACSBRDATA_H
 
 #include <stdint.h>
+#include "libavutil/mem.h"
 
 ///< Huffman tables for SBR
 

Modified: trunk/libavcodec/binkdata.h
==============================================================================
--- trunk/libavcodec/binkdata.h	Mon Mar  8 19:43:47 2010	(r22336)
+++ trunk/libavcodec/binkdata.h	Mon Mar  8 19:43:52 2010	(r22337)
@@ -22,6 +22,8 @@
 #ifndef AVCODEC_BINKDATA_H
 #define AVCODEC_BINKDATA_H
 
+#include <stdint.h>
+
 /** Bink DCT and residue 8x8 block scan order */
 static const uint8_t bink_scan[64] = {
      0,  1,  8,  9,  2,  3, 10, 11,

Modified: trunk/libavcodec/flv.h
==============================================================================
--- trunk/libavcodec/flv.h	Mon Mar  8 19:43:47 2010	(r22336)
+++ trunk/libavcodec/flv.h	Mon Mar  8 19:43:52 2010	(r22337)
@@ -20,6 +20,10 @@
 #ifndef AVCODEC_FLV_H
 #define AVCODEC_FLV_H
 
+#include "mpegvideo.h"
+#include "get_bits.h"
+#include "put_bits.h"
+
 void ff_flv_encode_picture_header(MpegEncContext * s, int picture_number);
 void ff_flv2_encode_ac_esc(PutBitContext *pb, int slevel, int level, int run, int last);
 

Modified: trunk/libavcodec/h263.h
==============================================================================
--- trunk/libavcodec/h263.h	Mon Mar  8 19:43:47 2010	(r22336)
+++ trunk/libavcodec/h263.h	Mon Mar  8 19:43:52 2010	(r22337)
@@ -20,6 +20,12 @@
 #ifndef AVCODEC_H263_H
 #define AVCODEC_H263_H
 
+#include <stdint.h>
+#include "libavutil/rational.h"
+#include "get_bits.h"
+#include "mpegvideo.h"
+#include "rl.h"
+
 // The defines below define the number of bits that are read at once for
 // reading vlc values. Changing these may improve speed and data cache needs
 // be aware though that decreasing them may need the number of stages that is

Modified: trunk/libavcodec/lzw.h
==============================================================================
--- trunk/libavcodec/lzw.h	Mon Mar  8 19:43:47 2010	(r22336)
+++ trunk/libavcodec/lzw.h	Mon Mar  8 19:43:52 2010	(r22337)
@@ -30,6 +30,8 @@
 #ifndef AVCODEC_LZW_H
 #define AVCODEC_LZW_H
 
+#include <stdint.h>
+
 struct PutBitContext;
 
 enum FF_LZW_MODES{

Modified: trunk/libavcodec/mpeg4video.h
==============================================================================
--- trunk/libavcodec/mpeg4video.h	Mon Mar  8 19:43:47 2010	(r22336)
+++ trunk/libavcodec/mpeg4video.h	Mon Mar  8 19:43:52 2010	(r22337)
@@ -23,6 +23,11 @@
 #ifndef AVCODEC_MPEG4VIDEO_H
 #define AVCODEC_MPEG4VIDEO_H
 
+#include <stdint.h>
+#include "get_bits.h"
+#include "mpegvideo.h"
+#include "rl.h"
+
 // shapes
 #define RECT_SHAPE       0
 #define BIN_SHAPE        1

Modified: trunk/libavcodec/synth_filter.h
==============================================================================
--- trunk/libavcodec/synth_filter.h	Mon Mar  8 19:43:47 2010	(r22336)
+++ trunk/libavcodec/synth_filter.h	Mon Mar  8 19:43:52 2010	(r22337)
@@ -21,7 +21,7 @@
 #ifndef AVCODEC_SYNTH_FILTER_H
 #define AVCODEC_SYNTH_FILTER_H
 
-#include "dsputil.h"
+#include "fft.h"
 
 void ff_synth_filter_float(FFTContext *imdct,
                            float *synth_buf_ptr, int *synth_buf_offset,

Modified: trunk/libavutil/x86/intreadwrite.h
==============================================================================
--- trunk/libavutil/x86/intreadwrite.h	Mon Mar  8 19:43:47 2010	(r22336)
+++ trunk/libavutil/x86/intreadwrite.h	Mon Mar  8 19:43:52 2010	(r22337)
@@ -23,6 +23,7 @@
 
 #include <stdint.h>
 #include "config.h"
+#include "libavutil/common.h"
 
 #if HAVE_MMX
 



More information about the ffmpeg-cvslog mailing list