From 5f14f9e9849579b3418aebfde8a162d9c172d0ea Mon Sep 17 00:00:00 2001 From: James Almer Date: Wed, 31 Dec 2014 02:15:08 -0300 Subject: x86/swr: add missing alignment check to pack_6ch functions Reviewed-by: Michael Niedermayer Signed-off-by: James Almer --- libswresample/x86/audio_convert.asm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libswresample') diff --git a/libswresample/x86/audio_convert.asm b/libswresample/x86/audio_convert.asm index 370643254a..c2918a4c83 100644 --- a/libswresample/x86/audio_convert.asm +++ b/libswresample/x86/audio_convert.asm @@ -221,6 +221,8 @@ cglobal pack_6ch_%2_to_%1_%3, 2,8,7, dst, src, src1, src2, src3, src4, src5, len jne pack_6ch_%2_to_%1_u_int %+ SUFFIX test srcq, mmsize-1 jne pack_6ch_%2_to_%1_u_int %+ SUFFIX + test src1q, mmsize-1 + jne pack_6ch_%2_to_%1_u_int %+ SUFFIX test src2q, mmsize-1 jne pack_6ch_%2_to_%1_u_int %+ SUFFIX test src3q, mmsize-1 -- cgit v1.2.3