summaryrefslogtreecommitdiff
path: root/libavresample
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-07 23:04:55 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-08-07 23:04:55 +0200
commit2fc7c818cb7b7bfdca69d17ab9f1b48290dbc3f6 (patch)
tree23a8f9c41f97be5cf9cdfd406575fa9ac9461b75 /libavresample
parent2da5a5ce00caebbe3afbda8612588966cfeac477 (diff)
parentedd82267958fbbd34eca4f4dbfb96197b9b40ab5 (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: x86: fix build with nasm 2.08 x86: use nop cpu directives only if supported x86: fix rNmp macros with nasm build: add trailing / to yasm/nasm -I flags x86: use 32-bit source registers with movd instruction x86: add colons after labels Conflicts: Makefile libavutil/x86/x86inc.asm Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavresample')
-rw-r--r--libavresample/x86/audio_mix.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavresample/x86/audio_mix.asm b/libavresample/x86/audio_mix.asm
index 8aeac8b242..bab4292e13 100644
--- a/libavresample/x86/audio_mix.asm
+++ b/libavresample/x86/audio_mix.asm
@@ -361,7 +361,7 @@ cglobal mix_%1_to_%2_%3_flt, 3,in_channels+2,needed_mmregs+matrix_elements_mm, s
mov src0q, [src0q]
add src0q, lenq
neg lenq
-.loop
+.loop:
; for x86-32 with 7-8 channels we do not have enough gp registers for all src
; pointers, so we have to load some of them from the stack each time
%define copy_src_from_stack ARCH_X86_32 && in_channels >= 7 && %%i >= 5