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 /libavcodec/x86/fmtconvert.asm | |
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 'libavcodec/x86/fmtconvert.asm')
-rw-r--r-- | libavcodec/x86/fmtconvert.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/fmtconvert.asm b/libavcodec/x86/fmtconvert.asm index 0fd14fefa3..46b7e85242 100644 --- a/libavcodec/x86/fmtconvert.asm +++ b/libavcodec/x86/fmtconvert.asm @@ -404,7 +404,7 @@ cglobal float_interleave2_%1, 3,4,%2, dst, src, len, src1 mov src1q, [srcq+gprsize] mov srcq, [srcq ] sub src1q, srcq -.loop +.loop: MOVPS m0, [srcq ] MOVPS m1, [srcq+src1q ] MOVPS m3, [srcq +mmsize] |