diff options
author | James Almer <jamrial@gmail.com> | 2015-07-26 02:28:51 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-07-26 02:51:08 -0300 |
commit | 4d2c014a8f0a802e2d59293cdef81d899dfdb484 (patch) | |
tree | 9cbe60842ac90825e6faffd59786b8fbc656be16 /libavutil/x86/float_dsp.asm | |
parent | d9e10af54784f5f8eaa2b4f9f7409ce215916ee4 (diff) | |
download | ffmpeg-4d2c014a8f0a802e2d59293cdef81d899dfdb484.tar.gz |
x86/float_dsp: add missing colon to labels
Silences warnings with Nasm
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/x86/float_dsp.asm')
-rw-r--r-- | libavutil/x86/float_dsp.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/float_dsp.asm b/libavutil/x86/float_dsp.asm index ec3d22b230..87229d4374 100644 --- a/libavutil/x86/float_dsp.asm +++ b/libavutil/x86/float_dsp.asm @@ -203,7 +203,7 @@ cglobal vector_fmul_window, 5, 6, 6, dst, src0, src1, win, len, len1 add dstq, lenq add winq, lenq neg lenq -.loop +.loop: mova m0, [winq + lenq] mova m4, [src0q + lenq] %if cpuflag(sse) |