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_10bit.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_10bit.asm')
-rw-r--r-- | libavcodec/x86/h264_weight_10bit.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/x86/h264_weight_10bit.asm b/libavcodec/x86/h264_weight_10bit.asm index dec9aba461..24386f882e 100644 --- a/libavcodec/x86/h264_weight_10bit.asm +++ b/libavcodec/x86/h264_weight_10bit.asm @@ -40,7 +40,7 @@ SECTION .text ; int weight, int offset); ;----------------------------------------------------------------------------- %macro WEIGHT_PROLOGUE 0 -.prologue +.prologue: PROLOGUE 0,6,8 movifnidn r0, r0mp movifnidn r1d, r1m @@ -93,7 +93,7 @@ SECTION .text cglobal h264_weight_16_10_%1 WEIGHT_PROLOGUE WEIGHT_SETUP %1 -.nextrow +.nextrow: WEIGHT_OP %1, 0 mova [r0 ], m5 WEIGHT_OP %1, 16 @@ -113,7 +113,7 @@ WEIGHT_FUNC_DBL sse4 cglobal h264_weight_8_10_%1 WEIGHT_PROLOGUE WEIGHT_SETUP %1 -.nextrow +.nextrow: WEIGHT_OP %1, 0 mova [r0], m5 add r0, r1 @@ -133,7 +133,7 @@ cglobal h264_weight_4_10_%1 sar r2d, 1 WEIGHT_SETUP %1 lea r3, [r1*2] -.nextrow +.nextrow: WEIGHT_OP %1, 0, r1 movh [r0], m5 movhps [r0+r1], m5 @@ -159,7 +159,7 @@ DECLARE_REG_TMP 7 %endif %macro BIWEIGHT_PROLOGUE 0 -.prologue +.prologue: PROLOGUE 0,8,8 movifnidn r0, r0mp movifnidn r1, r1mp @@ -221,7 +221,7 @@ DECLARE_REG_TMP 7 cglobal h264_biweight_16_10_%1 BIWEIGHT_PROLOGUE BIWEIGHT_SETUP %1 -.nextrow +.nextrow: BIWEIGHT %1, 0 mova [r0 ], m0 BIWEIGHT %1, 16 @@ -241,7 +241,7 @@ BIWEIGHT_FUNC_DBL sse4 cglobal h264_biweight_8_10_%1 BIWEIGHT_PROLOGUE BIWEIGHT_SETUP %1 -.nextrow +.nextrow: BIWEIGHT %1, 0 mova [r0], m0 add r0, r2 @@ -261,7 +261,7 @@ cglobal h264_biweight_4_10_%1 BIWEIGHT_SETUP %1 sar r3d, 1 lea r4, [r2*2] -.nextrow +.nextrow: BIWEIGHT %1, 0, r2 movh [r0 ], m0 movhps [r0+r2], m0 |