Browse Source

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>
tags/n0.9
Reimar Döffinger 14 years ago
parent
commit
7076967786
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavcodec/x86/imdct36_sse.asm

+ 3
- 3
libavcodec/x86/imdct36_sse.asm View File

@@ -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


Loading…
Cancel
Save