Module: libav Branch: master Commit: 4a53c758d2f69302e6822b23f3e7349253b9e8d3
Author: Henrik Gramner <[email protected]> Committer: Anton Khirnov <[email protected]> Date: Sat Aug 1 17:10:22 2015 +0200 x86: dcadsp: Avoid SSE2 instructions in SSE functions Signed-off-by: Anton Khirnov <[email protected]> --- libavcodec/x86/dcadsp.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/x86/dcadsp.asm b/libavcodec/x86/dcadsp.asm index c42ee23..c99df12 100644 --- a/libavcodec/x86/dcadsp.asm +++ b/libavcodec/x86/dcadsp.asm @@ -148,7 +148,7 @@ DECODE_HF addps m4, va ; va1+3 vb1+3 va2+4 vb2+4 movhlps vb, m4 ; va1+3 vb1+3 addps vb, m4 ; va0..4 vb0..4 - movh [outq + count], vb + movlps [outq + count], vb %if %1 sub cf0q, 8*NUM_COEF %endif _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
