Browse code

ARM: add some missing includes

Originally committed as revision 22340 to svn://svn.ffmpeg.org/ffmpeg/trunk

Måns Rullgård authored on 2010/03/09 04:59:54
Showing 3 changed files
... ...
@@ -21,6 +21,9 @@
21 21
 #ifndef AVCODEC_ARM_DSPUTIL_H
22 22
 #define AVCODEC_ARM_DSPUTIL_H
23 23
 
24
+#include "libavcodec/avcodec.h"
25
+#include "libavcodec/dsputil.h"
26
+
24 27
 void ff_dsputil_init_armv5te(DSPContext* c, AVCodecContext *avctx);
25 28
 void ff_dsputil_init_armv6(DSPContext* c, AVCodecContext *avctx);
26 29
 void ff_dsputil_init_vfp(DSPContext* c, AVCodecContext *avctx);
... ...
@@ -19,6 +19,8 @@
19 19
 #ifndef AVCODEC_ARM_MPEGVIDEO_H
20 20
 #define AVCODEC_ARM_MPEGVIDEO_H
21 21
 
22
+#include "libavcodec/mpegvideo.h"
23
+
22 24
 void MPV_common_init_iwmmxt(MpegEncContext *s);
23 25
 void MPV_common_init_armv5te(MpegEncContext *s);
24 26
 
... ...
@@ -22,6 +22,7 @@
22 22
 #define AVUTIL_ARM_TIMER_H
23 23
 
24 24
 #include <stdint.h>
25
+#include "config.h"
25 26
 
26 27
 #if HAVE_INLINE_ASM && defined(__ARM_ARCH_7A__)
27 28