diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-06 22:36:36 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-06 22:36:36 +0000 |
commit | c26e58e32cf430f060209e0d6088181f4426b3ce (patch) | |
tree | 16425efeac4ce073a483950cbdafe09c4297e6fd /libavcodec/x86 | |
parent | 5189573c6d31816705cbecaa8e527fcf606ee060 (diff) | |
download | ffmpeg-c26e58e32cf430f060209e0d6088181f4426b3ce.tar.gz |
Add some missing #includes
Originally committed as revision 22258 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/idct_mmx_xvid.c | 1 | ||||
-rw-r--r-- | libavcodec/x86/snowdsp_mmx.c | 1 | ||||
-rw-r--r-- | libavcodec/x86/vp3dsp_mmx.c | 1 | ||||
-rw-r--r-- | libavcodec/x86/vp3dsp_sse2.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/x86/idct_mmx_xvid.c b/libavcodec/x86/idct_mmx_xvid.c index f955bd8221..466cf75bc4 100644 --- a/libavcodec/x86/idct_mmx_xvid.c +++ b/libavcodec/x86/idct_mmx_xvid.c @@ -41,6 +41,7 @@ #include <inttypes.h> #include "libavcodec/avcodec.h" +#include "idct_xvid.h" //============================================================================= // Macros and other preprocessor constants diff --git a/libavcodec/x86/snowdsp_mmx.c b/libavcodec/x86/snowdsp_mmx.c index 0e1259ff64..1e1d2e22d8 100644 --- a/libavcodec/x86/snowdsp_mmx.c +++ b/libavcodec/x86/snowdsp_mmx.c @@ -22,6 +22,7 @@ #include "libavutil/x86_cpu.h" #include "libavcodec/avcodec.h" #include "libavcodec/snow.h" +#include "dsputil_mmx.h" void ff_snow_horizontal_compose97i_sse2(IDWTELEM *b, int width){ const int w2= (width+1)>>1; diff --git a/libavcodec/x86/vp3dsp_mmx.c b/libavcodec/x86/vp3dsp_mmx.c index 27d4640217..fead8e8cef 100644 --- a/libavcodec/x86/vp3dsp_mmx.c +++ b/libavcodec/x86/vp3dsp_mmx.c @@ -26,6 +26,7 @@ #include "libavutil/x86_cpu.h" #include "libavcodec/dsputil.h" #include "dsputil_mmx.h" +#include "vp3dsp_mmx.h" extern const uint16_t ff_vp3_idct_data[]; diff --git a/libavcodec/x86/vp3dsp_sse2.c b/libavcodec/x86/vp3dsp_sse2.c index f3db6da56f..3de3e47272 100644 --- a/libavcodec/x86/vp3dsp_sse2.c +++ b/libavcodec/x86/vp3dsp_sse2.c @@ -25,6 +25,7 @@ #include "libavcodec/dsputil.h" #include "dsputil_mmx.h" +#include "vp3dsp_sse2.h" DECLARE_ALIGNED(16, const uint16_t, ff_vp3_idct_data)[7 * 8] = { |