diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-08 19:59:54 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-08 19:59:54 +0000 |
commit | 4a89e0a6752e737d7e3ce7cb69f2068ef551dc4c (patch) | |
tree | d76b9ad36eac20adc7df29d89138462c3269c7e7 /libavcodec/arm | |
parent | 97cda76a69afe59dae6168f8bf13a9170343d380 (diff) | |
download | ffmpeg-4a89e0a6752e737d7e3ce7cb69f2068ef551dc4c.tar.gz |
ARM: add some missing includes
Originally committed as revision 22340 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm')
-rw-r--r-- | libavcodec/arm/dsputil_arm.h | 3 | ||||
-rw-r--r-- | libavcodec/arm/mpegvideo_arm.h | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/arm/dsputil_arm.h b/libavcodec/arm/dsputil_arm.h index 8234f27739..7f8579d507 100644 --- a/libavcodec/arm/dsputil_arm.h +++ b/libavcodec/arm/dsputil_arm.h @@ -21,6 +21,9 @@ #ifndef AVCODEC_ARM_DSPUTIL_H #define AVCODEC_ARM_DSPUTIL_H +#include "libavcodec/avcodec.h" +#include "libavcodec/dsputil.h" + void ff_dsputil_init_armv5te(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_armv6(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_vfp(DSPContext* c, AVCodecContext *avctx); diff --git a/libavcodec/arm/mpegvideo_arm.h b/libavcodec/arm/mpegvideo_arm.h index 4874c86e0c..4cc25fdd36 100644 --- a/libavcodec/arm/mpegvideo_arm.h +++ b/libavcodec/arm/mpegvideo_arm.h @@ -19,6 +19,8 @@ #ifndef AVCODEC_ARM_MPEGVIDEO_H #define AVCODEC_ARM_MPEGVIDEO_H +#include "libavcodec/mpegvideo.h" + void MPV_common_init_iwmmxt(MpegEncContext *s); void MPV_common_init_armv5te(MpegEncContext *s); |