diff options
author | Ronald S. Bultje | 2011-10-23 09:34:36 -0700 |
---|---|---|
committer | Ronald S. Bultje | 2011-10-23 09:44:03 -0700 |
commit | 9e66b892e8b5ebfee395457ec05e364158a4e0da (patch) | |
tree | de6833596b3ce740f3d4f8e8366e705d403c3681 /libswscale | |
parent | 704721bc9cb47c58ce3dff8ef64ce3fb85283069 (diff) |
swscale: add missing colons to x86 assembly yuv2planeX.
This fixes assembling using "nasm".
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/x86/scale.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/x86/scale.asm b/libswscale/x86/scale.asm index c8a691603d..958019916d 100644 --- a/libswscale/x86/scale.asm +++ b/libswscale/x86/scale.asm @@ -518,7 +518,7 @@ cglobal yuv2planeX_%2_%1, %4, 7, %3 xor r5, r5 -.pixelloop +.pixelloop: %assign %%i 0 ; the rep here is for the 8bit output mmx case, where dither covers ; 8 pixels but we can only handle 2 pixels per register, and thus 4 @@ -541,7 +541,7 @@ cglobal yuv2planeX_%2_%1, %4, 7, %3 mova m2, m1 %endif ; %2 == 8/9/10/16 movsx cntr_reg, r1m -.filterloop_ %+ %%i +.filterloop_ %+ %%i: ; input pixels mov r6, [r2+gprsize*cntr_reg-2*gprsize] %if %2 == 16 |