diff options
author | David Conrad <lessen42@gmail.com> | 2010-07-11 22:52:55 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-07-11 22:52:55 +0000 |
commit | 7af8fbd3485fade2f84cf4f5d6f03c10c4820aa6 (patch) | |
tree | 52be50ae23f733a90a89c7fc7bbd6305f4b6fb03 /libavcodec/x86/cavsdsp_mmx.c | |
parent | fca58a815aa242e707b22db3fce1da44a50ffcd4 (diff) | |
download | ffmpeg-7af8fbd3485fade2f84cf4f5d6f03c10c4820aa6.tar.gz |
Make ff_pw_4 128 bits
Originally committed as revision 24207 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/cavsdsp_mmx.c')
-rw-r--r-- | libavcodec/x86/cavsdsp_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/cavsdsp_mmx.c b/libavcodec/x86/cavsdsp_mmx.c index 638eaf7ce8..e8c7065fd7 100644 --- a/libavcodec/x86/cavsdsp_mmx.c +++ b/libavcodec/x86/cavsdsp_mmx.c @@ -118,7 +118,7 @@ static void cavs_idct8_add_mmx(uint8_t *dst, int16_t *block, int stride) for(i=0; i<2; i++){ DECLARE_ALIGNED(8, uint64_t, tmp); - cavs_idct8_1d(block+4*i, ff_pw_4); + cavs_idct8_1d(block+4*i, ff_pw_4.a); __asm__ volatile( "psraw $3, %%mm7 \n\t" |