This fixes assembling using "nasm".
| ... | ... |
@@ -518,7 +518,7 @@ cglobal yuv2planeX_%2_%1, %4, 7, %3 |
| 518 | 518 |
|
| 519 | 519 |
xor r5, r5 |
| 520 | 520 |
|
| 521 |
-.pixelloop |
|
| 521 |
+.pixelloop: |
|
| 522 | 522 |
%assign %%i 0 |
| 523 | 523 |
; the rep here is for the 8bit output mmx case, where dither covers |
| 524 | 524 |
; 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 |
| 541 | 541 |
mova m2, m1 |
| 542 | 542 |
%endif ; %2 == 8/9/10/16 |
| 543 | 543 |
movsx cntr_reg, r1m |
| 544 |
-.filterloop_ %+ %%i |
|
| 544 |
+.filterloop_ %+ %%i: |
|
| 545 | 545 |
; input pixels |
| 546 | 546 |
mov r6, [r2+gprsize*cntr_reg-2*gprsize] |
| 547 | 547 |
%if %2 == 16 |