diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-12 23:48:07 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-12 23:48:07 +0000 |
commit | 5110b25e1e5926e56d40293e9d5c0b129966a56a (patch) | |
tree | 1bf0ae55e908e0eee247ffbda47afd770c329b86 /libavcodec/x86/cavsdsp_mmx.c | |
parent | 81b55ee5e7a1055f3b3a66b22362a9f8dfa5b9b9 (diff) | |
download | ffmpeg-5110b25e1e5926e56d40293e9d5c0b129966a56a.tar.gz |
convert ff_pw_64 into an xmm_reg for future use in vp6 sse code
Originally committed as revision 17192 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 012e6c6ba0..6c2bdc125c 100644 --- a/libavcodec/x86/cavsdsp_mmx.c +++ b/libavcodec/x86/cavsdsp_mmx.c @@ -148,7 +148,7 @@ static void cavs_idct8_add_mmx(uint8_t *dst, int16_t *block, int stride) } for(i=0; i<2; i++){ - cavs_idct8_1d(b2+4*i, ff_pw_64); + cavs_idct8_1d(b2+4*i, ff_pw_64.a); __asm__ volatile( "psraw $7, %%mm7 \n\t" |