Browse Source

avresample/x86: Switch operand order for mulps

With the forthcoming VEX instruction emulation, mulps
must have only the third operand point to memory, as
this is what vmulps expects.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
tags/n2.1
Derek Buitenhuis 11 years ago
parent
commit
15748773bf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavresample/x86/audio_mix.asm

+ 1
- 1
libavresample/x86/audio_mix.asm View File

@@ -422,7 +422,7 @@ cglobal mix_%1_to_%2_%3_flt, 3,in_channels+2,needed_mmregs+matrix_elements_mm, n
%if stereo || mx_stack_0_0
mulps m0, m0, mx_0_0
%else
mulps m0, [src0q+lenq], mx_0_0
mulps m0, mx_0_0, [src0q+lenq]
%endif
%assign %%i 1
%rep (in_channels - 1)


Loading…
Cancel
Save