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/mpegvideo_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/mpegvideo_mmx.c')
-rw-r--r-- | libavcodec/i386/mpegvideo_mmx.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/i386/mpegvideo_mmx.c b/libavcodec/i386/mpegvideo_mmx.c index 8b7e62c673..bc91c56ac3 100644 --- a/libavcodec/i386/mpegvideo_mmx.c +++ b/libavcodec/i386/mpegvideo_mmx.c @@ -23,15 +23,13 @@ */ #include "dsputil.h" +#include "dsputil_mmx.h" #include "mpegvideo.h" #include "avcodec.h" #include "x86_cpu.h" extern uint16_t inv_zigzag_direct16[64]; -static const unsigned long long int mm_wabs __attribute__ ((aligned(8))) = 0xffffffffffffffffULL; -static const unsigned long long int mm_wone __attribute__ ((aligned(8))) = 0x0001000100010001ULL; - static void dct_unquantize_h263_intra_mmx(MpegEncContext *s, DCTELEM *block, int n, int qscale) |