diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-11-27 22:23:34 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-11-27 22:23:34 +0000 |
commit | 182f56cb0ce5136fe43dc4ec72d60f6a55834e84 (patch) | |
tree | 2150002d814d78d0f4812d915a64fa3960798b58 /libavcodec/i386/vc1dsp_mmx.c | |
parent | 713b0bffd6e172bc28b93a397101b626e9e3a8c8 (diff) | |
download | ffmpeg-182f56cb0ce5136fe43dc4ec72d60f6a55834e84.tar.gz |
make ff_p* vars extern so that they can be used in various *_mmx.c files
Originally committed as revision 11100 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/vc1dsp_mmx.c')
-rw-r--r-- | libavcodec/i386/vc1dsp_mmx.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/i386/vc1dsp_mmx.c b/libavcodec/i386/vc1dsp_mmx.c index 7fe473e21d..418c2bd407 100644 --- a/libavcodec/i386/vc1dsp_mmx.c +++ b/libavcodec/i386/vc1dsp_mmx.c @@ -25,6 +25,7 @@ */ #include "dsputil.h" +#include "dsputil_mmx.h" #include "x86_cpu.h" /** Add rounder from mm7 to mm3 and pack result at destination */ @@ -103,9 +104,6 @@ static void vc1_put_ver_16b_shift2_mmx(int16_t *dst, ); } -/** To remove bias allowing use of MMX 16bits arithmetic */ -DECLARE_ALIGNED_16(static const uint64_t, ff_pw_128) = 0x0080008000800080ULL; - /** * Data is already unpacked, so some operations can directly be made from * memory. |