[FFmpeg-cvslog] x86: float_dsp: fix loading of the len parameter on x86-32

Justin Ruggles git at videolan.org
Sat Dec 8 16:40:07 CET 2012


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Wed Dec  5 12:51:34 2012 -0500| [1c012e6bfb775eeb01355bfed7229c6795b3f3fc] | committer: Justin Ruggles

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

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1c012e6bfb775eeb01355bfed7229c6795b3f3fc
---

 libavutil/x86/float_dsp.asm |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/libavutil/x86/float_dsp.asm b/libavutil/x86/float_dsp.asm
index 4a1742f..4113fd9 100644
--- a/libavutil/x86/float_dsp.asm
+++ b/libavutil/x86/float_dsp.asm
@@ -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



More information about the ffmpeg-cvslog mailing list