annotate postproc/swscale_template.c @ 3126:e71ae0213431

runtime cpu detection
author michael
date Mon, 26 Nov 2001 00:31:43 +0000
parents 7847d6b7ad3d
children b196b915fdc4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
2 // Software scaling and colorspace conversion routines for MPlayer
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
3
2269
95c48204bcd9 (C) fixed
arpi
parents: 2267
diff changeset
4 // Orginal C implementation by A'rpi/ESP-team <arpi@thot.banki.hu>
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
5 // current version mostly by Michael Niedermayer (michaelni@gmx.at)
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
6 // the parts written by michael are under GNU GPL
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
7
2540
f2e70944d02a fixed a warning
michael
parents: 2534
diff changeset
8 #undef MOVNTQ
2680
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
9 #undef PAVGB
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
10
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
11 #ifdef HAVE_MMX2
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
12 #define PAVGB(a,b) "pavgb " #a ", " #b " \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
13 #elif defined (HAVE_3DNOW)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
14 #define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
15 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
16
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
17 #ifdef HAVE_MMX2
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
18 #define MOVNTQ(a,b) "movntq " #a ", " #b " \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
19 #else
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
20 #define MOVNTQ(a,b) "movq " #a ", " #b " \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
21 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
22
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
23 #define FULL_YSCALEYUV2RGB \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
24 "pxor %%mm7, %%mm7 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
25 "movd %6, %%mm6 \n\t" /*yalpha1*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
26 "punpcklwd %%mm6, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
27 "punpcklwd %%mm6, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
28 "movd %7, %%mm5 \n\t" /*uvalpha1*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
29 "punpcklwd %%mm5, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
30 "punpcklwd %%mm5, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
31 "xorl %%eax, %%eax \n\t"\
2800
7847d6b7ad3d .balign or weĦ­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
32 ".balign 16 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
33 "1: \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
34 "movq (%0, %%eax, 2), %%mm0 \n\t" /*buf0[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
35 "movq (%1, %%eax, 2), %%mm1 \n\t" /*buf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
36 "movq (%2, %%eax,2), %%mm2 \n\t" /* uvbuf0[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
37 "movq (%3, %%eax,2), %%mm3 \n\t" /* uvbuf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
38 "psubw %%mm1, %%mm0 \n\t" /* buf0[eax] - buf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
39 "psubw %%mm3, %%mm2 \n\t" /* uvbuf0[eax] - uvbuf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
40 "pmulhw %%mm6, %%mm0 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
41 "pmulhw %%mm5, %%mm2 \n\t" /* (uvbuf0[eax] - uvbuf1[eax])uvalpha1>>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
42 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
43 "movq 4096(%2, %%eax,2), %%mm4 \n\t" /* uvbuf0[eax+2048]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
44 "psraw $4, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
45 "paddw %%mm0, %%mm1 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
46 "movq 4096(%3, %%eax,2), %%mm0 \n\t" /* uvbuf1[eax+2048]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
47 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax]uvalpha1 - uvbuf1[eax](1-uvalpha1)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
48 "psubw %%mm0, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
49 "psubw w80, %%mm1 \n\t" /* 8(Y-16)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
50 "psubw w400, %%mm3 \n\t" /* 8(U-128)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
51 "pmulhw yCoeff, %%mm1 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
52 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
53 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
54 "pmulhw %%mm5, %%mm4 \n\t" /* (uvbuf0[eax+2048] - uvbuf1[eax+2048])uvalpha1>>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
55 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
56 "pmulhw ubCoeff, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
57 "psraw $4, %%mm0 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
58 "pmulhw ugCoeff, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
59 "paddw %%mm4, %%mm0 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
60 "psubw w400, %%mm0 \n\t" /* (V-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
61 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
62 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
63 "movq %%mm0, %%mm4 \n\t" /* (V-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
64 "pmulhw vrCoeff, %%mm0 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
65 "pmulhw vgCoeff, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
66 "paddw %%mm1, %%mm3 \n\t" /* B*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
67 "paddw %%mm1, %%mm0 \n\t" /* R*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
68 "packuswb %%mm3, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
69 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
70 "packuswb %%mm0, %%mm0 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
71 "paddw %%mm4, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
72 "paddw %%mm2, %%mm1 \n\t" /* G*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
73 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
74 "packuswb %%mm1, %%mm1 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
75
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
76 #define YSCALEYUV2RGB \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
77 "movd %6, %%mm6 \n\t" /*yalpha1*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
78 "punpcklwd %%mm6, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
79 "punpcklwd %%mm6, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
80 "movq %%mm6, asm_yalpha1 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
81 "movd %7, %%mm5 \n\t" /*uvalpha1*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
82 "punpcklwd %%mm5, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
83 "punpcklwd %%mm5, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
84 "movq %%mm5, asm_uvalpha1 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
85 "xorl %%eax, %%eax \n\t"\
2800
7847d6b7ad3d .balign or weĦ­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
86 ".balign 16 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
87 "1: \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
88 "movq (%2, %%eax), %%mm2 \n\t" /* uvbuf0[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
89 "movq (%3, %%eax), %%mm3 \n\t" /* uvbuf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
90 "movq 4096(%2, %%eax), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
91 "movq 4096(%3, %%eax), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
92 "psubw %%mm3, %%mm2 \n\t" /* uvbuf0[eax] - uvbuf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
93 "psubw %%mm4, %%mm5 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
94 "movq asm_uvalpha1, %%mm0 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
95 "pmulhw %%mm0, %%mm2 \n\t" /* (uvbuf0[eax] - uvbuf1[eax])uvalpha1>>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
96 "pmulhw %%mm0, %%mm5 \n\t" /* (uvbuf0[eax+2048] - uvbuf1[eax+2048])uvalpha1>>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
97 "psraw $4, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
98 "psraw $4, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
99 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax]uvalpha1 - uvbuf1[eax](1-uvalpha1)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
100 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
101 "psubw w400, %%mm3 \n\t" /* (U-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
102 "psubw w400, %%mm4 \n\t" /* (V-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
103 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
104 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
105 "pmulhw ugCoeff, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
106 "pmulhw vgCoeff, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
107 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
108 "movq (%0, %%eax, 2), %%mm0 \n\t" /*buf0[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
109 "movq (%1, %%eax, 2), %%mm1 \n\t" /*buf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
110 "movq 8(%0, %%eax, 2), %%mm6 \n\t" /*buf0[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
111 "movq 8(%1, %%eax, 2), %%mm7 \n\t" /*buf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
112 "psubw %%mm1, %%mm0 \n\t" /* buf0[eax] - buf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
113 "psubw %%mm7, %%mm6 \n\t" /* buf0[eax] - buf1[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
114 "pmulhw asm_yalpha1, %%mm0 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
115 "pmulhw asm_yalpha1, %%mm6 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
116 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
117 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
118 "paddw %%mm0, %%mm1 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
119 "paddw %%mm6, %%mm7 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
120 "pmulhw ubCoeff, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
121 "pmulhw vrCoeff, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
122 "psubw w80, %%mm1 \n\t" /* 8(Y-16)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
123 "psubw w80, %%mm7 \n\t" /* 8(Y-16)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
124 "pmulhw yCoeff, %%mm1 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
125 "pmulhw yCoeff, %%mm7 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
126 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
127 "paddw %%mm3, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
128 "movq %%mm2, %%mm0 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
129 "movq %%mm5, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
130 "movq %%mm4, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
131 "punpcklwd %%mm2, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
132 "punpcklwd %%mm5, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
133 "punpcklwd %%mm4, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
134 "paddw %%mm1, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
135 "paddw %%mm1, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
136 "paddw %%mm1, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
137 "punpckhwd %%mm0, %%mm0 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
138 "punpckhwd %%mm6, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
139 "punpckhwd %%mm3, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
140 "paddw %%mm7, %%mm0 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
141 "paddw %%mm7, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
142 "paddw %%mm7, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
143 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
144 "packuswb %%mm0, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
145 "packuswb %%mm6, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
146 "packuswb %%mm3, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
147 "pxor %%mm7, %%mm7 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
148
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
149 #define YSCALEYUV2RGB1 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
150 "xorl %%eax, %%eax \n\t"\
2800
7847d6b7ad3d .balign or weĦ­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
151 ".balign 16 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
152 "1: \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
153 "movq (%2, %%eax), %%mm3 \n\t" /* uvbuf0[eax]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
154 "movq 4096(%2, %%eax), %%mm4 \n\t" /* uvbuf0[eax+2048]*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
155 "psraw $4, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
156 "psraw $4, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
157 "psubw w400, %%mm3 \n\t" /* (U-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
158 "psubw w400, %%mm4 \n\t" /* (V-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
159 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
160 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
161 "pmulhw ugCoeff, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
162 "pmulhw vgCoeff, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
163 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
164 "movq (%0, %%eax, 2), %%mm1 \n\t" /*buf0[eax]*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
165 "movq 8(%0, %%eax, 2), %%mm7 \n\t" /*buf0[eax]*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
166 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
167 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
168 "pmulhw ubCoeff, %%mm2 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
169 "pmulhw vrCoeff, %%mm5 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
170 "psubw w80, %%mm1 \n\t" /* 8(Y-16)*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
171 "psubw w80, %%mm7 \n\t" /* 8(Y-16)*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
172 "pmulhw yCoeff, %%mm1 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
173 "pmulhw yCoeff, %%mm7 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
174 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
175 "paddw %%mm3, %%mm4 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
176 "movq %%mm2, %%mm0 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
177 "movq %%mm5, %%mm6 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
178 "movq %%mm4, %%mm3 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
179 "punpcklwd %%mm2, %%mm2 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
180 "punpcklwd %%mm5, %%mm5 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
181 "punpcklwd %%mm4, %%mm4 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
182 "paddw %%mm1, %%mm2 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
183 "paddw %%mm1, %%mm5 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
184 "paddw %%mm1, %%mm4 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
185 "punpckhwd %%mm0, %%mm0 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
186 "punpckhwd %%mm6, %%mm6 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
187 "punpckhwd %%mm3, %%mm3 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
188 "paddw %%mm7, %%mm0 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
189 "paddw %%mm7, %%mm6 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
190 "paddw %%mm7, %%mm3 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
191 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
192 "packuswb %%mm0, %%mm2 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
193 "packuswb %%mm6, %%mm5 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
194 "packuswb %%mm3, %%mm4 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
195 "pxor %%mm7, %%mm7 \n\t"
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
196
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
197 // do vertical chrominance interpolation
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
198 #define YSCALEYUV2RGB1b \
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
199 "xorl %%eax, %%eax \n\t"\
2800
7847d6b7ad3d .balign or weĦ­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
200 ".balign 16 \n\t"\
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
201 "1: \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
202 "movq (%2, %%eax), %%mm2 \n\t" /* uvbuf0[eax]*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
203 "movq (%3, %%eax), %%mm3 \n\t" /* uvbuf1[eax]*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
204 "movq 4096(%2, %%eax), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
205 "movq 4096(%3, %%eax), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
206 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax] + uvbuf1[eax]*/\
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
207 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048] + uvbuf1[eax+2048]*/\
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
208 "psrlw $5, %%mm3 \n\t"\
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
209 "psrlw $5, %%mm4 \n\t"\
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
210 "psubw w400, %%mm3 \n\t" /* (U-128)8*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
211 "psubw w400, %%mm4 \n\t" /* (V-128)8*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
212 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
213 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
214 "pmulhw ugCoeff, %%mm3 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
215 "pmulhw vgCoeff, %%mm4 \n\t"\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
216 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
217 "movq (%0, %%eax, 2), %%mm1 \n\t" /*buf0[eax]*/\
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
218 "movq 8(%0, %%eax, 2), %%mm7 \n\t" /*buf0[eax]*/\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
219 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
220 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
221 "pmulhw ubCoeff, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
222 "pmulhw vrCoeff, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
223 "psubw w80, %%mm1 \n\t" /* 8(Y-16)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
224 "psubw w80, %%mm7 \n\t" /* 8(Y-16)*/\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
225 "pmulhw yCoeff, %%mm1 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
226 "pmulhw yCoeff, %%mm7 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
227 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
228 "paddw %%mm3, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
229 "movq %%mm2, %%mm0 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
230 "movq %%mm5, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
231 "movq %%mm4, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
232 "punpcklwd %%mm2, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
233 "punpcklwd %%mm5, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
234 "punpcklwd %%mm4, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
235 "paddw %%mm1, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
236 "paddw %%mm1, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
237 "paddw %%mm1, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
238 "punpckhwd %%mm0, %%mm0 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
239 "punpckhwd %%mm6, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
240 "punpckhwd %%mm3, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
241 "paddw %%mm7, %%mm0 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
242 "paddw %%mm7, %%mm6 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
243 "paddw %%mm7, %%mm3 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
244 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
245 "packuswb %%mm0, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
246 "packuswb %%mm6, %%mm5 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
247 "packuswb %%mm3, %%mm4 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
248 "pxor %%mm7, %%mm7 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
249
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
250 #define WRITEBGR32 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
251 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
252 "movq %%mm2, %%mm1 \n\t" /* B */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
253 "movq %%mm5, %%mm6 \n\t" /* R */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
254 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
255 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
256 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
257 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
258 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
259 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
260 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
261 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
262 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
263 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
264 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
265 MOVNTQ(%%mm0, (%4, %%eax, 4))\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
266 MOVNTQ(%%mm2, 8(%4, %%eax, 4))\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
267 MOVNTQ(%%mm1, 16(%4, %%eax, 4))\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
268 MOVNTQ(%%mm3, 24(%4, %%eax, 4))\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
269 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
270 "addl $8, %%eax \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
271 "cmpl %5, %%eax \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
272 " jb 1b \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
273
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
274 #define WRITEBGR16 \
2669
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
275 "pand bF8, %%mm2 \n\t" /* B */\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
276 "pand bFC, %%mm4 \n\t" /* G */\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
277 "pand bF8, %%mm5 \n\t" /* R */\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
278 "psrlq $3, %%mm2 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
279 \
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
280 "movq %%mm2, %%mm1 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
281 "movq %%mm4, %%mm3 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
282 \
2669
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
283 "punpcklbw %%mm7, %%mm3 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
284 "punpcklbw %%mm5, %%mm2 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
285 "punpckhbw %%mm7, %%mm4 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
286 "punpckhbw %%mm5, %%mm1 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
287 \
2669
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
288 "psllq $3, %%mm3 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
289 "psllq $3, %%mm4 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
290 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
291 "por %%mm3, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
292 "por %%mm4, %%mm1 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
293 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
294 MOVNTQ(%%mm2, (%4, %%eax, 2))\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
295 MOVNTQ(%%mm1, 8(%4, %%eax, 2))\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
296 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
297 "addl $8, %%eax \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
298 "cmpl %5, %%eax \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
299 " jb 1b \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
300
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
301 #define WRITEBGR15 \
2669
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
302 "pand bF8, %%mm2 \n\t" /* B */\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
303 "pand bF8, %%mm4 \n\t" /* G */\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
304 "pand bF8, %%mm5 \n\t" /* R */\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
305 "psrlq $3, %%mm2 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
306 "psrlq $1, %%mm5 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
307 \
2669
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
308 "movq %%mm2, %%mm1 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
309 "movq %%mm4, %%mm3 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
310 \
2669
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
311 "punpcklbw %%mm7, %%mm3 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
312 "punpcklbw %%mm5, %%mm2 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
313 "punpckhbw %%mm7, %%mm4 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
314 "punpckhbw %%mm5, %%mm1 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
315 \
2669
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
316 "psllq $2, %%mm3 \n\t"\
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
317 "psllq $2, %%mm4 \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
318 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
319 "por %%mm3, %%mm2 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
320 "por %%mm4, %%mm1 \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
321 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
322 MOVNTQ(%%mm2, (%4, %%eax, 2))\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
323 MOVNTQ(%%mm1, 8(%4, %%eax, 2))\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
324 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
325 "addl $8, %%eax \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
326 "cmpl %5, %%eax \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
327 " jb 1b \n\t"
2669
476b9b3b91be faster bgr15/16
michael
parents: 2638
diff changeset
328
2730
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
329 #define WRITEBGR24OLD \
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
330 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
331 "movq %%mm2, %%mm1 \n\t" /* B */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
332 "movq %%mm5, %%mm6 \n\t" /* R */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
333 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
334 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
335 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
336 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
337 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
338 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\
2326
7d3542955132 BGR24 bugfix
michael
parents: 2316
diff changeset
339 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\
7d3542955132 BGR24 bugfix
michael
parents: 2316
diff changeset
340 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\
7d3542955132 BGR24 bugfix
michael
parents: 2316
diff changeset
341 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\
7d3542955132 BGR24 bugfix
michael
parents: 2316
diff changeset
342 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
343 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
344 "movq %%mm0, %%mm4 \n\t" /* 0RGB0RGB 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
345 "psrlq $8, %%mm0 \n\t" /* 00RGB0RG 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
346 "pand bm00000111, %%mm4 \n\t" /* 00000RGB 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
347 "pand bm11111000, %%mm0 \n\t" /* 00RGB000 0.5 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
348 "por %%mm4, %%mm0 \n\t" /* 00RGBRGB 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
349 "movq %%mm2, %%mm4 \n\t" /* 0RGB0RGB 1 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
350 "psllq $48, %%mm2 \n\t" /* GB000000 1 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
351 "por %%mm2, %%mm0 \n\t" /* GBRGBRGB 0 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
352 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
353 "movq %%mm4, %%mm2 \n\t" /* 0RGB0RGB 1 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
354 "psrld $16, %%mm4 \n\t" /* 000R000R 1 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
355 "psrlq $24, %%mm2 \n\t" /* 0000RGB0 1.5 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
356 "por %%mm4, %%mm2 \n\t" /* 000RRGBR 1 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
357 "pand bm00001111, %%mm2 \n\t" /* 0000RGBR 1 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
358 "movq %%mm1, %%mm4 \n\t" /* 0RGB0RGB 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
359 "psrlq $8, %%mm1 \n\t" /* 00RGB0RG 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
360 "pand bm00000111, %%mm4 \n\t" /* 00000RGB 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
361 "pand bm11111000, %%mm1 \n\t" /* 00RGB000 2.5 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
362 "por %%mm4, %%mm1 \n\t" /* 00RGBRGB 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
363 "movq %%mm1, %%mm4 \n\t" /* 00RGBRGB 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
364 "psllq $32, %%mm1 \n\t" /* BRGB0000 2 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
365 "por %%mm1, %%mm2 \n\t" /* BRGBRGBR 1 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
366 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
367 "psrlq $32, %%mm4 \n\t" /* 000000RG 2.5 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
368 "movq %%mm3, %%mm5 \n\t" /* 0RGB0RGB 3 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
369 "psrlq $8, %%mm3 \n\t" /* 00RGB0RG 3 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
370 "pand bm00000111, %%mm5 \n\t" /* 00000RGB 3 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
371 "pand bm11111000, %%mm3 \n\t" /* 00RGB000 3.5 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
372 "por %%mm5, %%mm3 \n\t" /* 00RGBRGB 3 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
373 "psllq $16, %%mm3 \n\t" /* RGBRGB00 3 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
374 "por %%mm4, %%mm3 \n\t" /* RGBRGBRG 2.5 */\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
375 \
2728
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
376 MOVNTQ(%%mm0, (%%ebx))\
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
377 MOVNTQ(%%mm2, 8(%%ebx))\
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
378 MOVNTQ(%%mm3, 16(%%ebx))\
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
379 "addl $24, %%ebx \n\t"\
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
380 \
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
381 "addl $8, %%eax \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
382 "cmpl %5, %%eax \n\t"\
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
383 " jb 1b \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
384
2730
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
385 #define WRITEBGR24MMX \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
386 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
387 "movq %%mm2, %%mm1 \n\t" /* B */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
388 "movq %%mm5, %%mm6 \n\t" /* R */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
389 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
390 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
391 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
392 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
393 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
394 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
395 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
396 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
397 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
398 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
399 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
400 "movq %%mm0, %%mm4 \n\t" /* 0RGB0RGB 0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
401 "movq %%mm2, %%mm6 \n\t" /* 0RGB0RGB 1 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
402 "movq %%mm1, %%mm5 \n\t" /* 0RGB0RGB 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
403 "movq %%mm3, %%mm7 \n\t" /* 0RGB0RGB 3 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
404 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
405 "psllq $40, %%mm0 \n\t" /* RGB00000 0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
406 "psllq $40, %%mm2 \n\t" /* RGB00000 1 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
407 "psllq $40, %%mm1 \n\t" /* RGB00000 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
408 "psllq $40, %%mm3 \n\t" /* RGB00000 3 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
409 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
410 "punpckhdq %%mm4, %%mm0 \n\t" /* 0RGBRGB0 0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
411 "punpckhdq %%mm6, %%mm2 \n\t" /* 0RGBRGB0 1 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
412 "punpckhdq %%mm5, %%mm1 \n\t" /* 0RGBRGB0 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
413 "punpckhdq %%mm7, %%mm3 \n\t" /* 0RGBRGB0 3 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
414 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
415 "psrlq $8, %%mm0 \n\t" /* 00RGBRGB 0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
416 "movq %%mm2, %%mm6 \n\t" /* 0RGBRGB0 1 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
417 "psllq $40, %%mm2 \n\t" /* GB000000 1 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
418 "por %%mm2, %%mm0 \n\t" /* GBRGBRGB 0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
419 MOVNTQ(%%mm0, (%%ebx))\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
420 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
421 "psrlq $24, %%mm6 \n\t" /* 0000RGBR 1 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
422 "movq %%mm1, %%mm5 \n\t" /* 0RGBRGB0 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
423 "psllq $24, %%mm1 \n\t" /* BRGB0000 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
424 "por %%mm1, %%mm6 \n\t" /* BRGBRGBR 1 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
425 MOVNTQ(%%mm6, 8(%%ebx))\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
426 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
427 "psrlq $40, %%mm5 \n\t" /* 000000RG 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
428 "psllq $8, %%mm3 \n\t" /* RGBRGB00 3 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
429 "por %%mm3, %%mm5 \n\t" /* RGBRGBRG 2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
430 MOVNTQ(%%mm5, 16(%%ebx))\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
431 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
432 "addl $24, %%ebx \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
433 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
434 "addl $8, %%eax \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
435 "cmpl %5, %%eax \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
436 " jb 1b \n\t"
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
437
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
438 #define WRITEBGR24MMX2 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
439 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
440 "movq M24A, %%mm0 \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
441 "movq M24C, %%mm7 \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
442 "pshufw $0x50, %%mm2, %%mm1 \n\t" /* B3 B2 B3 B2 B1 B0 B1 B0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
443 "pshufw $0x50, %%mm4, %%mm3 \n\t" /* G3 G2 G3 G2 G1 G0 G1 G0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
444 "pshufw $0x00, %%mm5, %%mm6 \n\t" /* R1 R0 R1 R0 R1 R0 R1 R0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
445 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
446 "pand %%mm0, %%mm1 \n\t" /* B2 B1 B0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
447 "pand %%mm0, %%mm3 \n\t" /* G2 G1 G0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
448 "pand %%mm7, %%mm6 \n\t" /* R1 R0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
449 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
450 "psllq $8, %%mm3 \n\t" /* G2 G1 G0 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
451 "por %%mm1, %%mm6 \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
452 "por %%mm3, %%mm6 \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
453 MOVNTQ(%%mm6, (%%ebx))\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
454 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
455 "psrlq $8, %%mm4 \n\t" /* 00 G7 G6 G5 G4 G3 G2 G1 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
456 "pshufw $0xA5, %%mm2, %%mm1 \n\t" /* B5 B4 B5 B4 B3 B2 B3 B2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
457 "pshufw $0x55, %%mm4, %%mm3 \n\t" /* G4 G3 G4 G3 G4 G3 G4 G3 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
458 "pshufw $0xA5, %%mm5, %%mm6 \n\t" /* R5 R4 R5 R4 R3 R2 R3 R2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
459 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
460 "pand M24B, %%mm1 \n\t" /* B5 B4 B3 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
461 "pand %%mm7, %%mm3 \n\t" /* G4 G3 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
462 "pand %%mm0, %%mm6 \n\t" /* R4 R3 R2 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
463 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
464 "por %%mm1, %%mm3 \n\t" /* B5 G4 B4 G3 B3 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
465 "por %%mm3, %%mm6 \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
466 MOVNTQ(%%mm6, 8(%%ebx))\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
467 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
468 "pshufw $0xFF, %%mm2, %%mm1 \n\t" /* B7 B6 B7 B6 B7 B6 B6 B7 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
469 "pshufw $0xFA, %%mm4, %%mm3 \n\t" /* 00 G7 00 G7 G6 G5 G6 G5 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
470 "pshufw $0xFA, %%mm5, %%mm6 \n\t" /* R7 R6 R7 R6 R5 R4 R5 R4 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
471 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
472 "pand %%mm7, %%mm1 \n\t" /* B7 B6 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
473 "pand %%mm0, %%mm3 \n\t" /* G7 G6 G5 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
474 "pand M24B, %%mm6 \n\t" /* R7 R6 R5 */\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
475 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
476 "por %%mm1, %%mm3 \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
477 "por %%mm3, %%mm6 \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
478 MOVNTQ(%%mm6, 16(%%ebx))\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
479 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
480 "addl $24, %%ebx \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
481 \
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
482 "addl $8, %%eax \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
483 "cmpl %5, %%eax \n\t"\
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
484 " jb 1b \n\t"
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
485
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
486 #ifdef HAVE_MMX2
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
487 #undef WRITEBGR24
2730
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
488 #define WRITEBGR24 WRITEBGR24MMX2
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
489 #else
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
490 #undef WRITEBGR24
2730
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
491 #define WRITEBGR24 WRITEBGR24MMX
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
492 #endif
c483fc9bf0c4 faster bgr24 output
michael
parents: 2728
diff changeset
493
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
494 static inline void RENAME(yuv2yuv)(uint16_t *buf0, uint16_t *buf1, uint16_t *uvbuf0, uint16_t *uvbuf1,
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
495 uint8_t *dest, uint8_t *uDest, uint8_t *vDest, int dstw, int yalpha, int uvalpha)
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
496 {
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
497 int yalpha1=yalpha^4095;
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
498 int uvalpha1=uvalpha^4095;
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
499 int i;
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
500
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
501 #ifdef ARCH_X86
2521
b70a77066611 tell the c compiler that the memory changed
michael
parents: 2520
diff changeset
502 asm volatile ("\n\t"::: "memory");
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
503 #endif
2521
b70a77066611 tell the c compiler that the memory changed
michael
parents: 2520
diff changeset
504
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
505 for(i=0;i<dstw;i++)
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
506 {
2572
f2353173d52c c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents: 2569
diff changeset
507 ((uint8_t*)dest)[i] = (buf0[i]*yalpha1+buf1[i]*yalpha)>>19;
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
508 }
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
509
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
510 if(uvalpha != -1)
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
511 {
2585
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
512 for(i=0; i<(dstw>>1); i++)
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
513 {
2572
f2353173d52c c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents: 2569
diff changeset
514 ((uint8_t*)uDest)[i] = (uvbuf0[i]*uvalpha1+uvbuf1[i]*uvalpha)>>19;
f2353173d52c c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents: 2569
diff changeset
515 ((uint8_t*)vDest)[i] = (uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19;
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
516 }
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
517 }
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
518 }
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
519
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
520 /**
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
521 * vertical scale YV12 to RGB
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
522 */
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
523 static inline void RENAME(yuv2rgbX)(uint16_t *buf0, uint16_t *buf1, uint16_t *uvbuf0, uint16_t *uvbuf1,
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
524 uint8_t *dest, int dstw, int yalpha, int uvalpha, int dstbpp)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
525 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
526 int yalpha1=yalpha^4095;
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
527 int uvalpha1=uvalpha^4095;
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
528
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
529 if(fullUVIpol)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
530 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
531
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
532 #ifdef HAVE_MMX
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
533 if(dstbpp == 32)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
534 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
535 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
536
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
537
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
538 FULL_YSCALEYUV2RGB
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
539 "punpcklbw %%mm1, %%mm3 \n\t" // BGBGBGBG
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
540 "punpcklbw %%mm7, %%mm0 \n\t" // R0R0R0R0
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
541
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
542 "movq %%mm3, %%mm1 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
543 "punpcklwd %%mm0, %%mm3 \n\t" // BGR0BGR0
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
544 "punpckhwd %%mm0, %%mm1 \n\t" // BGR0BGR0
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
545
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
546 MOVNTQ(%%mm3, (%4, %%eax, 4))
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
547 MOVNTQ(%%mm1, 8(%4, %%eax, 4))
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
548
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
549 "addl $4, %%eax \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
550 "cmpl %5, %%eax \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
551 " jb 1b \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
552
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
553
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
554 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
555 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
556 : "%eax"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
557 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
558 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
559 else if(dstbpp==24)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
560 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
561 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
562
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
563 FULL_YSCALEYUV2RGB
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
564
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
565 // lsb ... msb
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
566 "punpcklbw %%mm1, %%mm3 \n\t" // BGBGBGBG
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
567 "punpcklbw %%mm7, %%mm0 \n\t" // R0R0R0R0
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
568
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
569 "movq %%mm3, %%mm1 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
570 "punpcklwd %%mm0, %%mm3 \n\t" // BGR0BGR0
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
571 "punpckhwd %%mm0, %%mm1 \n\t" // BGR0BGR0
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
572
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
573 "movq %%mm3, %%mm2 \n\t" // BGR0BGR0
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
574 "psrlq $8, %%mm3 \n\t" // GR0BGR00
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
575 "pand bm00000111, %%mm2 \n\t" // BGR00000
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
576 "pand bm11111000, %%mm3 \n\t" // 000BGR00
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
577 "por %%mm2, %%mm3 \n\t" // BGRBGR00
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
578 "movq %%mm1, %%mm2 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
579 "psllq $48, %%mm1 \n\t" // 000000BG
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
580 "por %%mm1, %%mm3 \n\t" // BGRBGRBG
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
581
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
582 "movq %%mm2, %%mm1 \n\t" // BGR0BGR0
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
583 "psrld $16, %%mm2 \n\t" // R000R000
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
584 "psrlq $24, %%mm1 \n\t" // 0BGR0000
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
585 "por %%mm2, %%mm1 \n\t" // RBGRR000
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
586
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
587 "movl %4, %%ebx \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
588 "addl %%eax, %%ebx \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
589
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
590 #ifdef HAVE_MMX2
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
591 //FIXME Alignment
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
592 "movntq %%mm3, (%%ebx, %%eax, 2)\n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
593 "movntq %%mm1, 8(%%ebx, %%eax, 2)\n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
594 #else
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
595 "movd %%mm3, (%%ebx, %%eax, 2) \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
596 "psrlq $32, %%mm3 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
597 "movd %%mm3, 4(%%ebx, %%eax, 2) \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
598 "movd %%mm1, 8(%%ebx, %%eax, 2) \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
599 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
600 "addl $4, %%eax \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
601 "cmpl %5, %%eax \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
602 " jb 1b \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
603
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
604 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "m" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
605 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
606 : "%eax", "%ebx"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
607 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
608 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
609 else if(dstbpp==15)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
610 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
611 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
612
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
613 FULL_YSCALEYUV2RGB
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
614 #ifdef DITHER1XBPP
2748
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
615 "paddusb g5Dither, %%mm1 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
616 "paddusb r5Dither, %%mm0 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
617 "paddusb b5Dither, %%mm3 \n\t"
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
618 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
619 "punpcklbw %%mm7, %%mm1 \n\t" // 0G0G0G0G
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
620 "punpcklbw %%mm7, %%mm3 \n\t" // 0B0B0B0B
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
621 "punpcklbw %%mm7, %%mm0 \n\t" // 0R0R0R0R
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
622
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
623 "psrlw $3, %%mm3 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
624 "psllw $2, %%mm1 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
625 "psllw $7, %%mm0 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
626 "pand g15Mask, %%mm1 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
627 "pand r15Mask, %%mm0 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
628
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
629 "por %%mm3, %%mm1 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
630 "por %%mm1, %%mm0 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
631
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
632 MOVNTQ(%%mm0, (%4, %%eax, 2))
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
633
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
634 "addl $4, %%eax \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
635 "cmpl %5, %%eax \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
636 " jb 1b \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
637
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
638 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
639 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
640 : "%eax"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
641 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
642 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
643 else if(dstbpp==16)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
644 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
645 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
646
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
647 FULL_YSCALEYUV2RGB
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
648 #ifdef DITHER1XBPP
2748
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
649 "paddusb g6Dither, %%mm1 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
650 "paddusb r5Dither, %%mm0 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
651 "paddusb b5Dither, %%mm3 \n\t"
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
652 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
653 "punpcklbw %%mm7, %%mm1 \n\t" // 0G0G0G0G
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
654 "punpcklbw %%mm7, %%mm3 \n\t" // 0B0B0B0B
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
655 "punpcklbw %%mm7, %%mm0 \n\t" // 0R0R0R0R
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
656
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
657 "psrlw $3, %%mm3 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
658 "psllw $3, %%mm1 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
659 "psllw $8, %%mm0 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
660 "pand g16Mask, %%mm1 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
661 "pand r16Mask, %%mm0 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
662
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
663 "por %%mm3, %%mm1 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
664 "por %%mm1, %%mm0 \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
665
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
666 MOVNTQ(%%mm0, (%4, %%eax, 2))
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
667
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
668 "addl $4, %%eax \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
669 "cmpl %5, %%eax \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
670 " jb 1b \n\t"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
671
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
672 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
673 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
674 : "%eax"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
675 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
676 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
677 #else
2521
b70a77066611 tell the c compiler that the memory changed
michael
parents: 2520
diff changeset
678 asm volatile ("\n\t"::: "memory");
b70a77066611 tell the c compiler that the memory changed
michael
parents: 2520
diff changeset
679
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
680 if(dstbpp==32 || dstbpp==24)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
681 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
682 int i;
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
683 for(i=0;i<dstw;i++){
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
684 // vertical linear interpolation && yuv2rgb in a single step:
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
685 int Y=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)];
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
686 int U=((uvbuf0[i]*uvalpha1+uvbuf1[i]*uvalpha)>>19);
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
687 int V=((uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19);
2503
d21d8d5f2e23 yuv2rgb bugfix
michael
parents: 2476
diff changeset
688 dest[0]=clip_table[((Y + yuvtab_40cf[U]) >>13)];
d21d8d5f2e23 yuv2rgb bugfix
michael
parents: 2476
diff changeset
689 dest[1]=clip_table[((Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13)];
d21d8d5f2e23 yuv2rgb bugfix
michael
parents: 2476
diff changeset
690 dest[2]=clip_table[((Y + yuvtab_3343[V]) >>13)];
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
691 dest+=dstbpp>>3;
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
692 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
693 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
694 else if(dstbpp==16)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
695 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
696 int i;
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
697 for(i=0;i<dstw;i++){
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
698 // vertical linear interpolation && yuv2rgb in a single step:
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
699 int Y=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)];
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
700 int U=((uvbuf0[i]*uvalpha1+uvbuf1[i]*uvalpha)>>19);
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
701 int V=((uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19);
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
702
2572
f2353173d52c c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents: 2569
diff changeset
703 ((uint16_t*)dest)[i] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
704 clip_table16b[(Y + yuvtab_40cf[U]) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
705 clip_table16g[(Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
706 clip_table16r[(Y + yuvtab_3343[V]) >>13];
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
707 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
708 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
709 else if(dstbpp==15)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
710 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
711 int i;
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
712 for(i=0;i<dstw;i++){
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
713 // vertical linear interpolation && yuv2rgb in a single step:
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
714 int Y=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)];
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
715 int U=((uvbuf0[i]*uvalpha1+uvbuf1[i]*uvalpha)>>19);
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
716 int V=((uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19);
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
717
2572
f2353173d52c c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents: 2569
diff changeset
718 ((uint16_t*)dest)[i] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
719 clip_table15b[(Y + yuvtab_40cf[U]) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
720 clip_table15g[(Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
721 clip_table15r[(Y + yuvtab_3343[V]) >>13];
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
722 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
723 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
724 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
725 }//FULL_UV_IPOL
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
726 else
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
727 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
728 #ifdef HAVE_MMX
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
729 if(dstbpp == 32)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
730 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
731 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
732 YSCALEYUV2RGB
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
733 WRITEBGR32
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
734
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
735 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
736 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
737 : "%eax"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
738 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
739 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
740 else if(dstbpp==24)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
741 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
742 asm volatile(
2728
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
743 "movl %4, %%ebx \n\t"
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
744 YSCALEYUV2RGB
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
745 WRITEBGR24
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
746
2728
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
747 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "m" (dest), "m" (dstw),
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
748 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
749 : "%eax", "%ebx"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
750 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
751 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
752 else if(dstbpp==15)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
753 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
754 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
755 YSCALEYUV2RGB
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
756 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
757 #ifdef DITHER1XBPP
2748
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
758 "paddusb b5Dither, %%mm2 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
759 "paddusb g5Dither, %%mm4 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
760 "paddusb r5Dither, %%mm5 \n\t"
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
761 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
762
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
763 WRITEBGR15
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
764
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
765 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
766 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
767 : "%eax"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
768 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
769 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
770 else if(dstbpp==16)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
771 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
772 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
773 YSCALEYUV2RGB
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
774 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
775 #ifdef DITHER1XBPP
2748
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
776 "paddusb b5Dither, %%mm2 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
777 "paddusb g6Dither, %%mm4 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
778 "paddusb r5Dither, %%mm5 \n\t"
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
779 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
780
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
781 WRITEBGR16
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
782
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
783 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
784 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
785 : "%eax"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
786 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
787 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
788 #else
2521
b70a77066611 tell the c compiler that the memory changed
michael
parents: 2520
diff changeset
789 asm volatile ("\n\t"::: "memory");
b70a77066611 tell the c compiler that the memory changed
michael
parents: 2520
diff changeset
790
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
791 if(dstbpp==32)
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
792 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
793 int i;
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
794 for(i=0; i<dstw-1; i+=2){
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
795 // vertical linear interpolation && yuv2rgb in a single step:
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
796 int Y1=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
797 int Y2=yuvtab_2568[((buf0[i+1]*yalpha1+buf1[i+1]*yalpha)>>19)];
2585
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
798 int U=((uvbuf0[i>>1]*uvalpha1+uvbuf1[i>>1]*uvalpha)>>19);
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
799 int V=((uvbuf0[(i>>1)+2048]*uvalpha1+uvbuf1[(i>>1)+2048]*uvalpha)>>19);
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
800
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
801 int Cb= yuvtab_40cf[U];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
802 int Cg= yuvtab_1a1e[V] + yuvtab_0c92[U];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
803 int Cr= yuvtab_3343[V];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
804
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
805 dest[4*i+0]=clip_table[((Y1 + Cb) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
806 dest[4*i+1]=clip_table[((Y1 + Cg) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
807 dest[4*i+2]=clip_table[((Y1 + Cr) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
808
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
809 dest[4*i+4]=clip_table[((Y2 + Cb) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
810 dest[4*i+5]=clip_table[((Y2 + Cg) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
811 dest[4*i+6]=clip_table[((Y2 + Cr) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
812 }
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
813 }
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
814 if(dstbpp==24)
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
815 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
816 int i;
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
817 for(i=0; i<dstw-1; i+=2){
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
818 // vertical linear interpolation && yuv2rgb in a single step:
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
819 int Y1=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
820 int Y2=yuvtab_2568[((buf0[i+1]*yalpha1+buf1[i+1]*yalpha)>>19)];
2585
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
821 int U=((uvbuf0[i>>1]*uvalpha1+uvbuf1[i>>1]*uvalpha)>>19);
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
822 int V=((uvbuf0[(i>>1)+2048]*uvalpha1+uvbuf1[(i>>1)+2048]*uvalpha)>>19);
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
823
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
824 int Cb= yuvtab_40cf[U];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
825 int Cg= yuvtab_1a1e[V] + yuvtab_0c92[U];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
826 int Cr= yuvtab_3343[V];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
827
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
828 dest[0]=clip_table[((Y1 + Cb) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
829 dest[1]=clip_table[((Y1 + Cg) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
830 dest[2]=clip_table[((Y1 + Cr) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
831
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
832 dest[3]=clip_table[((Y2 + Cb) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
833 dest[4]=clip_table[((Y2 + Cg) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
834 dest[5]=clip_table[((Y2 + Cr) >>13)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
835 dest+=6;
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
836 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
837 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
838 else if(dstbpp==16)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
839 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
840 int i;
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
841 for(i=0; i<dstw-1; i+=2){
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
842 // vertical linear interpolation && yuv2rgb in a single step:
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
843 int Y1=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
844 int Y2=yuvtab_2568[((buf0[i+1]*yalpha1+buf1[i+1]*yalpha)>>19)];
2585
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
845 int U=((uvbuf0[i>>1]*uvalpha1+uvbuf1[i>>1]*uvalpha)>>19);
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
846 int V=((uvbuf0[(i>>1)+2048]*uvalpha1+uvbuf1[(i>>1)+2048]*uvalpha)>>19);
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
847
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
848 int Cb= yuvtab_40cf[U];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
849 int Cg= yuvtab_1a1e[V] + yuvtab_0c92[U];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
850 int Cr= yuvtab_3343[V];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
851
2572
f2353173d52c c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents: 2569
diff changeset
852 ((uint16_t*)dest)[i] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
853 clip_table16b[(Y1 + Cb) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
854 clip_table16g[(Y1 + Cg) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
855 clip_table16r[(Y1 + Cr) >>13];
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
856
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
857 ((uint16_t*)dest)[i+1] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
858 clip_table16b[(Y2 + Cb) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
859 clip_table16g[(Y2 + Cg) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
860 clip_table16r[(Y2 + Cr) >>13];
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
861 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
862 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
863 else if(dstbpp==15)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
864 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
865 int i;
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
866 for(i=0; i<dstw-1; i+=2){
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
867 // vertical linear interpolation && yuv2rgb in a single step:
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
868 int Y1=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
869 int Y2=yuvtab_2568[((buf0[i+1]*yalpha1+buf1[i+1]*yalpha)>>19)];
2585
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
870 int U=((uvbuf0[i>>1]*uvalpha1+uvbuf1[i>>1]*uvalpha)>>19);
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
871 int V=((uvbuf0[(i>>1)+2048]*uvalpha1+uvbuf1[(i>>1)+2048]*uvalpha)>>19);
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
872
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
873 int Cb= yuvtab_40cf[U];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
874 int Cg= yuvtab_1a1e[V] + yuvtab_0c92[U];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
875 int Cr= yuvtab_3343[V];
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
876
2572
f2353173d52c c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents: 2569
diff changeset
877 ((uint16_t*)dest)[i] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
878 clip_table15b[(Y1 + Cb) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
879 clip_table15g[(Y1 + Cg) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
880 clip_table15r[(Y1 + Cr) >>13];
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
881
2575
37da7219ebaf c optimizations
michael
parents: 2572
diff changeset
882 ((uint16_t*)dest)[i+1] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
883 clip_table15b[(Y2 + Cb) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
884 clip_table15g[(Y2 + Cg) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
885 clip_table15r[(Y2 + Cr) >>13];
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
886 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
887 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
888 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
889 } //!FULL_UV_IPOL
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
890 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
891
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
892 /**
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
893 * YV12 to RGB without scaling or interpolating
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
894 */
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
895 static inline void RENAME(yuv2rgb1)(uint16_t *buf0, uint16_t *buf1, uint16_t *uvbuf0, uint16_t *uvbuf1,
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
896 uint8_t *dest, int dstw, int yalpha, int uvalpha, int dstbpp)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
897 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
898 int uvalpha1=uvalpha^4095;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
899 #ifdef HAVE_MMX
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
900 int yalpha1=yalpha^4095;
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
901 #endif
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
902
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
903 if(fullUVIpol || allwaysIpol)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
904 {
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
905 RENAME(yuv2rgbX)(buf0, buf1, uvbuf0, uvbuf1, dest, dstw, yalpha, uvalpha, dstbpp);
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
906 return;
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
907 }
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
908 if( yalpha > 2048 ) buf0 = buf1;
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
909
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
910 #ifdef HAVE_MMX
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
911 if( uvalpha < 2048 ) // note this is not correct (shifts chrominance by 0.5 pixels) but its a bit faster
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
912 {
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
913 if(dstbpp == 32)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
914 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
915 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
916 YSCALEYUV2RGB1
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
917 WRITEBGR32
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
918 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
919 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
920 : "%eax"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
921 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
922 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
923 else if(dstbpp==24)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
924 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
925 asm volatile(
2728
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
926 "movl %4, %%ebx \n\t"
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
927 YSCALEYUV2RGB1
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
928 WRITEBGR24
2728
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
929 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "m" (dest), "m" (dstw),
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
930 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
931 : "%eax", "%ebx"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
932 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
933 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
934 else if(dstbpp==15)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
935 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
936 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
937 YSCALEYUV2RGB1
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
938 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
939 #ifdef DITHER1XBPP
2748
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
940 "paddusb b5Dither, %%mm2 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
941 "paddusb g5Dither, %%mm4 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
942 "paddusb r5Dither, %%mm5 \n\t"
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
943 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
944 WRITEBGR15
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
945 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
946 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
947 : "%eax"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
948 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
949 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
950 else if(dstbpp==16)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
951 {
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
952 asm volatile(
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
953 YSCALEYUV2RGB1
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
954 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
955 #ifdef DITHER1XBPP
2748
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
956 "paddusb b5Dither, %%mm2 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
957 "paddusb g6Dither, %%mm4 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
958 "paddusb r5Dither, %%mm5 \n\t"
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
959 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
960
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
961 WRITEBGR16
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
962 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
963 "m" (yalpha1), "m" (uvalpha1)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
964 : "%eax"
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
965 );
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
966 }
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
967 }
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
968 else
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
969 {
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
970 if(dstbpp == 32)
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
971 {
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
972 asm volatile(
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
973 YSCALEYUV2RGB1b
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
974 WRITEBGR32
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
975 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
976 "m" (yalpha1), "m" (uvalpha1)
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
977 : "%eax"
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
978 );
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
979 }
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
980 else if(dstbpp==24)
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
981 {
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
982 asm volatile(
2728
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
983 "movl %4, %%ebx \n\t"
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
984 YSCALEYUV2RGB1b
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
985 WRITEBGR24
2728
96c1d1e6cb9e only 6 registers used
michael
parents: 2680
diff changeset
986 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "m" (dest), "m" (dstw),
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
987 "m" (yalpha1), "m" (uvalpha1)
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
988 : "%eax", "%ebx"
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
989 );
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
990 }
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
991 else if(dstbpp==15)
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
992 {
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
993 asm volatile(
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
994 YSCALEYUV2RGB1b
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
995 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
996 #ifdef DITHER1XBPP
2748
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
997 "paddusb b5Dither, %%mm2 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
998 "paddusb g5Dither, %%mm4 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
999 "paddusb r5Dither, %%mm5 \n\t"
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1000 #endif
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1001 WRITEBGR15
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1002 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1003 "m" (yalpha1), "m" (uvalpha1)
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1004 : "%eax"
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1005 );
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1006 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1007 else if(dstbpp==16)
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1008 {
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1009 asm volatile(
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1010 YSCALEYUV2RGB1b
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1011 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1012 #ifdef DITHER1XBPP
2748
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
1013 "paddusb b5Dither, %%mm2 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
1014 "paddusb g6Dither, %%mm4 \n\t"
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
1015 "paddusb r5Dither, %%mm5 \n\t"
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1016 #endif
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1017
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1018 WRITEBGR16
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1019 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstw),
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1020 "m" (yalpha1), "m" (uvalpha1)
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1021 : "%eax"
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1022 );
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1023 }
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1024 }
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1025 #else
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1026 //FIXME write 2 versions (for even & odd lines)
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1027 asm volatile ("\n\t"::: "memory");
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1028
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1029 if(dstbpp==32)
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1030 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1031 int i;
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1032 for(i=0; i<dstw-1; i+=2){
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1033 // vertical linear interpolation && yuv2rgb in a single step:
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1034 int Y1=yuvtab_2568[buf0[i]>>7];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1035 int Y2=yuvtab_2568[buf0[i+1]>>7];
2585
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
1036 int U=((uvbuf0[i>>1]*uvalpha1+uvbuf1[i>>1]*uvalpha)>>19);
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
1037 int V=((uvbuf0[(i>>1)+2048]*uvalpha1+uvbuf1[(i>>1)+2048]*uvalpha)>>19);
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1038
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1039 int Cb= yuvtab_40cf[U];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1040 int Cg= yuvtab_1a1e[V] + yuvtab_0c92[U];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1041 int Cr= yuvtab_3343[V];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1042
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1043 dest[4*i+0]=clip_table[((Y1 + Cb) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1044 dest[4*i+1]=clip_table[((Y1 + Cg) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1045 dest[4*i+2]=clip_table[((Y1 + Cr) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1046
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1047 dest[4*i+4]=clip_table[((Y2 + Cb) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1048 dest[4*i+5]=clip_table[((Y2 + Cg) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1049 dest[4*i+6]=clip_table[((Y2 + Cr) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1050 }
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1051 }
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1052 if(dstbpp==24)
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1053 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1054 int i;
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1055 for(i=0; i<dstw-1; i+=2){
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1056 // vertical linear interpolation && yuv2rgb in a single step:
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1057 int Y1=yuvtab_2568[buf0[i]>>7];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1058 int Y2=yuvtab_2568[buf0[i+1]>>7];
2585
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
1059 int U=((uvbuf0[i>>1]*uvalpha1+uvbuf1[i>>1]*uvalpha)>>19);
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
1060 int V=((uvbuf0[(i>>1)+2048]*uvalpha1+uvbuf1[(i>>1)+2048]*uvalpha)>>19);
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1061
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1062 int Cb= yuvtab_40cf[U];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1063 int Cg= yuvtab_1a1e[V] + yuvtab_0c92[U];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1064 int Cr= yuvtab_3343[V];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1065
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1066 dest[0]=clip_table[((Y1 + Cb) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1067 dest[1]=clip_table[((Y1 + Cg) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1068 dest[2]=clip_table[((Y1 + Cr) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1069
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1070 dest[3]=clip_table[((Y2 + Cb) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1071 dest[4]=clip_table[((Y2 + Cg) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1072 dest[5]=clip_table[((Y2 + Cr) >>13)];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1073 dest+=6;
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1074 }
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1075 }
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1076 else if(dstbpp==16)
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1077 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1078 int i;
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1079 for(i=0; i<dstw-1; i+=2){
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1080 // vertical linear interpolation && yuv2rgb in a single step:
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1081 int Y1=yuvtab_2568[buf0[i]>>7];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1082 int Y2=yuvtab_2568[buf0[i+1]>>7];
2585
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
1083 int U=((uvbuf0[i>>1]*uvalpha1+uvbuf1[i>>1]*uvalpha)>>19);
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
1084 int V=((uvbuf0[(i>>1)+2048]*uvalpha1+uvbuf1[(i>>1)+2048]*uvalpha)>>19);
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1085
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1086 int Cb= yuvtab_40cf[U];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1087 int Cg= yuvtab_1a1e[V] + yuvtab_0c92[U];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1088 int Cr= yuvtab_3343[V];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1089
2572
f2353173d52c c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents: 2569
diff changeset
1090 ((uint16_t*)dest)[i] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1091 clip_table16b[(Y1 + Cb) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1092 clip_table16g[(Y1 + Cg) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1093 clip_table16r[(Y1 + Cr) >>13];
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1094
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1095 ((uint16_t*)dest)[i+1] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1096 clip_table16b[(Y2 + Cb) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1097 clip_table16g[(Y2 + Cg) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1098 clip_table16r[(Y2 + Cr) >>13];
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1099 }
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1100 }
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1101 else if(dstbpp==15)
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1102 {
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1103 int i;
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1104 for(i=0; i<dstw-1; i+=2){
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1105 // vertical linear interpolation && yuv2rgb in a single step:
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1106 int Y1=yuvtab_2568[buf0[i]>>7];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1107 int Y2=yuvtab_2568[buf0[i+1]>>7];
2585
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
1108 int U=((uvbuf0[i>>1]*uvalpha1+uvbuf1[i>>1]*uvalpha)>>19);
bd52b78f12dc c speedup
michael
parents: 2584
diff changeset
1109 int V=((uvbuf0[(i>>1)+2048]*uvalpha1+uvbuf1[(i>>1)+2048]*uvalpha)>>19);
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1110
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1111 int Cb= yuvtab_40cf[U];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1112 int Cg= yuvtab_1a1e[V] + yuvtab_0c92[U];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1113 int Cr= yuvtab_3343[V];
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1114
2572
f2353173d52c c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents: 2569
diff changeset
1115 ((uint16_t*)dest)[i] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1116 clip_table15b[(Y1 + Cb) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1117 clip_table15g[(Y1 + Cg) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1118 clip_table15r[(Y1 + Cr) >>13];
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1119
2576
437ed06579d8 c optimizations
michael
parents: 2575
diff changeset
1120 ((uint16_t*)dest)[i+1] =
2584
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1121 clip_table15b[(Y2 + Cb) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1122 clip_table15g[(Y2 + Cg) >>13] |
6d20d5d5829f 15/16bit in C speedup
michael
parents: 2576
diff changeset
1123 clip_table15r[(Y2 + Cr) >>13];
2569
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1124 }
30b736e7feef interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents: 2566
diff changeset
1125 }
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1126 #endif
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1127 }
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1128
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1129
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1130 static inline void RENAME(hyscale)(uint16_t *dst, int dstWidth, uint8_t *src, int srcWidth, int xInc)
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1131 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1132 // *** horizontal scale Y line to temp buffer
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1133 #ifdef ARCH_X86
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1134 #ifdef HAVE_MMX2
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1135 int i;
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1136 if(canMMX2BeUsed)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1137 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1138 asm volatile(
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1139 "pxor %%mm7, %%mm7 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1140 "pxor %%mm2, %%mm2 \n\t" // 2*xalpha
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1141 "movd %5, %%mm6 \n\t" // xInc&0xFFFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1142 "punpcklwd %%mm6, %%mm6 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1143 "punpcklwd %%mm6, %%mm6 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1144 "movq %%mm6, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1145 "psllq $16, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1146 "paddw %%mm6, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1147 "psllq $16, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1148 "paddw %%mm6, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1149 "psllq $16, %%mm2 \n\t" //0,t,2t,3t t=xInc&0xFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1150 "movq %%mm2, temp0 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1151 "movd %4, %%mm6 \n\t" //(xInc*4)&0xFFFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1152 "punpcklwd %%mm6, %%mm6 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1153 "punpcklwd %%mm6, %%mm6 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1154 "xorl %%eax, %%eax \n\t" // i
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1155 "movl %0, %%esi \n\t" // src
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1156 "movl %1, %%edi \n\t" // buf1
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1157 "movl %3, %%edx \n\t" // (xInc*4)>>16
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1158 "xorl %%ecx, %%ecx \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1159 "xorl %%ebx, %%ebx \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1160 "movw %4, %%bx \n\t" // (xInc*4)&0xFFFF
2520
b58c43aab619 3dnow prefetch & sfence
michael
parents: 2519
diff changeset
1161
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1162 #define FUNNY_Y_CODE \
2520
b58c43aab619 3dnow prefetch & sfence
michael
parents: 2519
diff changeset
1163 PREFETCH" 1024(%%esi) \n\t"\
b58c43aab619 3dnow prefetch & sfence
michael
parents: 2519
diff changeset
1164 PREFETCH" 1056(%%esi) \n\t"\
b58c43aab619 3dnow prefetch & sfence
michael
parents: 2519
diff changeset
1165 PREFETCH" 1088(%%esi) \n\t"\
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1166 "call funnyYCode \n\t"\
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1167 "movq temp0, %%mm2 \n\t"\
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1168 "xorl %%ecx, %%ecx \n\t"
2520
b58c43aab619 3dnow prefetch & sfence
michael
parents: 2519
diff changeset
1169
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1170 FUNNY_Y_CODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1171 FUNNY_Y_CODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1172 FUNNY_Y_CODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1173 FUNNY_Y_CODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1174 FUNNY_Y_CODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1175 FUNNY_Y_CODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1176 FUNNY_Y_CODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1177 FUNNY_Y_CODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1178
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1179 :: "m" (src), "m" (dst), "m" (dstWidth), "m" ((xInc*4)>>16),
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1180 "m" ((xInc*4)&0xFFFF), "m" (xInc&0xFFFF)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1181 : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1182 );
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1183 for(i=dstWidth-1; (i*xInc)>>16 >=srcWidth-1; i--) dst[i] = src[srcWidth-1]*128;
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1184 }
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1185 else
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1186 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1187 #endif
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1188 //NO MMX just normal asm ...
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1189 asm volatile(
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1190 "xorl %%eax, %%eax \n\t" // i
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1191 "xorl %%ebx, %%ebx \n\t" // xx
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1192 "xorl %%ecx, %%ecx \n\t" // 2*xalpha
2800
7847d6b7ad3d .balign or weĦ­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
1193 ".balign 16 \n\t"
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1194 "1: \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1195 "movzbl (%0, %%ebx), %%edi \n\t" //src[xx]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1196 "movzbl 1(%0, %%ebx), %%esi \n\t" //src[xx+1]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1197 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1198 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1199 "shll $16, %%edi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1200 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1201 "movl %1, %%edi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1202 "shrl $9, %%esi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1203 "movw %%si, (%%edi, %%eax, 2) \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1204 "addw %4, %%cx \n\t" //2*xalpha += xInc&0xFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1205 "adcl %3, %%ebx \n\t" //xx+= xInc>>8 + carry
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1206
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1207 "movzbl (%0, %%ebx), %%edi \n\t" //src[xx]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1208 "movzbl 1(%0, %%ebx), %%esi \n\t" //src[xx+1]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1209 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1210 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1211 "shll $16, %%edi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1212 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1213 "movl %1, %%edi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1214 "shrl $9, %%esi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1215 "movw %%si, 2(%%edi, %%eax, 2) \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1216 "addw %4, %%cx \n\t" //2*xalpha += xInc&0xFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1217 "adcl %3, %%ebx \n\t" //xx+= xInc>>8 + carry
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1218
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1219
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1220 "addl $2, %%eax \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1221 "cmpl %2, %%eax \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1222 " jb 1b \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1223
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1224
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1225 :: "r" (src), "m" (dst), "m" (dstWidth), "m" (xInc>>16), "m" (xInc&0xFFFF)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1226 : "%eax", "%ebx", "%ecx", "%edi", "%esi"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1227 );
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1228 #ifdef HAVE_MMX2
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1229 } //if MMX2 cant be used
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1230 #endif
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1231 #else
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1232 int i;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1233 unsigned int xpos=0;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1234 for(i=0;i<dstWidth;i++)
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1235 {
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1236 register unsigned int xx=xpos>>16;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1237 register unsigned int xalpha=(xpos&0xFFFF)>>9;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1238 dst[i]= (src[xx]<<7) + (src[xx+1] - src[xx])*xalpha;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1239 xpos+=xInc;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1240 }
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1241 #endif
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1242 }
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1243
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1244 inline static void RENAME(hcscale)(uint16_t *dst, int dstWidth,
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1245 uint8_t *src1, uint8_t *src2, int srcWidth, int xInc)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1246 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1247 #ifdef ARCH_X86
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1248 #ifdef HAVE_MMX2
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1249 int i;
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1250 if(canMMX2BeUsed)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1251 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1252 asm volatile(
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1253 "pxor %%mm7, %%mm7 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1254 "pxor %%mm2, %%mm2 \n\t" // 2*xalpha
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1255 "movd %5, %%mm6 \n\t" // xInc&0xFFFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1256 "punpcklwd %%mm6, %%mm6 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1257 "punpcklwd %%mm6, %%mm6 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1258 "movq %%mm6, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1259 "psllq $16, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1260 "paddw %%mm6, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1261 "psllq $16, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1262 "paddw %%mm6, %%mm2 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1263 "psllq $16, %%mm2 \n\t" //0,t,2t,3t t=xInc&0xFFFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1264 "movq %%mm2, temp0 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1265 "movd %4, %%mm6 \n\t" //(xInc*4)&0xFFFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1266 "punpcklwd %%mm6, %%mm6 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1267 "punpcklwd %%mm6, %%mm6 \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1268 "xorl %%eax, %%eax \n\t" // i
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1269 "movl %0, %%esi \n\t" // src
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1270 "movl %1, %%edi \n\t" // buf1
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1271 "movl %3, %%edx \n\t" // (xInc*4)>>16
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1272 "xorl %%ecx, %%ecx \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1273 "xorl %%ebx, %%ebx \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1274 "movw %4, %%bx \n\t" // (xInc*4)&0xFFFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1275
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1276 #define FUNNYUVCODE \
2520
b58c43aab619 3dnow prefetch & sfence
michael
parents: 2519
diff changeset
1277 PREFETCH" 1024(%%esi) \n\t"\
b58c43aab619 3dnow prefetch & sfence
michael
parents: 2519
diff changeset
1278 PREFETCH" 1056(%%esi) \n\t"\
b58c43aab619 3dnow prefetch & sfence
michael
parents: 2519
diff changeset
1279 PREFETCH" 1088(%%esi) \n\t"\
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1280 "call funnyUVCode \n\t"\
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1281 "movq temp0, %%mm2 \n\t"\
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1282 "xorl %%ecx, %%ecx \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1283
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1284 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1285 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1286 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1287 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1288
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1289 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1290 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1291 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1292 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1293 "xorl %%eax, %%eax \n\t" // i
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1294 "movl %6, %%esi \n\t" // src
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1295 "movl %1, %%edi \n\t" // buf1
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1296 "addl $4096, %%edi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1297
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1298 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1299 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1300 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1301 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1302
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1303 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1304 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1305 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1306 FUNNYUVCODE
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1307
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1308 :: "m" (src1), "m" (dst), "m" (dstWidth), "m" ((xInc*4)>>16),
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1309 "m" ((xInc*4)&0xFFFF), "m" (xInc&0xFFFF), "m" (src2)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1310 : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1311 );
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1312 for(i=dstWidth-1; (i*xInc)>>16 >=srcWidth/2-1; i--)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1313 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1314 dst[i] = src1[srcWidth/2-1]*128;
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1315 dst[i+2048] = src2[srcWidth/2-1]*128;
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1316 }
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1317 }
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1318 else
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1319 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1320 #endif
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1321 asm volatile(
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1322 "xorl %%eax, %%eax \n\t" // i
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1323 "xorl %%ebx, %%ebx \n\t" // xx
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1324 "xorl %%ecx, %%ecx \n\t" // 2*xalpha
2800
7847d6b7ad3d .balign or weĦ­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
1325 ".balign 16 \n\t"
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1326 "1: \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1327 "movl %0, %%esi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1328 "movzbl (%%esi, %%ebx), %%edi \n\t" //src[xx]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1329 "movzbl 1(%%esi, %%ebx), %%esi \n\t" //src[xx+1]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1330 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1331 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1332 "shll $16, %%edi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1333 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1334 "movl %1, %%edi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1335 "shrl $9, %%esi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1336 "movw %%si, (%%edi, %%eax, 2) \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1337
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1338 "movzbl (%5, %%ebx), %%edi \n\t" //src[xx]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1339 "movzbl 1(%5, %%ebx), %%esi \n\t" //src[xx+1]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1340 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx]
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1341 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1342 "shll $16, %%edi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1343 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1344 "movl %1, %%edi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1345 "shrl $9, %%esi \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1346 "movw %%si, 4096(%%edi, %%eax, 2)\n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1347
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1348 "addw %4, %%cx \n\t" //2*xalpha += xInc&0xFF
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1349 "adcl %3, %%ebx \n\t" //xx+= xInc>>8 + carry
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1350 "addl $1, %%eax \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1351 "cmpl %2, %%eax \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1352 " jb 1b \n\t"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1353
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1354 :: "m" (src1), "m" (dst), "m" (dstWidth), "m" (xInc>>16), "m" (xInc&0xFFFF),
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1355 "r" (src2)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1356 : "%eax", "%ebx", "%ecx", "%edi", "%esi"
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1357 );
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1358 #ifdef HAVE_MMX2
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1359 } //if MMX2 cant be used
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1360 #endif
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1361 #else
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1362 int i;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1363 unsigned int xpos=0;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1364 for(i=0;i<dstWidth;i++)
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1365 {
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1366 register unsigned int xx=xpos>>16;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1367 register unsigned int xalpha=(xpos&0xFFFF)>>9;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1368 dst[i]=(src1[xx]*(xalpha^127)+src1[xx+1]*xalpha);
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1369 dst[i+2048]=(src2[xx]*(xalpha^127)+src2[xx+1]*xalpha);
2566
a350d8bed636 bugfixes
michael
parents: 2540
diff changeset
1370 /* slower
a350d8bed636 bugfixes
michael
parents: 2540
diff changeset
1371 dst[i]= (src1[xx]<<7) + (src1[xx+1] - src1[xx])*xalpha;
a350d8bed636 bugfixes
michael
parents: 2540
diff changeset
1372 dst[i+2048]=(src2[xx]<<7) + (src2[xx+1] - src2[xx])*xalpha;
a350d8bed636 bugfixes
michael
parents: 2540
diff changeset
1373 */
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1374 xpos+=xInc;
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1375 }
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1376 #endif
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1377 }
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1378
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1379 static void RENAME(SwScale_YV12slice)(unsigned char* srcptr[],int stride[], int y, int h,
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1380 uint8_t* dstptr[], int dststride, int dstw, int dstbpp,
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1381 unsigned int s_xinc,unsigned int s_yinc){
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1382
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1383 // scaling factors:
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1384 //static int s_yinc=(vo_dga_src_height<<16)/vo_dga_vp_height;
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1385 //static int s_xinc=(vo_dga_src_width<<8)/vo_dga_vp_width;
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1386
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1387 unsigned int s_xinc2;
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1388
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1389 static int s_srcypos; // points to the dst Pixels center in the source (0 is the center of pixel 0,0 in src)
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1390 static int s_ypos;
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1391
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1392 // last horzontally interpolated lines, used to avoid unnecessary calculations
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1393 static int s_last_ypos;
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1394 static int s_last_y1pos;
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1395
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1396 #ifdef HAVE_MMX2
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1397 // used to detect a horizontal size change
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1398 static int old_dstw= -1;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1399 static int old_s_xinc= -1;
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1400 #endif
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1401
2680
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1402 int srcWidth;
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1403 int dstUVw;
2638
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1404 int i;
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1405
2680
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1406 if(((dstw + 7)&(~7)) >= dststride) dstw&= ~7;
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1407
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1408 srcWidth= (dstw*s_xinc + 0x8000)>>16;
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1409 dstUVw= fullUVIpol ? dstw : dstw/2;
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1410
2270
56ca174d8169 vertical lines bugfix
michael
parents: 2269
diff changeset
1411 #ifdef HAVE_MMX2
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1412 canMMX2BeUsed= (s_xinc <= 0x10000 && (dstw&31)==0 && (srcWidth&15)==0) ? 1 : 0;
2270
56ca174d8169 vertical lines bugfix
michael
parents: 2269
diff changeset
1413 #endif
56ca174d8169 vertical lines bugfix
michael
parents: 2269
diff changeset
1414
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1415 // match pixel 0 of the src to pixel 0 of dst and match pixel n-2 of src to pixel n-2 of dst
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1416 // n-2 is the last chrominance sample available
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1417 // FIXME this is not perfect, but noone shuld notice the difference, the more correct variant
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1418 // would be like the vertical one, but that would require some special code for the
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1419 // first and last pixel
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1420 if(canMMX2BeUsed) s_xinc+= 20;
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1421 else s_xinc = ((srcWidth-2)<<16)/(dstw-2) - 20;
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1422
2566
a350d8bed636 bugfixes
michael
parents: 2540
diff changeset
1423 if(fullUVIpol && !(dstbpp==12)) s_xinc2= s_xinc>>1;
a350d8bed636 bugfixes
michael
parents: 2540
diff changeset
1424 else s_xinc2= s_xinc;
2271
a8d57bbc4413 horizontal lines bugfix
michael
parents: 2270
diff changeset
1425 // force calculation of the horizontal interpolation of the first line
a8d57bbc4413 horizontal lines bugfix
michael
parents: 2270
diff changeset
1426
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1427 if(y==0){
2680
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1428 // printf("dstw %d, srcw %d, mmx2 %d\n", dstw, srcWidth, canMMX2BeUsed);
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1429 s_last_ypos=-99;
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1430 s_last_y1pos=-99;
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1431 s_srcypos= s_yinc/2 - 0x8000;
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1432 s_ypos=0;
2638
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1433
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1434 // clean the buffers so that no green stuff is drawen if the width is not sane (%8=0)
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1435 for(i=dstw-2; i<dstw+20; i++)
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1436 {
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1437 pix_buf_uv[0][i] = pix_buf_uv[1][i]
2680
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1438 = pix_buf_uv[0][2048+i] = pix_buf_uv[1][2048+i] = 128*128;
2638
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1439 pix_buf_uv[0][i/2] = pix_buf_uv[1][i/2]
2680
e8a534509557 green line fix for dstw%8!=0
michael
parents: 2671
diff changeset
1440 = pix_buf_uv[0][2048+i/2] = pix_buf_uv[1][2048+i/2] = 128*128;
2638
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1441 pix_buf_y[0][i]= pix_buf_y[1][i]= 0;
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1442 }
d4211422b6cc right green line bugfix for width not %8==0 (untested -vo vesa doesnt work)
michael
parents: 2585
diff changeset
1443
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1444 #ifdef HAVE_MMX2
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1445 // cant downscale !!!
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1446 if((old_s_xinc != s_xinc || old_dstw!=dstw) && canMMX2BeUsed)
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1447 {
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1448 uint8_t *fragment;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1449 int imm8OfPShufW1;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1450 int imm8OfPShufW2;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1451 int fragmentLength;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1452
2671
555cb027c7a7 fixed warnings
michael
parents: 2669
diff changeset
1453 int xpos, i;
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1454
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1455 old_s_xinc= s_xinc;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1456 old_dstw= dstw;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1457
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1458 // create an optimized horizontal scaling routine
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1459
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1460 //code fragment
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1461
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1462 asm volatile(
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1463 "jmp 9f \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1464 // Begin
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1465 "0: \n\t"
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1466 "movq (%%esi), %%mm0 \n\t" //FIXME Alignment
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1467 "movq %%mm0, %%mm1 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1468 "psrlq $8, %%mm0 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1469 "punpcklbw %%mm7, %%mm1 \n\t"
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1470 "movq %%mm2, %%mm3 \n\t"
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1471 "punpcklbw %%mm7, %%mm0 \n\t"
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1472 "addw %%bx, %%cx \n\t" //2*xalpha += (4*s_xinc)&0xFFFF
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1473 "pshufw $0xFF, %%mm1, %%mm1 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1474 "1: \n\t"
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1475 "adcl %%edx, %%esi \n\t" //xx+= (4*s_xinc)>>16 + carry
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1476 "pshufw $0xFF, %%mm0, %%mm0 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1477 "2: \n\t"
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1478 "psrlw $9, %%mm3 \n\t"
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1479 "psubw %%mm1, %%mm0 \n\t"
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1480 "pmullw %%mm3, %%mm0 \n\t"
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1481 "paddw %%mm6, %%mm2 \n\t" // 2*alpha += xpos&0xFFFF
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1482 "psllw $7, %%mm1 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1483 "paddw %%mm1, %%mm0 \n\t"
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1484
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1485 "movq %%mm0, (%%edi, %%eax) \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1486
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1487 "addl $8, %%eax \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1488 // End
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1489 "9: \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1490 // "int $3\n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1491 "leal 0b, %0 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1492 "leal 1b, %1 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1493 "leal 2b, %2 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1494 "decl %1 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1495 "decl %2 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1496 "subl %0, %1 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1497 "subl %0, %2 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1498 "leal 9b, %3 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1499 "subl %0, %3 \n\t"
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1500 :"=r" (fragment), "=r" (imm8OfPShufW1), "=r" (imm8OfPShufW2),
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1501 "=r" (fragmentLength)
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1502 );
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1503
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1504 xpos= 0; //s_xinc/2 - 0x8000; // difference between pixel centers
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1505
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1506 /* choose xinc so that all 8 parts fit exactly
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1507 Note: we cannot use just 1 part because it would not fit in the code cache */
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1508 // s_xinc2_diff= -((((s_xinc2*(dstw/8))&0xFFFF))/(dstw/8))-10;
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1509 // s_xinc_diff= -((((s_xinc*(dstw/8))&0xFFFF))/(dstw/8));
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1510 #ifdef ALT_ERROR
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1511 // s_xinc2_diff+= ((0x10000/(dstw/8)));
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1512 #endif
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1513 // s_xinc_diff= s_xinc2_diff*2;
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1514
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1515 // s_xinc2+= s_xinc2_diff;
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1516 // s_xinc+= s_xinc_diff;
2270
56ca174d8169 vertical lines bugfix
michael
parents: 2269
diff changeset
1517
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1518 // old_s_xinc= s_xinc;
2270
56ca174d8169 vertical lines bugfix
michael
parents: 2269
diff changeset
1519
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1520 for(i=0; i<dstw/8; i++)
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1521 {
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1522 int xx=xpos>>16;
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1523
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1524 if((i&3) == 0)
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1525 {
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1526 int a=0;
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1527 int b=((xpos+s_xinc)>>16) - xx;
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1528 int c=((xpos+s_xinc*2)>>16) - xx;
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1529 int d=((xpos+s_xinc*3)>>16) - xx;
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1530
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1531 memcpy(funnyYCode + fragmentLength*i/4, fragment, fragmentLength);
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1532
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1533 funnyYCode[fragmentLength*i/4 + imm8OfPShufW1]=
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1534 funnyYCode[fragmentLength*i/4 + imm8OfPShufW2]=
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1535 a | (b<<2) | (c<<4) | (d<<6);
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1536
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1537 // if we dont need to read 8 bytes than dont :), reduces the chance of
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1538 // crossing a cache line
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1539 if(d<3) funnyYCode[fragmentLength*i/4 + 1]= 0x6E;
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1540
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1541 funnyYCode[fragmentLength*(i+4)/4]= RET;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1542 }
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1543 xpos+=s_xinc;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1544 }
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1545
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1546 xpos= 0; //s_xinc2/2 - 0x10000; // difference between centers of chrom samples
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1547 for(i=0; i<dstUVw/8; i++)
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1548 {
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1549 int xx=xpos>>16;
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1550
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1551 if((i&3) == 0)
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1552 {
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1553 int a=0;
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1554 int b=((xpos+s_xinc2)>>16) - xx;
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1555 int c=((xpos+s_xinc2*2)>>16) - xx;
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1556 int d=((xpos+s_xinc2*3)>>16) - xx;
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1557
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1558 memcpy(funnyUVCode + fragmentLength*i/4, fragment, fragmentLength);
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1559
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1560 funnyUVCode[fragmentLength*i/4 + imm8OfPShufW1]=
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1561 funnyUVCode[fragmentLength*i/4 + imm8OfPShufW2]=
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1562 a | (b<<2) | (c<<4) | (d<<6);
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1563
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1564 // if we dont need to read 8 bytes than dont :), reduces the chance of
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1565 // crossing a cache line
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1566 if(d<3) funnyUVCode[fragmentLength*i/4 + 1]= 0x6E;
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1567
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1568 funnyUVCode[fragmentLength*(i+4)/4]= RET;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1569 }
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1570 xpos+=s_xinc2;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1571 }
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1572 // funnyCode[0]= RET;
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1573 }
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1574
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1575 #endif // HAVE_MMX2
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1576 } // reset counters
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1577
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1578 while(1){
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1579 unsigned char *dest =dstptr[0]+dststride*s_ypos;
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1580 unsigned char *uDest=dstptr[1]+(dststride>>1)*(s_ypos>>1);
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1581 unsigned char *vDest=dstptr[2]+(dststride>>1)*(s_ypos>>1);
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1582
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1583 int y0=(s_srcypos + 0xFFFF)>>16; // first luminance source line number below the dst line
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1584 // points to the dst Pixels center in the source (0 is the center of pixel 0,0 in src)
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1585 int srcuvpos= dstbpp==12 ? s_srcypos + s_yinc/2 - 0x8000 :
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1586 s_srcypos - 0x8000;
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1587 int y1=(srcuvpos + 0x1FFFF)>>17; // first chrominance source line number below the dst line
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1588 int yalpha=((s_srcypos-1)&0xFFFF)>>4;
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1589 int uvalpha=((srcuvpos-1)&0x1FFFF)>>5;
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1590 uint16_t *buf0=pix_buf_y[y0&1]; // top line of the interpolated slice
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1591 uint16_t *buf1=pix_buf_y[((y0+1)&1)]; // bottom line of the interpolated slice
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1592 uint16_t *uvbuf0=pix_buf_uv[y1&1]; // top line of the interpolated slice
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1593 uint16_t *uvbuf1=pix_buf_uv[(y1+1)&1]; // bottom line of the interpolated slice
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1594
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1595 if(y0>=y+h) break; // FIXME wrong, skips last lines, but they are dupliactes anyway
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1596
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1597 if((y0&1) && dstbpp==12) uvalpha=-1; // there is no alpha if there is no line
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1598
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1599 s_ypos++; s_srcypos+=s_yinc;
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1600
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1601 //only interpolate the src line horizontally if we didnt do it allready
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1602 if(s_last_ypos!=y0)
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1603 {
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1604 unsigned char *src;
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1605 // skip if first line has been horiz scaled alleady
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1606 if(s_last_ypos != y0-1)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1607 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1608 // check if first line is before any available src lines
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1609 if(y0-1 < y) src=srcptr[0]+(0 )*stride[0];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1610 else src=srcptr[0]+(y0-y-1)*stride[0];
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1611
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1612 RENAME(hyscale)(buf0, dstw, src, srcWidth, s_xinc);
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1613 }
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1614 // check if second line is after any available src lines
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1615 if(y0-y >= h) src=srcptr[0]+(h-1)*stride[0];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1616 else src=srcptr[0]+(y0-y)*stride[0];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1617
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1618 // the min() is required to avoid reuseing lines which where not available
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1619 s_last_ypos= MIN(y0, y+h-1);
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1620 RENAME(hyscale)(buf1, dstw, src, srcWidth, s_xinc);
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1621 }
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1622 // printf("%d %d %d %d\n", y, y1, s_last_y1pos, h);
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1623 // *** horizontal scale U and V lines to temp buffer
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1624 if(s_last_y1pos!=y1)
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1625 {
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1626 uint8_t *src1, *src2;
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1627 // skip if first line has been horiz scaled alleady
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1628 if(s_last_y1pos != y1-1)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1629 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1630 // check if first line is before any available src lines
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1631 if(y1-y/2-1 < 0)
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1632 {
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1633 src1= srcptr[1]+(0)*stride[1];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1634 src2= srcptr[2]+(0)*stride[2];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1635 }else{
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1636 src1= srcptr[1]+(y1-y/2-1)*stride[1];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1637 src2= srcptr[2]+(y1-y/2-1)*stride[2];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1638 }
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1639 RENAME(hcscale)(uvbuf0, dstUVw, src1, src2, srcWidth, s_xinc2);
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1640 }
2264
7851375ea156 increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents: 2237
diff changeset
1641
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1642 // check if second line is after any available src lines
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1643 if(y1 - y/2 >= h/2)
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1644 {
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1645 src1= srcptr[1]+(h/2-1)*stride[1];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1646 src2= srcptr[2]+(h/2-1)*stride[2];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1647 }else{
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1648 src1= srcptr[1]+(y1-y/2)*stride[1];
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1649 src2= srcptr[2]+(y1-y/2)*stride[2];
2279
9b9c3363abbe horizontal scaling bugs fixed, should be mostly bugfree now
michael
parents: 2274
diff changeset
1650 }
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1651 RENAME(hcscale)(uvbuf1, dstUVw, src1, src2, srcWidth, s_xinc2);
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1652
2469
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1653 // the min() is required to avoid reuseing lines which where not available
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1654 s_last_y1pos= MIN(y1, y/2+h/2-1);
03abc2743ed6 downscale
michael
parents: 2326
diff changeset
1655 }
2748
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
1656 #ifdef HAVE_MMX
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
1657 b5Dither= dither8[s_ypos&1];
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
1658 g6Dither= dither4[s_ypos&1];
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
1659 g5Dither= dither8[s_ypos&1];
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
1660 r5Dither= dither8[(s_ypos+1)&1];
01dbf100b4f8 better dithering
michael
parents: 2730
diff changeset
1661 #endif
2232
65996b3467d7 MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents: 2230
diff changeset
1662
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1663 if(dstbpp==12) //YV12
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1664 RENAME(yuv2yuv)(buf0, buf1, uvbuf0, uvbuf1, dest, uDest, vDest, dstw, yalpha, uvalpha);
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2503
diff changeset
1665 else if(ABS(s_yinc - 0x10000) < 10)
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1666 RENAME(yuv2rgb1)(buf0, buf1, uvbuf0, uvbuf1, dest, dstw, yalpha, uvalpha, dstbpp);
2316
bcb229557e9b fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents: 2297
diff changeset
1667 else
3126
e71ae0213431 runtime cpu detection
michael
parents: 2800
diff changeset
1668 RENAME(yuv2rgbX)(buf0, buf1, uvbuf0, uvbuf1, dest, dstw, yalpha, uvalpha, dstbpp);
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1669 }
2534
cc9d3fd626f0 patch from Martin Decky <deckm1am@ss1000.ms.mff.cuni.cz> applied and unnecassery "memory" removed
michael
parents: 2521
diff changeset
1670
cc9d3fd626f0 patch from Martin Decky <deckm1am@ss1000.ms.mff.cuni.cz> applied and unnecassery "memory" removed
michael
parents: 2521
diff changeset
1671 #ifdef HAVE_MMX
cc9d3fd626f0 patch from Martin Decky <deckm1am@ss1000.ms.mff.cuni.cz> applied and unnecassery "memory" removed
michael
parents: 2521
diff changeset
1672 __asm __volatile(SFENCE:::"memory");
2566
a350d8bed636 bugfixes
michael
parents: 2540
diff changeset
1673 __asm __volatile(EMMS:::"memory");
2534
cc9d3fd626f0 patch from Martin Decky <deckm1am@ss1000.ms.mff.cuni.cz> applied and unnecassery "memory" removed
michael
parents: 2521
diff changeset
1674 #endif
2216
9da2a0515184 software yv12->rgb scaler - separated from fsdga
arpi
parents:
diff changeset
1675 }