diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2009-10-25 03:09:53 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2009-10-25 03:09:53 +0000 |
commit | 452130836320cf348b2e81b35d15ba30664d889e (patch) | |
tree | b8e557ccf5e1a683e39a63a21f07120a54ca48f3 /libavcodec/x86/fft_mmx.asm | |
parent | 7549632bdad8c50b7a58281f15e72b6fd5a1ed5d (diff) | |
download | ffmpeg-452130836320cf348b2e81b35d15ba30664d889e.tar.gz |
s/movdqa/movaps/ in sse1 fft. (regression in r20293)
Originally committed as revision 20371 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/fft_mmx.asm')
-rw-r--r-- | libavcodec/x86/fft_mmx.asm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/x86/fft_mmx.asm b/libavcodec/x86/fft_mmx.asm index 6c1b26d401..26bd748ae9 100644 --- a/libavcodec/x86/fft_mmx.asm +++ b/libavcodec/x86/fft_mmx.asm @@ -264,6 +264,7 @@ IF%1 mova Z(1), m3 %endmacro INIT_XMM +%define mova movaps %define Z(x) [r0+mmsize*x] @@ -403,6 +404,7 @@ DEFINE_ARGS z, w, n, o1, o3 %endmacro INIT_XMM +%define mova movaps DECL_PASS pass_sse, PASS_BIG 1 DECL_PASS pass_interleave_sse, PASS_BIG 0 |