diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-05-08 00:50:17 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-08 18:18:23 +0200 |
commit | 71469f3b636fbe06b6aca5933f9fdebddd8d5f57 (patch) | |
tree | 69c521070018e6141c78e4b6e8dfb1aff85e321a /libavcodec/x86/vc1dsp_mmx.c | |
parent | ed880050edf061b38d3e39e25657c59ad9108b27 (diff) | |
download | ffmpeg-71469f3b636fbe06b6aca5933f9fdebddd8d5f57.tar.gz |
x86: dsputil: Move constant declarations into separate header
Diffstat (limited to 'libavcodec/x86/vc1dsp_mmx.c')
-rw-r--r-- | libavcodec/x86/vc1dsp_mmx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/x86/vc1dsp_mmx.c b/libavcodec/x86/vc1dsp_mmx.c index 846590bd2a..5a0877f63f 100644 --- a/libavcodec/x86/vc1dsp_mmx.c +++ b/libavcodec/x86/vc1dsp_mmx.c @@ -29,8 +29,9 @@ #include "libavutil/mem.h" #include "libavutil/x86/asm.h" #include "libavutil/x86/cpu.h" -#include "dsputil_mmx.h" #include "libavcodec/vc1dsp.h" +#include "constants.h" +#include "dsputil_mmx.h" #include "vc1dsp.h" #if HAVE_INLINE_ASM |