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/deinterlace.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/deinterlace.asm')
-rw-r--r-- | libavcodec/x86/deinterlace.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/deinterlace.asm b/libavcodec/x86/deinterlace.asm index 8613485d5d..8681181977 100644 --- a/libavcodec/x86/deinterlace.asm +++ b/libavcodec/x86/deinterlace.asm @@ -39,7 +39,7 @@ cglobal deinterlace_line_mmx, 7,7,7, dst, lum_m4, lum_m3, lum_m2, lum_m1 %endif pxor mm7, mm7 movq mm6, [pw_4] -.nextrow +.nextrow: movd mm0, [lum_m4q] movd mm1, [lum_m3q] movd mm2, [lum_m2q] |