# HG changeset patch # User michael # Date 1005441249 0 # Node ID cfc61eef5a6676c7682c39dce561e7a4d7725c5b # Parent cbb62e07bc0e6e8658a3159e90aeab74745e7072 bugfix nick why did u remove the #if 0 around that code without testing it? diff -r cbb62e07bc0e -r cfc61eef5a66 libvo/osd.c --- a/libvo/osd.c Sun Nov 11 00:50:40 2001 +0000 +++ b/libvo/osd.c Sun Nov 11 01:14:09 2001 +0000 @@ -126,20 +126,20 @@ "movb (%1, %%eax), %%bl \n\t" "cmpb $0, %%bl \n\t" " jz 2f \n\t" - "movzxb (%2, %%eax), %%edx \n\t" + "movzbl (%2, %%eax), %%edx \n\t" "shll $8, %%edx \n\t" "decb %%bl \n\t" - "movzxb (%0, %%eax, 4), %%ecx \n\t" + "movzbl (%0, %%eax, 4), %%ecx \n\t" "imull %%ebx, %%ecx \n\t" "addl %%edx, %%ecx \n\t" "movb %%ch, (%0, %%eax, 4) \n\t" - "movzxb 1(%0, %%eax, 4), %%ecx \n\t" + "movzbl 1(%0, %%eax, 4), %%ecx \n\t" "imull %%ebx, %%ecx \n\t" "addl %%edx, %%ecx \n\t" "movb %%ch, 1(%0, %%eax, 4) \n\t" - "movzxb 2(%0, %%eax, 4), %%ecx \n\t" + "movzbl 2(%0, %%eax, 4), %%ecx \n\t" "imull %%ebx, %%ecx \n\t" "addl %%edx, %%ecx \n\t" "movb %%ch, 2(%0, %%eax, 4) \n\t" diff -r cbb62e07bc0e -r cfc61eef5a66 libvo/osd_template.c --- a/libvo/osd_template.c Sun Nov 11 00:50:40 2001 +0000 +++ b/libvo/osd_template.c Sun Nov 11 01:14:09 2001 +0000 @@ -126,20 +126,20 @@ "movb (%1, %%eax), %%bl \n\t" "cmpb $0, %%bl \n\t" " jz 2f \n\t" - "movzxb (%2, %%eax), %%edx \n\t" + "movzbl (%2, %%eax), %%edx \n\t" "shll $8, %%edx \n\t" "decb %%bl \n\t" - "movzxb (%0, %%eax, 4), %%ecx \n\t" + "movzbl (%0, %%eax, 4), %%ecx \n\t" "imull %%ebx, %%ecx \n\t" "addl %%edx, %%ecx \n\t" "movb %%ch, (%0, %%eax, 4) \n\t" - "movzxb 1(%0, %%eax, 4), %%ecx \n\t" + "movzbl 1(%0, %%eax, 4), %%ecx \n\t" "imull %%ebx, %%ecx \n\t" "addl %%edx, %%ecx \n\t" "movb %%ch, 1(%0, %%eax, 4) \n\t" - "movzxb 2(%0, %%eax, 4), %%ecx \n\t" + "movzbl 2(%0, %%eax, 4), %%ecx \n\t" "imull %%ebx, %%ecx \n\t" "addl %%edx, %%ecx \n\t" "movb %%ch, 2(%0, %%eax, 4) \n\t"