diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-20 12:57:57 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-29 19:55:38 +0100 |
commit | 70769677866a976ea1f047fdf63206fb9951f5a0 (patch) | |
tree | f020a94bd04a5187857d71cd9bb2c03bb31cc613 /libavcodec/x86 | |
parent | 551b9eb9efa68fa8adf843f190358237308f7e9a (diff) | |
download | ffmpeg-70769677866a976ea1f047fdf63206fb9951f5a0.tar.gz |
Consistently use %ifdef ARCH_X86_64
One out of 3 places used ifndef, which is needlessly confusing.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/imdct36_sse.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/imdct36_sse.asm b/libavcodec/x86/imdct36_sse.asm index b4b45e6a38..2b8fe57e0b 100644 --- a/libavcodec/x86/imdct36_sse.asm +++ b/libavcodec/x86/imdct36_sse.asm @@ -209,10 +209,10 @@ cglobal imdct36_float_%1, 4,4,9, out, buf, in, win mulps m5, m6, [ps_val1] subps m7, m7, m5 -%ifndef ARCH_X86_64 - subps m5, m0, m3 -%else +%ifdef ARCH_X86_64 SWAP m5, m8 +%else + subps m5, m0, m3 %endif subps m5, m5, m6 |