diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-06 00:09:48 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-07 15:20:56 +0100 |
commit | a3df4781f40869cd7766f46221412039cf54c1b7 (patch) | |
tree | 59cddf33dc73be1370aa59ca545ac35e47d2cb23 /libavresample/x86 | |
parent | 36ef5369ee9b336febc2c270f8718cec4476cb85 (diff) | |
download | ffmpeg-a3df4781f40869cd7766f46221412039cf54c1b7.tar.gz |
x86: add colons after labels
nasm prints a warning if the colon is missing.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavresample/x86')
-rw-r--r-- | libavresample/x86/audio_mix.asm | 2 |
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 |