Browse Source

x86: float_dsp: fix loading of the len parameter on x86-32

tags/n1.1
Justin Ruggles 13 years ago
parent
commit
1c012e6bfb
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavutil/x86/float_dsp.asm

+ 4
- 1
libavutil/x86/float_dsp.asm View File

@@ -121,7 +121,10 @@ VECTOR_FMUL_SCALAR
;------------------------------------------------------------------------------

%macro VECTOR_DMUL_SCALAR 0
%if UNIX64
%if ARCH_X86_32
cglobal vector_dmul_scalar, 3,4,3, dst, src, mul, len, lenaddr
mov lenq, lenaddrm
%elif UNIX64
cglobal vector_dmul_scalar, 3,3,3, dst, src, len
%else
cglobal vector_dmul_scalar, 4,4,3, dst, src, mul, len


Loading…
Cancel
Save