[XviD-devel] Modified quantize4_mmx.asm and Makefile.inc

Michael Militzer xvid-devel@xvid.org
Sun, 7 Jul 2002 13:17:48 +0200


> the xmm.asm and 3dn.asm files were missing in Makefile.inc, so
> I added them and commited. Also, there was a range violation in
> quantize4_mmx.asm (at least for my nasm) which I solved by using
>
> .loop
> [...]
>   jz .noloop
>   jmp .loop
> .noloop
>
> instead of
>
> .loop
> [...]
>   jnz .loop
>
>
> I hope that's okay.

is this you fix for the "short jump is out of range" error?? Then it's not
ok, this problem can be simply solved with a near jump, so the line should
look like jnz near .loop - I'll have a look...

Michael