diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-17 21:43:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-17 21:43:57 +0000 |
commit | 30f68128abb88511238c308eaba4139e32ce1244 (patch) | |
tree | ec2b18f0b8e3696ee2f9f46a40a6e7b1b7bef7da | |
parent | 1f1ff73156a93d6c911997b14181e6abad966d1f (diff) | |
download | ffmpeg-30f68128abb88511238c308eaba4139e32ce1244.tar.gz |
Add missing #includes to fix 'make checkheaders'.
Originally committed as revision 17398 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/aac.h | 1 | ||||
-rw-r--r-- | libavcodec/ac3dec.h | 1 | ||||
-rw-r--r-- | libavformat/avio.h | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h index 67351dc122..66b2e22d0e 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -30,6 +30,7 @@ #ifndef AVCODEC_AAC_H #define AVCODEC_AAC_H +#include "libavutil/internal.h" #include "avcodec.h" #include "dsputil.h" #include "mpeg4audio.h" diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h index f72577a83c..4e513d2710 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -27,6 +27,7 @@ #ifndef AVCODEC_AC3DEC_H #define AVCODEC_AC3DEC_H +#include "libavutil/internal.h" #include "libavutil/lfg.h" #include "ac3.h" #include "bitstream.h" diff --git a/libavformat/avio.h b/libavformat/avio.h index 3658c9ee53..84492d5a15 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -23,6 +23,8 @@ #include <stdint.h> +#include "libavutil/common.h" + /* unbuffered I/O */ /** |