# HG changeset patch # User mru # Date 1268073832 0 # Node ID 811467079ec9d493ed82c99a5e45d57d08e02c6a # Parent 56ec6b45980f6fe88096282274595db14608c367 Add lots of missing includes diff -r 56ec6b45980f -r 811467079ec9 aacsbrdata.h --- a/aacsbrdata.h Mon Mar 08 18:43:47 2010 +0000 +++ b/aacsbrdata.h Mon Mar 08 18:43:52 2010 +0000 @@ -29,6 +29,7 @@ #define AVCODEC_AACSBRDATA_H #include +#include "libavutil/mem.h" ///< Huffman tables for SBR diff -r 56ec6b45980f -r 811467079ec9 binkdata.h --- a/binkdata.h Mon Mar 08 18:43:47 2010 +0000 +++ b/binkdata.h Mon Mar 08 18:43:52 2010 +0000 @@ -22,6 +22,8 @@ #ifndef AVCODEC_BINKDATA_H #define AVCODEC_BINKDATA_H +#include + /** Bink DCT and residue 8x8 block scan order */ static const uint8_t bink_scan[64] = { 0, 1, 8, 9, 2, 3, 10, 11, diff -r 56ec6b45980f -r 811467079ec9 flv.h --- a/flv.h Mon Mar 08 18:43:47 2010 +0000 +++ b/flv.h Mon Mar 08 18:43:52 2010 +0000 @@ -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); diff -r 56ec6b45980f -r 811467079ec9 h263.h --- a/h263.h Mon Mar 08 18:43:47 2010 +0000 +++ b/h263.h Mon Mar 08 18:43:52 2010 +0000 @@ -20,6 +20,12 @@ #ifndef AVCODEC_H263_H #define AVCODEC_H263_H +#include +#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 diff -r 56ec6b45980f -r 811467079ec9 lzw.h --- a/lzw.h Mon Mar 08 18:43:47 2010 +0000 +++ b/lzw.h Mon Mar 08 18:43:52 2010 +0000 @@ -30,6 +30,8 @@ #ifndef AVCODEC_LZW_H #define AVCODEC_LZW_H +#include + struct PutBitContext; enum FF_LZW_MODES{ diff -r 56ec6b45980f -r 811467079ec9 mpeg4video.h --- a/mpeg4video.h Mon Mar 08 18:43:47 2010 +0000 +++ b/mpeg4video.h Mon Mar 08 18:43:52 2010 +0000 @@ -23,6 +23,11 @@ #ifndef AVCODEC_MPEG4VIDEO_H #define AVCODEC_MPEG4VIDEO_H +#include +#include "get_bits.h" +#include "mpegvideo.h" +#include "rl.h" + // shapes #define RECT_SHAPE 0 #define BIN_SHAPE 1 diff -r 56ec6b45980f -r 811467079ec9 synth_filter.h --- a/synth_filter.h Mon Mar 08 18:43:47 2010 +0000 +++ b/synth_filter.h Mon Mar 08 18:43:52 2010 +0000 @@ -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,