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/h264_weight.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/h264_weight.asm')
-rw-r--r-- | libavcodec/x86/h264_weight.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/x86/h264_weight.asm b/libavcodec/x86/h264_weight.asm index 22ce72d19f..c8779cccdc 100644 --- a/libavcodec/x86/h264_weight.asm +++ b/libavcodec/x86/h264_weight.asm @@ -73,7 +73,7 @@ SECTION .text INIT_MMX cglobal h264_weight_16_mmx2, 6, 6, 0 WEIGHT_SETUP -.nextrow +.nextrow: WEIGHT_OP 0, 4 mova [r0 ], m0 WEIGHT_OP 8, 12 @@ -86,7 +86,7 @@ cglobal h264_weight_16_mmx2, 6, 6, 0 %macro WEIGHT_FUNC_MM 3 cglobal h264_weight_%1_%3, 6, 6, %2 WEIGHT_SETUP -.nextrow +.nextrow: WEIGHT_OP 0, mmsize/2 mova [r0], m0 add r0, r1 @@ -105,7 +105,7 @@ cglobal h264_weight_%1_%3, 6, 6, %2 WEIGHT_SETUP sar r2d, 1 lea r3, [r1*2] -.nextrow +.nextrow: WEIGHT_OP 0, r1 movh [r0], m0 %if mmsize == 16 @@ -178,7 +178,7 @@ INIT_MMX cglobal h264_biweight_16_mmx2, 7, 8, 0 BIWEIGHT_SETUP movifnidn r3d, r3m -.nextrow +.nextrow: BIWEIGHT_STEPA 0, 1, 0 BIWEIGHT_STEPA 1, 2, 4 BIWEIGHT_STEPB @@ -197,7 +197,7 @@ cglobal h264_biweight_16_mmx2, 7, 8, 0 cglobal h264_biweight_%1_%3, 7, 8, %2 BIWEIGHT_SETUP movifnidn r3d, r3m -.nextrow +.nextrow: BIWEIGHT_STEPA 0, 1, 0 BIWEIGHT_STEPA 1, 2, mmsize/2 BIWEIGHT_STEPB @@ -220,7 +220,7 @@ cglobal h264_biweight_%1_%3, 7, 8, %2 movifnidn r3d, r3m sar r3, 1 lea r4, [r2*2] -.nextrow +.nextrow: BIWEIGHT_STEPA 0, 1, 0 BIWEIGHT_STEPA 1, 2, r2 BIWEIGHT_STEPB @@ -281,7 +281,7 @@ cglobal h264_biweight_16_ssse3, 7, 8, 8 BIWEIGHT_SSSE3_SETUP movifnidn r3d, r3m -.nextrow +.nextrow: movh m0, [r0] movh m2, [r0+8] movh m3, [r1+8] @@ -302,7 +302,7 @@ cglobal h264_biweight_8_ssse3, 7, 8, 8 sar r3, 1 lea r4, [r2*2] -.nextrow +.nextrow: movh m0, [r0] movh m1, [r1] movh m2, [r0+r2] |