Mercurial > mplayer.hg
annotate postproc/swscale_template.c @ 8285:0e0a43761b49
fixed WaitForMultipleObjects and FindFile
author | alex |
---|---|
date | Mon, 25 Nov 2002 18:51:25 +0000 |
parents | 772d6d27fd66 |
children | 25baacd1c650 |
rev | line source |
---|---|
4295 | 1 /* |
2 Copyright (C) 2001-2002 Michael Niedermayer <michaelni@gmx.at> | |
2216 | 3 |
4295 | 4 This program is free software; you can redistribute it and/or modify |
5 it under the terms of the GNU General Public License as published by | |
6 the Free Software Foundation; either version 2 of the License, or | |
7 (at your option) any later version. | |
2216 | 8 |
4295 | 9 This program is distributed in the hope that it will be useful, |
10 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 GNU General Public License for more details. | |
13 | |
14 You should have received a copy of the GNU General Public License | |
15 along with this program; if not, write to the Free Software | |
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
17 */ | |
2264
7851375ea156
increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents:
2237
diff
changeset
|
18 |
2540 | 19 #undef MOVNTQ |
2680 | 20 #undef PAVGB |
3136 | 21 #undef PREFETCH |
22 #undef PREFETCHW | |
23 #undef EMMS | |
24 #undef SFENCE | |
25 | |
26 #ifdef HAVE_3DNOW | |
27 /* On K6 femms is faster of emms. On K7 femms is directly mapped on emms. */ | |
28 #define EMMS "femms" | |
29 #else | |
30 #define EMMS "emms" | |
31 #endif | |
32 | |
33 #ifdef HAVE_3DNOW | |
34 #define PREFETCH "prefetch" | |
35 #define PREFETCHW "prefetchw" | |
36 #elif defined ( HAVE_MMX2 ) | |
37 #define PREFETCH "prefetchnta" | |
38 #define PREFETCHW "prefetcht0" | |
39 #else | |
40 #define PREFETCH "/nop" | |
41 #define PREFETCHW "/nop" | |
42 #endif | |
43 | |
44 #ifdef HAVE_MMX2 | |
45 #define SFENCE "sfence" | |
46 #else | |
47 #define SFENCE "/nop" | |
48 #endif | |
2232
65996b3467d7
MMX & MMX2 optimizations (MMX2 is buggy and commented out)
michael
parents:
2230
diff
changeset
|
49 |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
50 #ifdef HAVE_MMX2 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
51 #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
|
52 #elif defined (HAVE_3DNOW) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
53 #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
|
54 #endif |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
55 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
56 #ifdef HAVE_MMX2 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
57 #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
|
58 #else |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
59 #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
|
60 #endif |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
61 |
3344 | 62 #define YSCALEYUV2YV12X(x) \ |
63 "xorl %%eax, %%eax \n\t"\ | |
64 "pxor %%mm3, %%mm3 \n\t"\ | |
65 "pxor %%mm4, %%mm4 \n\t"\ | |
66 "movl %0, %%edx \n\t"\ | |
67 ".balign 16 \n\t" /* FIXME Unroll? */\ | |
68 "1: \n\t"\ | |
69 "movl (%1, %%edx, 4), %%esi \n\t"\ | |
70 "movq (%2, %%edx, 8), %%mm0 \n\t" /* filterCoeff */\ | |
71 "movq " #x "(%%esi, %%eax, 2), %%mm2 \n\t" /* srcData */\ | |
72 "movq 8+" #x "(%%esi, %%eax, 2), %%mm5 \n\t" /* srcData */\ | |
73 "pmulhw %%mm0, %%mm2 \n\t"\ | |
74 "pmulhw %%mm0, %%mm5 \n\t"\ | |
75 "paddw %%mm2, %%mm3 \n\t"\ | |
76 "paddw %%mm5, %%mm4 \n\t"\ | |
77 "addl $1, %%edx \n\t"\ | |
78 " jnz 1b \n\t"\ | |
79 "psraw $3, %%mm3 \n\t"\ | |
80 "psraw $3, %%mm4 \n\t"\ | |
81 "packuswb %%mm4, %%mm3 \n\t"\ | |
82 MOVNTQ(%%mm3, (%3, %%eax))\ | |
83 "addl $8, %%eax \n\t"\ | |
84 "cmpl %4, %%eax \n\t"\ | |
85 "pxor %%mm3, %%mm3 \n\t"\ | |
86 "pxor %%mm4, %%mm4 \n\t"\ | |
87 "movl %0, %%edx \n\t"\ | |
88 "jb 1b \n\t" | |
89 | |
90 #define YSCALEYUV2YV121 \ | |
91 "movl %2, %%eax \n\t"\ | |
92 ".balign 16 \n\t" /* FIXME Unroll? */\ | |
93 "1: \n\t"\ | |
94 "movq (%0, %%eax, 2), %%mm0 \n\t"\ | |
95 "movq 8(%0, %%eax, 2), %%mm1 \n\t"\ | |
96 "psraw $7, %%mm0 \n\t"\ | |
97 "psraw $7, %%mm1 \n\t"\ | |
98 "packuswb %%mm1, %%mm0 \n\t"\ | |
99 MOVNTQ(%%mm0, (%1, %%eax))\ | |
100 "addl $8, %%eax \n\t"\ | |
101 "jnc 1b \n\t" | |
102 | |
103 /* | |
104 :: "m" (-lumFilterSize), "m" (-chrFilterSize), | |
105 "m" (lumMmxFilter+lumFilterSize*4), "m" (chrMmxFilter+chrFilterSize*4), | |
106 "r" (dest), "m" (dstW), | |
107 "m" (lumSrc+lumFilterSize), "m" (chrSrc+chrFilterSize) | |
108 : "%eax", "%ebx", "%ecx", "%edx", "%esi" | |
109 */ | |
7723 | 110 #define YSCALEYUV2PACKEDX \ |
3344 | 111 "xorl %%eax, %%eax \n\t"\ |
112 ".balign 16 \n\t"\ | |
113 "1: \n\t"\ | |
114 "movl %1, %%edx \n\t" /* -chrFilterSize */\ | |
6679
5c4beb993674
fixing sinc filter (seems the problem was caused by rounding in pmulhw -> solution use shorter filter, its long and slow enough anyway)
michael
parents:
6615
diff
changeset
|
115 "movl %3, %%ebx \n\t" /* chrMmxFilter+chrFilterSize */\ |
5c4beb993674
fixing sinc filter (seems the problem was caused by rounding in pmulhw -> solution use shorter filter, its long and slow enough anyway)
michael
parents:
6615
diff
changeset
|
116 "movl %7, %%ecx \n\t" /* chrSrc+chrFilterSize */\ |
3344 | 117 "pxor %%mm3, %%mm3 \n\t"\ |
118 "pxor %%mm4, %%mm4 \n\t"\ | |
119 "2: \n\t"\ | |
120 "movl (%%ecx, %%edx, 4), %%esi \n\t"\ | |
121 "movq (%%ebx, %%edx, 8), %%mm0 \n\t" /* filterCoeff */\ | |
122 "movq (%%esi, %%eax), %%mm2 \n\t" /* UsrcData */\ | |
123 "movq 4096(%%esi, %%eax), %%mm5 \n\t" /* VsrcData */\ | |
124 "pmulhw %%mm0, %%mm2 \n\t"\ | |
125 "pmulhw %%mm0, %%mm5 \n\t"\ | |
126 "paddw %%mm2, %%mm3 \n\t"\ | |
127 "paddw %%mm5, %%mm4 \n\t"\ | |
128 "addl $1, %%edx \n\t"\ | |
129 " jnz 2b \n\t"\ | |
130 \ | |
131 "movl %0, %%edx \n\t" /* -lumFilterSize */\ | |
132 "movl %2, %%ebx \n\t" /* lumMmxFilter+lumFilterSize */\ | |
133 "movl %6, %%ecx \n\t" /* lumSrc+lumFilterSize */\ | |
134 "pxor %%mm1, %%mm1 \n\t"\ | |
135 "pxor %%mm7, %%mm7 \n\t"\ | |
136 "2: \n\t"\ | |
137 "movl (%%ecx, %%edx, 4), %%esi \n\t"\ | |
138 "movq (%%ebx, %%edx, 8), %%mm0 \n\t" /* filterCoeff */\ | |
139 "movq (%%esi, %%eax, 2), %%mm2 \n\t" /* Y1srcData */\ | |
140 "movq 8(%%esi, %%eax, 2), %%mm5 \n\t" /* Y2srcData */\ | |
141 "pmulhw %%mm0, %%mm2 \n\t"\ | |
142 "pmulhw %%mm0, %%mm5 \n\t"\ | |
143 "paddw %%mm2, %%mm1 \n\t"\ | |
144 "paddw %%mm5, %%mm7 \n\t"\ | |
145 "addl $1, %%edx \n\t"\ | |
146 " jnz 2b \n\t"\ | |
7723 | 147 |
148 | |
149 #define YSCALEYUV2RGBX \ | |
150 YSCALEYUV2PACKEDX\ | |
4248 | 151 "psubw "MANGLE(w400)", %%mm3 \n\t" /* (U-128)8*/\ |
152 "psubw "MANGLE(w400)", %%mm4 \n\t" /* (V-128)8*/\ | |
3344 | 153 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\ |
154 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\ | |
4248 | 155 "pmulhw "MANGLE(ugCoeff)", %%mm3\n\t"\ |
156 "pmulhw "MANGLE(vgCoeff)", %%mm4\n\t"\ | |
3344 | 157 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\ |
4248 | 158 "pmulhw "MANGLE(ubCoeff)", %%mm2\n\t"\ |
159 "pmulhw "MANGLE(vrCoeff)", %%mm5\n\t"\ | |
160 "psubw "MANGLE(w80)", %%mm1 \n\t" /* 8(Y-16)*/\ | |
161 "psubw "MANGLE(w80)", %%mm7 \n\t" /* 8(Y-16)*/\ | |
162 "pmulhw "MANGLE(yCoeff)", %%mm1 \n\t"\ | |
163 "pmulhw "MANGLE(yCoeff)", %%mm7 \n\t"\ | |
3344 | 164 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\ |
165 "paddw %%mm3, %%mm4 \n\t"\ | |
166 "movq %%mm2, %%mm0 \n\t"\ | |
167 "movq %%mm5, %%mm6 \n\t"\ | |
168 "movq %%mm4, %%mm3 \n\t"\ | |
169 "punpcklwd %%mm2, %%mm2 \n\t"\ | |
170 "punpcklwd %%mm5, %%mm5 \n\t"\ | |
171 "punpcklwd %%mm4, %%mm4 \n\t"\ | |
172 "paddw %%mm1, %%mm2 \n\t"\ | |
173 "paddw %%mm1, %%mm5 \n\t"\ | |
174 "paddw %%mm1, %%mm4 \n\t"\ | |
175 "punpckhwd %%mm0, %%mm0 \n\t"\ | |
176 "punpckhwd %%mm6, %%mm6 \n\t"\ | |
177 "punpckhwd %%mm3, %%mm3 \n\t"\ | |
178 "paddw %%mm7, %%mm0 \n\t"\ | |
179 "paddw %%mm7, %%mm6 \n\t"\ | |
180 "paddw %%mm7, %%mm3 \n\t"\ | |
181 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\ | |
182 "packuswb %%mm0, %%mm2 \n\t"\ | |
183 "packuswb %%mm6, %%mm5 \n\t"\ | |
184 "packuswb %%mm3, %%mm4 \n\t"\ | |
185 "pxor %%mm7, %%mm7 \n\t" | |
186 | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
187 #define FULL_YSCALEYUV2RGB \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
188 "pxor %%mm7, %%mm7 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
189 "movd %6, %%mm6 \n\t" /*yalpha1*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
190 "punpcklwd %%mm6, %%mm6 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
191 "punpcklwd %%mm6, %%mm6 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
192 "movd %7, %%mm5 \n\t" /*uvalpha1*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
193 "punpcklwd %%mm5, %%mm5 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
194 "punpcklwd %%mm5, %%mm5 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
195 "xorl %%eax, %%eax \n\t"\ |
2800
7847d6b7ad3d
.balign or we¡ll align by 64kb on some architectures
michael
parents:
2799
diff
changeset
|
196 ".balign 16 \n\t"\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
197 "1: \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
198 "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
|
199 "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
|
200 "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
|
201 "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
|
202 "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
|
203 "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
|
204 "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
|
205 "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
|
206 "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
|
207 "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
|
208 "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
|
209 "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
|
210 "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
|
211 "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
|
212 "psubw %%mm0, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\ |
4248 | 213 "psubw "MANGLE(w80)", %%mm1 \n\t" /* 8(Y-16)*/\ |
214 "psubw "MANGLE(w400)", %%mm3 \n\t" /* 8(U-128)*/\ | |
215 "pmulhw "MANGLE(yCoeff)", %%mm1 \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
216 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
217 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
218 "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
|
219 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\ |
4248 | 220 "pmulhw "MANGLE(ubCoeff)", %%mm3\n\t"\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
221 "psraw $4, %%mm0 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\ |
4248 | 222 "pmulhw "MANGLE(ugCoeff)", %%mm2\n\t"\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
223 "paddw %%mm4, %%mm0 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\ |
4248 | 224 "psubw "MANGLE(w400)", %%mm0 \n\t" /* (V-128)8*/\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
225 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
226 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
227 "movq %%mm0, %%mm4 \n\t" /* (V-128)8*/\ |
4248 | 228 "pmulhw "MANGLE(vrCoeff)", %%mm0\n\t"\ |
229 "pmulhw "MANGLE(vgCoeff)", %%mm4\n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
230 "paddw %%mm1, %%mm3 \n\t" /* B*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
231 "paddw %%mm1, %%mm0 \n\t" /* R*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
232 "packuswb %%mm3, %%mm3 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
233 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
234 "packuswb %%mm0, %%mm0 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
235 "paddw %%mm4, %%mm2 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
236 "paddw %%mm2, %%mm1 \n\t" /* G*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
237 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
238 "packuswb %%mm1, %%mm1 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
239 |
7723 | 240 #define YSCALEYUV2PACKED \ |
241 "movd %6, %%mm6 \n\t" /*yalpha1*/\ | |
242 "punpcklwd %%mm6, %%mm6 \n\t"\ | |
243 "punpcklwd %%mm6, %%mm6 \n\t"\ | |
244 "psraw $3, %%mm6 \n\t"\ | |
245 "movq %%mm6, 3968(%2) \n\t"\ | |
246 "movd %7, %%mm5 \n\t" /*uvalpha1*/\ | |
247 "punpcklwd %%mm5, %%mm5 \n\t"\ | |
248 "punpcklwd %%mm5, %%mm5 \n\t"\ | |
249 "psraw $3, %%mm5 \n\t"\ | |
250 "movq %%mm5, 3976(%2) \n\t"\ | |
251 "xorl %%eax, %%eax \n\t"\ | |
252 ".balign 16 \n\t"\ | |
253 "1: \n\t"\ | |
254 "movq (%2, %%eax), %%mm2 \n\t" /* uvbuf0[eax]*/\ | |
255 "movq (%3, %%eax), %%mm3 \n\t" /* uvbuf1[eax]*/\ | |
256 "movq 4096(%2, %%eax), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\ | |
257 "movq 4096(%3, %%eax), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\ | |
258 "psubw %%mm3, %%mm2 \n\t" /* uvbuf0[eax] - uvbuf1[eax]*/\ | |
259 "psubw %%mm4, %%mm5 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\ | |
260 "movq 3976(%2), %%mm0 \n\t"\ | |
261 "pmulhw %%mm0, %%mm2 \n\t" /* (uvbuf0[eax] - uvbuf1[eax])uvalpha1>>16*/\ | |
262 "pmulhw %%mm0, %%mm5 \n\t" /* (uvbuf0[eax+2048] - uvbuf1[eax+2048])uvalpha1>>16*/\ | |
263 "psraw $7, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\ | |
264 "psraw $7, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\ | |
265 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax]uvalpha1 - uvbuf1[eax](1-uvalpha1)*/\ | |
266 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\ | |
267 "movq (%0, %%eax, 2), %%mm0 \n\t" /*buf0[eax]*/\ | |
268 "movq (%1, %%eax, 2), %%mm1 \n\t" /*buf1[eax]*/\ | |
269 "movq 8(%0, %%eax, 2), %%mm6 \n\t" /*buf0[eax]*/\ | |
270 "movq 8(%1, %%eax, 2), %%mm7 \n\t" /*buf1[eax]*/\ | |
271 "psubw %%mm1, %%mm0 \n\t" /* buf0[eax] - buf1[eax]*/\ | |
272 "psubw %%mm7, %%mm6 \n\t" /* buf0[eax] - buf1[eax]*/\ | |
273 "pmulhw 3968(%2), %%mm0 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\ | |
274 "pmulhw 3968(%2), %%mm6 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\ | |
275 "psraw $7, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
276 "psraw $7, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
277 "paddw %%mm0, %%mm1 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\ | |
278 "paddw %%mm6, %%mm7 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\ | |
279 | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
280 #define YSCALEYUV2RGB \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
281 "movd %6, %%mm6 \n\t" /*yalpha1*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
282 "punpcklwd %%mm6, %%mm6 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
283 "punpcklwd %%mm6, %%mm6 \n\t"\ |
6554 | 284 "movq %%mm6, 3968(%2) \n\t"\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
285 "movd %7, %%mm5 \n\t" /*uvalpha1*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
286 "punpcklwd %%mm5, %%mm5 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
287 "punpcklwd %%mm5, %%mm5 \n\t"\ |
6554 | 288 "movq %%mm5, 3976(%2) \n\t"\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
289 "xorl %%eax, %%eax \n\t"\ |
2800
7847d6b7ad3d
.balign or we¡ll align by 64kb on some architectures
michael
parents:
2799
diff
changeset
|
290 ".balign 16 \n\t"\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
291 "1: \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
292 "movq (%2, %%eax), %%mm2 \n\t" /* uvbuf0[eax]*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
293 "movq (%3, %%eax), %%mm3 \n\t" /* uvbuf1[eax]*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
294 "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
|
295 "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
|
296 "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
|
297 "psubw %%mm4, %%mm5 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\ |
6554 | 298 "movq 3976(%2), %%mm0 \n\t"\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
299 "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
|
300 "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
|
301 "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
|
302 "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
|
303 "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
|
304 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\ |
4248 | 305 "psubw "MANGLE(w400)", %%mm3 \n\t" /* (U-128)8*/\ |
306 "psubw "MANGLE(w400)", %%mm4 \n\t" /* (V-128)8*/\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
307 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
308 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\ |
4248 | 309 "pmulhw "MANGLE(ugCoeff)", %%mm3\n\t"\ |
310 "pmulhw "MANGLE(vgCoeff)", %%mm4\n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
311 /* 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
|
312 "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
|
313 "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
|
314 "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
|
315 "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
|
316 "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
|
317 "psubw %%mm7, %%mm6 \n\t" /* buf0[eax] - buf1[eax]*/\ |
6554 | 318 "pmulhw 3968(%2), %%mm0 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\ |
319 "pmulhw 3968(%2), %%mm6 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
320 "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
|
321 "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
|
322 "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
|
323 "paddw %%mm6, %%mm7 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\ |
4248 | 324 "pmulhw "MANGLE(ubCoeff)", %%mm2\n\t"\ |
325 "pmulhw "MANGLE(vrCoeff)", %%mm5\n\t"\ | |
326 "psubw "MANGLE(w80)", %%mm1 \n\t" /* 8(Y-16)*/\ | |
327 "psubw "MANGLE(w80)", %%mm7 \n\t" /* 8(Y-16)*/\ | |
328 "pmulhw "MANGLE(yCoeff)", %%mm1 \n\t"\ | |
329 "pmulhw "MANGLE(yCoeff)", %%mm7 \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
330 /* 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
|
331 "paddw %%mm3, %%mm4 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
332 "movq %%mm2, %%mm0 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
333 "movq %%mm5, %%mm6 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
334 "movq %%mm4, %%mm3 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
335 "punpcklwd %%mm2, %%mm2 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
336 "punpcklwd %%mm5, %%mm5 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
337 "punpcklwd %%mm4, %%mm4 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
338 "paddw %%mm1, %%mm2 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
339 "paddw %%mm1, %%mm5 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
340 "paddw %%mm1, %%mm4 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
341 "punpckhwd %%mm0, %%mm0 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
342 "punpckhwd %%mm6, %%mm6 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
343 "punpckhwd %%mm3, %%mm3 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
344 "paddw %%mm7, %%mm0 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
345 "paddw %%mm7, %%mm6 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
346 "paddw %%mm7, %%mm3 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
347 /* 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
|
348 "packuswb %%mm0, %%mm2 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
349 "packuswb %%mm6, %%mm5 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
350 "packuswb %%mm3, %%mm4 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
351 "pxor %%mm7, %%mm7 \n\t" |
7723 | 352 |
353 #define YSCALEYUV2PACKED1 \ | |
354 "xorl %%eax, %%eax \n\t"\ | |
355 ".balign 16 \n\t"\ | |
356 "1: \n\t"\ | |
357 "movq (%2, %%eax), %%mm3 \n\t" /* uvbuf0[eax]*/\ | |
358 "movq 4096(%2, %%eax), %%mm4 \n\t" /* uvbuf0[eax+2048]*/\ | |
359 "psraw $7, %%mm3 \n\t" \ | |
360 "psraw $7, %%mm4 \n\t" \ | |
361 "movq (%0, %%eax, 2), %%mm1 \n\t" /*buf0[eax]*/\ | |
362 "movq 8(%0, %%eax, 2), %%mm7 \n\t" /*buf0[eax]*/\ | |
363 "psraw $7, %%mm1 \n\t" \ | |
364 "psraw $7, %%mm7 \n\t" \ | |
365 | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
366 #define YSCALEYUV2RGB1 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
367 "xorl %%eax, %%eax \n\t"\ |
2800
7847d6b7ad3d
.balign or we¡ll align by 64kb on some architectures
michael
parents:
2799
diff
changeset
|
368 ".balign 16 \n\t"\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
369 "1: \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
370 "movq (%2, %%eax), %%mm3 \n\t" /* uvbuf0[eax]*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
371 "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
|
372 "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
|
373 "psraw $4, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\ |
4248 | 374 "psubw "MANGLE(w400)", %%mm3 \n\t" /* (U-128)8*/\ |
375 "psubw "MANGLE(w400)", %%mm4 \n\t" /* (V-128)8*/\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
376 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
377 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\ |
4248 | 378 "pmulhw "MANGLE(ugCoeff)", %%mm3\n\t"\ |
379 "pmulhw "MANGLE(vgCoeff)", %%mm4\n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
380 /* 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
|
381 "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
|
382 "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
|
383 "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
|
384 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ |
4248 | 385 "pmulhw "MANGLE(ubCoeff)", %%mm2\n\t"\ |
386 "pmulhw "MANGLE(vrCoeff)", %%mm5\n\t"\ | |
387 "psubw "MANGLE(w80)", %%mm1 \n\t" /* 8(Y-16)*/\ | |
388 "psubw "MANGLE(w80)", %%mm7 \n\t" /* 8(Y-16)*/\ | |
389 "pmulhw "MANGLE(yCoeff)", %%mm1 \n\t"\ | |
390 "pmulhw "MANGLE(yCoeff)", %%mm7 \n\t"\ | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
391 /* 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
|
392 "paddw %%mm3, %%mm4 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
393 "movq %%mm2, %%mm0 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
394 "movq %%mm5, %%mm6 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
395 "movq %%mm4, %%mm3 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
396 "punpcklwd %%mm2, %%mm2 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
397 "punpcklwd %%mm5, %%mm5 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
398 "punpcklwd %%mm4, %%mm4 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
399 "paddw %%mm1, %%mm2 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
400 "paddw %%mm1, %%mm5 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
401 "paddw %%mm1, %%mm4 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
402 "punpckhwd %%mm0, %%mm0 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
403 "punpckhwd %%mm6, %%mm6 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
404 "punpckhwd %%mm3, %%mm3 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
405 "paddw %%mm7, %%mm0 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
406 "paddw %%mm7, %%mm6 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
407 "paddw %%mm7, %%mm3 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
408 /* 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
|
409 "packuswb %%mm0, %%mm2 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
410 "packuswb %%mm6, %%mm5 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
411 "packuswb %%mm3, %%mm4 \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
412 "pxor %%mm7, %%mm7 \n\t" |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
413 |
7723 | 414 #define YSCALEYUV2PACKED1b \ |
415 "xorl %%eax, %%eax \n\t"\ | |
416 ".balign 16 \n\t"\ | |
417 "1: \n\t"\ | |
418 "movq (%2, %%eax), %%mm2 \n\t" /* uvbuf0[eax]*/\ | |
419 "movq (%3, %%eax), %%mm3 \n\t" /* uvbuf1[eax]*/\ | |
420 "movq 4096(%2, %%eax), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\ | |
421 "movq 4096(%3, %%eax), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\ | |
422 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax] + uvbuf1[eax]*/\ | |
423 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048] + uvbuf1[eax+2048]*/\ | |
424 "psrlw $8, %%mm3 \n\t" \ | |
425 "psrlw $8, %%mm4 \n\t" \ | |
426 "movq (%0, %%eax, 2), %%mm1 \n\t" /*buf0[eax]*/\ | |
427 "movq 8(%0, %%eax, 2), %%mm7 \n\t" /*buf0[eax]*/\ | |
428 "psraw $7, %%mm1 \n\t" \ | |
429 "psraw $7, %%mm7 \n\t" | |
430 | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
431 // do vertical chrominance interpolation |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
432 #define YSCALEYUV2RGB1b \ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
433 "xorl %%eax, %%eax \n\t"\ |
2800
7847d6b7ad3d
.balign or we¡ll align by 64kb on some architectures
michael
parents:
2799
diff
changeset
|
434 ".balign 16 \n\t"\ |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
435 "1: \n\t"\ |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
436 "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
|
437 "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
|
438 "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
|
439 "movq 4096(%3, %%eax), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\ |
2576 | 440 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax] + uvbuf1[eax]*/\ |
441 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048] + uvbuf1[eax+2048]*/\ | |
3344 | 442 "psrlw $5, %%mm3 \n\t" /*FIXME might overflow*/\ |
443 "psrlw $5, %%mm4 \n\t" /*FIXME might overflow*/\ | |
4248 | 444 "psubw "MANGLE(w400)", %%mm3 \n\t" /* (U-128)8*/\ |
445 "psubw "MANGLE(w400)", %%mm4 \n\t" /* (V-128)8*/\ | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
446 "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
|
447 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\ |
4248 | 448 "pmulhw "MANGLE(ugCoeff)", %%mm3\n\t"\ |
449 "pmulhw "MANGLE(vgCoeff)", %%mm4\n\t"\ | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
450 /* 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
|
451 "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
|
452 "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
|
453 "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
|
454 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ |
4248 | 455 "pmulhw "MANGLE(ubCoeff)", %%mm2\n\t"\ |
456 "pmulhw "MANGLE(vrCoeff)", %%mm5\n\t"\ | |
457 "psubw "MANGLE(w80)", %%mm1 \n\t" /* 8(Y-16)*/\ | |
458 "psubw "MANGLE(w80)", %%mm7 \n\t" /* 8(Y-16)*/\ | |
459 "pmulhw "MANGLE(yCoeff)", %%mm1 \n\t"\ | |
460 "pmulhw "MANGLE(yCoeff)", %%mm7 \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
461 /* 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
|
462 "paddw %%mm3, %%mm4 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
463 "movq %%mm2, %%mm0 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
464 "movq %%mm5, %%mm6 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
465 "movq %%mm4, %%mm3 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
466 "punpcklwd %%mm2, %%mm2 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
467 "punpcklwd %%mm5, %%mm5 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
468 "punpcklwd %%mm4, %%mm4 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
469 "paddw %%mm1, %%mm2 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
470 "paddw %%mm1, %%mm5 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
471 "paddw %%mm1, %%mm4 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
472 "punpckhwd %%mm0, %%mm0 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
473 "punpckhwd %%mm6, %%mm6 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
474 "punpckhwd %%mm3, %%mm3 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
475 "paddw %%mm7, %%mm0 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
476 "paddw %%mm7, %%mm6 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
477 "paddw %%mm7, %%mm3 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
478 /* 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
|
479 "packuswb %%mm0, %%mm2 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
480 "packuswb %%mm6, %%mm5 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
481 "packuswb %%mm3, %%mm4 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
482 "pxor %%mm7, %%mm7 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
483 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
484 #define WRITEBGR32 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
485 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
486 "movq %%mm2, %%mm1 \n\t" /* B */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
487 "movq %%mm5, %%mm6 \n\t" /* R */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
488 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
489 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
490 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
491 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
492 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
493 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
494 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
495 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
496 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
497 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
498 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
499 MOVNTQ(%%mm0, (%4, %%eax, 4))\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
500 MOVNTQ(%%mm2, 8(%4, %%eax, 4))\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
501 MOVNTQ(%%mm1, 16(%4, %%eax, 4))\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
502 MOVNTQ(%%mm3, 24(%4, %%eax, 4))\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
503 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
504 "addl $8, %%eax \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
505 "cmpl %5, %%eax \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
506 " jb 1b \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
507 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
508 #define WRITEBGR16 \ |
4248 | 509 "pand "MANGLE(bF8)", %%mm2 \n\t" /* B */\ |
510 "pand "MANGLE(bFC)", %%mm4 \n\t" /* G */\ | |
511 "pand "MANGLE(bF8)", %%mm5 \n\t" /* R */\ | |
2669 | 512 "psrlq $3, %%mm2 \n\t"\ |
513 \ | |
514 "movq %%mm2, %%mm1 \n\t"\ | |
515 "movq %%mm4, %%mm3 \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
516 \ |
2669 | 517 "punpcklbw %%mm7, %%mm3 \n\t"\ |
518 "punpcklbw %%mm5, %%mm2 \n\t"\ | |
519 "punpckhbw %%mm7, %%mm4 \n\t"\ | |
520 "punpckhbw %%mm5, %%mm1 \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
521 \ |
2669 | 522 "psllq $3, %%mm3 \n\t"\ |
523 "psllq $3, %%mm4 \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
524 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
525 "por %%mm3, %%mm2 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
526 "por %%mm4, %%mm1 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
527 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
528 MOVNTQ(%%mm2, (%4, %%eax, 2))\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
529 MOVNTQ(%%mm1, 8(%4, %%eax, 2))\ |
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 "addl $8, %%eax \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
532 "cmpl %5, %%eax \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
533 " jb 1b \n\t" |
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 #define WRITEBGR15 \ |
4248 | 536 "pand "MANGLE(bF8)", %%mm2 \n\t" /* B */\ |
537 "pand "MANGLE(bF8)", %%mm4 \n\t" /* G */\ | |
538 "pand "MANGLE(bF8)", %%mm5 \n\t" /* R */\ | |
2669 | 539 "psrlq $3, %%mm2 \n\t"\ |
540 "psrlq $1, %%mm5 \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
541 \ |
2669 | 542 "movq %%mm2, %%mm1 \n\t"\ |
543 "movq %%mm4, %%mm3 \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
544 \ |
2669 | 545 "punpcklbw %%mm7, %%mm3 \n\t"\ |
546 "punpcklbw %%mm5, %%mm2 \n\t"\ | |
547 "punpckhbw %%mm7, %%mm4 \n\t"\ | |
548 "punpckhbw %%mm5, %%mm1 \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
549 \ |
2669 | 550 "psllq $2, %%mm3 \n\t"\ |
551 "psllq $2, %%mm4 \n\t"\ | |
2316
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 "por %%mm3, %%mm2 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
554 "por %%mm4, %%mm1 \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
555 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
556 MOVNTQ(%%mm2, (%4, %%eax, 2))\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
557 MOVNTQ(%%mm1, 8(%4, %%eax, 2))\ |
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 "addl $8, %%eax \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
560 "cmpl %5, %%eax \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
561 " jb 1b \n\t" |
2669 | 562 |
2730 | 563 #define WRITEBGR24OLD \ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
564 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
565 "movq %%mm2, %%mm1 \n\t" /* B */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
566 "movq %%mm5, %%mm6 \n\t" /* R */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
567 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
568 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
569 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
570 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
571 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
572 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\ |
2326 | 573 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\ |
574 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\ | |
575 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\ | |
576 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
577 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
578 "movq %%mm0, %%mm4 \n\t" /* 0RGB0RGB 0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
579 "psrlq $8, %%mm0 \n\t" /* 00RGB0RG 0 */\ |
4248 | 580 "pand "MANGLE(bm00000111)", %%mm4\n\t" /* 00000RGB 0 */\ |
581 "pand "MANGLE(bm11111000)", %%mm0\n\t" /* 00RGB000 0.5 */\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
582 "por %%mm4, %%mm0 \n\t" /* 00RGBRGB 0 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
583 "movq %%mm2, %%mm4 \n\t" /* 0RGB0RGB 1 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
584 "psllq $48, %%mm2 \n\t" /* GB000000 1 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
585 "por %%mm2, %%mm0 \n\t" /* GBRGBRGB 0 */\ |
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 "movq %%mm4, %%mm2 \n\t" /* 0RGB0RGB 1 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
588 "psrld $16, %%mm4 \n\t" /* 000R000R 1 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
589 "psrlq $24, %%mm2 \n\t" /* 0000RGB0 1.5 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
590 "por %%mm4, %%mm2 \n\t" /* 000RRGBR 1 */\ |
4248 | 591 "pand "MANGLE(bm00001111)", %%mm2\n\t" /* 0000RGBR 1 */\ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
592 "movq %%mm1, %%mm4 \n\t" /* 0RGB0RGB 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
593 "psrlq $8, %%mm1 \n\t" /* 00RGB0RG 2 */\ |
4248 | 594 "pand "MANGLE(bm00000111)", %%mm4\n\t" /* 00000RGB 2 */\ |
595 "pand "MANGLE(bm11111000)", %%mm1\n\t" /* 00RGB000 2.5 */\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
596 "por %%mm4, %%mm1 \n\t" /* 00RGBRGB 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
597 "movq %%mm1, %%mm4 \n\t" /* 00RGBRGB 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
598 "psllq $32, %%mm1 \n\t" /* BRGB0000 2 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
599 "por %%mm1, %%mm2 \n\t" /* BRGBRGBR 1 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
600 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
601 "psrlq $32, %%mm4 \n\t" /* 000000RG 2.5 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
602 "movq %%mm3, %%mm5 \n\t" /* 0RGB0RGB 3 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
603 "psrlq $8, %%mm3 \n\t" /* 00RGB0RG 3 */\ |
4248 | 604 "pand "MANGLE(bm00000111)", %%mm5\n\t" /* 00000RGB 3 */\ |
605 "pand "MANGLE(bm11111000)", %%mm3\n\t" /* 00RGB000 3.5 */\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
606 "por %%mm5, %%mm3 \n\t" /* 00RGBRGB 3 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
607 "psllq $16, %%mm3 \n\t" /* RGBRGB00 3 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
608 "por %%mm4, %%mm3 \n\t" /* RGBRGBRG 2.5 */\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
609 \ |
2728 | 610 MOVNTQ(%%mm0, (%%ebx))\ |
611 MOVNTQ(%%mm2, 8(%%ebx))\ | |
612 MOVNTQ(%%mm3, 16(%%ebx))\ | |
613 "addl $24, %%ebx \n\t"\ | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
614 \ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
615 "addl $8, %%eax \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
616 "cmpl %5, %%eax \n\t"\ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
617 " jb 1b \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
618 |
2730 | 619 #define WRITEBGR24MMX \ |
620 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\ | |
621 "movq %%mm2, %%mm1 \n\t" /* B */\ | |
622 "movq %%mm5, %%mm6 \n\t" /* R */\ | |
623 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\ | |
624 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\ | |
625 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\ | |
626 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\ | |
627 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\ | |
628 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\ | |
629 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\ | |
630 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\ | |
631 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\ | |
632 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\ | |
633 \ | |
634 "movq %%mm0, %%mm4 \n\t" /* 0RGB0RGB 0 */\ | |
635 "movq %%mm2, %%mm6 \n\t" /* 0RGB0RGB 1 */\ | |
636 "movq %%mm1, %%mm5 \n\t" /* 0RGB0RGB 2 */\ | |
637 "movq %%mm3, %%mm7 \n\t" /* 0RGB0RGB 3 */\ | |
638 \ | |
639 "psllq $40, %%mm0 \n\t" /* RGB00000 0 */\ | |
640 "psllq $40, %%mm2 \n\t" /* RGB00000 1 */\ | |
641 "psllq $40, %%mm1 \n\t" /* RGB00000 2 */\ | |
642 "psllq $40, %%mm3 \n\t" /* RGB00000 3 */\ | |
643 \ | |
644 "punpckhdq %%mm4, %%mm0 \n\t" /* 0RGBRGB0 0 */\ | |
645 "punpckhdq %%mm6, %%mm2 \n\t" /* 0RGBRGB0 1 */\ | |
646 "punpckhdq %%mm5, %%mm1 \n\t" /* 0RGBRGB0 2 */\ | |
647 "punpckhdq %%mm7, %%mm3 \n\t" /* 0RGBRGB0 3 */\ | |
648 \ | |
649 "psrlq $8, %%mm0 \n\t" /* 00RGBRGB 0 */\ | |
650 "movq %%mm2, %%mm6 \n\t" /* 0RGBRGB0 1 */\ | |
651 "psllq $40, %%mm2 \n\t" /* GB000000 1 */\ | |
652 "por %%mm2, %%mm0 \n\t" /* GBRGBRGB 0 */\ | |
653 MOVNTQ(%%mm0, (%%ebx))\ | |
654 \ | |
655 "psrlq $24, %%mm6 \n\t" /* 0000RGBR 1 */\ | |
656 "movq %%mm1, %%mm5 \n\t" /* 0RGBRGB0 2 */\ | |
657 "psllq $24, %%mm1 \n\t" /* BRGB0000 2 */\ | |
658 "por %%mm1, %%mm6 \n\t" /* BRGBRGBR 1 */\ | |
659 MOVNTQ(%%mm6, 8(%%ebx))\ | |
660 \ | |
661 "psrlq $40, %%mm5 \n\t" /* 000000RG 2 */\ | |
662 "psllq $8, %%mm3 \n\t" /* RGBRGB00 3 */\ | |
663 "por %%mm3, %%mm5 \n\t" /* RGBRGBRG 2 */\ | |
664 MOVNTQ(%%mm5, 16(%%ebx))\ | |
665 \ | |
666 "addl $24, %%ebx \n\t"\ | |
667 \ | |
668 "addl $8, %%eax \n\t"\ | |
669 "cmpl %5, %%eax \n\t"\ | |
670 " jb 1b \n\t" | |
671 | |
672 #define WRITEBGR24MMX2 \ | |
673 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\ | |
4248 | 674 "movq "MANGLE(M24A)", %%mm0 \n\t"\ |
675 "movq "MANGLE(M24C)", %%mm7 \n\t"\ | |
2730 | 676 "pshufw $0x50, %%mm2, %%mm1 \n\t" /* B3 B2 B3 B2 B1 B0 B1 B0 */\ |
677 "pshufw $0x50, %%mm4, %%mm3 \n\t" /* G3 G2 G3 G2 G1 G0 G1 G0 */\ | |
678 "pshufw $0x00, %%mm5, %%mm6 \n\t" /* R1 R0 R1 R0 R1 R0 R1 R0 */\ | |
679 \ | |
680 "pand %%mm0, %%mm1 \n\t" /* B2 B1 B0 */\ | |
681 "pand %%mm0, %%mm3 \n\t" /* G2 G1 G0 */\ | |
682 "pand %%mm7, %%mm6 \n\t" /* R1 R0 */\ | |
683 \ | |
684 "psllq $8, %%mm3 \n\t" /* G2 G1 G0 */\ | |
685 "por %%mm1, %%mm6 \n\t"\ | |
686 "por %%mm3, %%mm6 \n\t"\ | |
687 MOVNTQ(%%mm6, (%%ebx))\ | |
688 \ | |
689 "psrlq $8, %%mm4 \n\t" /* 00 G7 G6 G5 G4 G3 G2 G1 */\ | |
690 "pshufw $0xA5, %%mm2, %%mm1 \n\t" /* B5 B4 B5 B4 B3 B2 B3 B2 */\ | |
691 "pshufw $0x55, %%mm4, %%mm3 \n\t" /* G4 G3 G4 G3 G4 G3 G4 G3 */\ | |
692 "pshufw $0xA5, %%mm5, %%mm6 \n\t" /* R5 R4 R5 R4 R3 R2 R3 R2 */\ | |
693 \ | |
4248 | 694 "pand "MANGLE(M24B)", %%mm1 \n\t" /* B5 B4 B3 */\ |
2730 | 695 "pand %%mm7, %%mm3 \n\t" /* G4 G3 */\ |
696 "pand %%mm0, %%mm6 \n\t" /* R4 R3 R2 */\ | |
697 \ | |
698 "por %%mm1, %%mm3 \n\t" /* B5 G4 B4 G3 B3 */\ | |
699 "por %%mm3, %%mm6 \n\t"\ | |
700 MOVNTQ(%%mm6, 8(%%ebx))\ | |
701 \ | |
702 "pshufw $0xFF, %%mm2, %%mm1 \n\t" /* B7 B6 B7 B6 B7 B6 B6 B7 */\ | |
703 "pshufw $0xFA, %%mm4, %%mm3 \n\t" /* 00 G7 00 G7 G6 G5 G6 G5 */\ | |
704 "pshufw $0xFA, %%mm5, %%mm6 \n\t" /* R7 R6 R7 R6 R5 R4 R5 R4 */\ | |
705 \ | |
706 "pand %%mm7, %%mm1 \n\t" /* B7 B6 */\ | |
707 "pand %%mm0, %%mm3 \n\t" /* G7 G6 G5 */\ | |
4248 | 708 "pand "MANGLE(M24B)", %%mm6 \n\t" /* R7 R6 R5 */\ |
2730 | 709 \ |
710 "por %%mm1, %%mm3 \n\t"\ | |
711 "por %%mm3, %%mm6 \n\t"\ | |
712 MOVNTQ(%%mm6, 16(%%ebx))\ | |
713 \ | |
714 "addl $24, %%ebx \n\t"\ | |
715 \ | |
716 "addl $8, %%eax \n\t"\ | |
717 "cmpl %5, %%eax \n\t"\ | |
718 " jb 1b \n\t" | |
719 | |
720 #ifdef HAVE_MMX2 | |
3126 | 721 #undef WRITEBGR24 |
2730 | 722 #define WRITEBGR24 WRITEBGR24MMX2 |
723 #else | |
3126 | 724 #undef WRITEBGR24 |
2730 | 725 #define WRITEBGR24 WRITEBGR24MMX |
726 #endif | |
727 | |
7723 | 728 #define WRITEYUY2 \ |
729 "packuswb %%mm3, %%mm3 \n\t"\ | |
730 "packuswb %%mm4, %%mm4 \n\t"\ | |
731 "packuswb %%mm7, %%mm1 \n\t"\ | |
732 "punpcklbw %%mm4, %%mm3 \n\t"\ | |
733 "movq %%mm1, %%mm7 \n\t"\ | |
734 "punpcklbw %%mm3, %%mm1 \n\t"\ | |
735 "punpckhbw %%mm3, %%mm7 \n\t"\ | |
736 \ | |
737 MOVNTQ(%%mm1, (%4, %%eax, 2))\ | |
738 MOVNTQ(%%mm7, 8(%4, %%eax, 2))\ | |
739 \ | |
740 "addl $8, %%eax \n\t"\ | |
741 "cmpl %5, %%eax \n\t"\ | |
742 " jb 1b \n\t" | |
743 | |
744 | |
3344 | 745 static inline void RENAME(yuv2yuvX)(int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize, |
746 int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize, | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
747 uint8_t *dest, uint8_t *uDest, uint8_t *vDest, int dstW, int chrDstW, |
3344 | 748 int16_t * lumMmxFilter, int16_t * chrMmxFilter) |
2519 | 749 { |
3344 | 750 #ifdef HAVE_MMX |
751 if(uDest != NULL) | |
752 { | |
753 asm volatile( | |
754 YSCALEYUV2YV12X(0) | |
755 :: "m" (-chrFilterSize), "r" (chrSrc+chrFilterSize), | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
756 "r" (chrMmxFilter+chrFilterSize*4), "r" (uDest), "m" (chrDstW) |
3344 | 757 : "%eax", "%edx", "%esi" |
758 ); | |
2519 | 759 |
3344 | 760 asm volatile( |
761 YSCALEYUV2YV12X(4096) | |
762 :: "m" (-chrFilterSize), "r" (chrSrc+chrFilterSize), | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
763 "r" (chrMmxFilter+chrFilterSize*4), "r" (vDest), "m" (chrDstW) |
3344 | 764 : "%eax", "%edx", "%esi" |
765 ); | |
766 } | |
2521 | 767 |
3344 | 768 asm volatile( |
769 YSCALEYUV2YV12X(0) | |
770 :: "m" (-lumFilterSize), "r" (lumSrc+lumFilterSize), | |
771 "r" (lumMmxFilter+lumFilterSize*4), "r" (dest), "m" (dstW) | |
772 : "%eax", "%edx", "%esi" | |
773 ); | |
774 #else | |
6540 | 775 yuv2yuvXinC(lumFilter, lumSrc, lumFilterSize, |
3352 | 776 chrFilter, chrSrc, chrFilterSize, |
6540 | 777 dest, uDest, vDest, dstW, chrDstW); |
3344 | 778 #endif |
779 } | |
780 | |
781 static inline void RENAME(yuv2yuv1)(int16_t *lumSrc, int16_t *chrSrc, | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
782 uint8_t *dest, uint8_t *uDest, uint8_t *vDest, int dstW, int chrDstW) |
3344 | 783 { |
784 #ifdef HAVE_MMX | |
785 if(uDest != NULL) | |
786 { | |
787 asm volatile( | |
788 YSCALEYUV2YV121 | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
789 :: "r" (chrSrc + chrDstW), "r" (uDest + chrDstW), |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
790 "g" (-chrDstW) |
3344 | 791 : "%eax" |
792 ); | |
793 | |
794 asm volatile( | |
795 YSCALEYUV2YV121 | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
796 :: "r" (chrSrc + 2048 + chrDstW), "r" (vDest + chrDstW), |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
797 "g" (-chrDstW) |
3344 | 798 : "%eax" |
799 ); | |
2519 | 800 } |
3344 | 801 |
802 asm volatile( | |
803 YSCALEYUV2YV121 | |
804 :: "r" (lumSrc + dstW), "r" (dest + dstW), | |
805 "g" (-dstW) | |
806 : "%eax" | |
807 ); | |
808 #else | |
809 int i; | |
810 for(i=0; i<dstW; i++) | |
811 { | |
812 int val= lumSrc[i]>>7; | |
6503 | 813 |
814 if(val&256){ | |
815 if(val<0) val=0; | |
816 else val=255; | |
817 } | |
3344 | 818 |
6503 | 819 dest[i]= val; |
3344 | 820 } |
821 | |
822 if(uDest != NULL) | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
823 for(i=0; i<chrDstW; i++) |
3344 | 824 { |
825 int u=chrSrc[i]>>7; | |
826 int v=chrSrc[i + 2048]>>7; | |
827 | |
6503 | 828 if((u|v)&256){ |
829 if(u<0) u=0; | |
830 else if (u>255) u=255; | |
831 if(v<0) v=0; | |
832 else if (v>255) v=255; | |
833 } | |
834 | |
835 uDest[i]= u; | |
836 vDest[i]= v; | |
3344 | 837 } |
838 #endif | |
2519 | 839 } |
840 | |
3344 | 841 |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
842 /** |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
843 * vertical scale YV12 to RGB |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
844 */ |
7723 | 845 static inline void RENAME(yuv2packedX)(SwsContext *c, int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize, |
3344 | 846 int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize, |
6578 | 847 uint8_t *dest, int dstW, int16_t * lumMmxFilter, int16_t * chrMmxFilter, int dstY) |
3344 | 848 { |
6578 | 849 switch(c->dstFormat) |
3344 | 850 { |
851 #ifdef HAVE_MMX | |
6578 | 852 case IMGFMT_BGR32: |
3344 | 853 { |
854 asm volatile( | |
855 YSCALEYUV2RGBX | |
856 WRITEBGR32 | |
857 | |
858 :: "m" (-lumFilterSize), "m" (-chrFilterSize), | |
859 "m" (lumMmxFilter+lumFilterSize*4), "m" (chrMmxFilter+chrFilterSize*4), | |
860 "r" (dest), "m" (dstW), | |
861 "m" (lumSrc+lumFilterSize), "m" (chrSrc+chrFilterSize) | |
862 : "%eax", "%ebx", "%ecx", "%edx", "%esi" | |
863 ); | |
864 } | |
6578 | 865 break; |
866 case IMGFMT_BGR24: | |
3344 | 867 { |
868 asm volatile( | |
869 YSCALEYUV2RGBX | |
870 "leal (%%eax, %%eax, 2), %%ebx \n\t" //FIXME optimize | |
871 "addl %4, %%ebx \n\t" | |
872 WRITEBGR24 | |
873 | |
874 :: "m" (-lumFilterSize), "m" (-chrFilterSize), | |
875 "m" (lumMmxFilter+lumFilterSize*4), "m" (chrMmxFilter+chrFilterSize*4), | |
876 "r" (dest), "m" (dstW), | |
877 "m" (lumSrc+lumFilterSize), "m" (chrSrc+chrFilterSize) | |
878 : "%eax", "%ebx", "%ecx", "%edx", "%esi" | |
879 ); | |
880 } | |
6578 | 881 break; |
882 case IMGFMT_BGR15: | |
3344 | 883 { |
884 asm volatile( | |
885 YSCALEYUV2RGBX | |
886 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
887 #ifdef DITHER1XBPP | |
4248 | 888 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
889 "paddusb "MANGLE(g5Dither)", %%mm4\n\t" | |
890 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
3344 | 891 #endif |
892 | |
893 WRITEBGR15 | |
894 | |
895 :: "m" (-lumFilterSize), "m" (-chrFilterSize), | |
896 "m" (lumMmxFilter+lumFilterSize*4), "m" (chrMmxFilter+chrFilterSize*4), | |
897 "r" (dest), "m" (dstW), | |
898 "m" (lumSrc+lumFilterSize), "m" (chrSrc+chrFilterSize) | |
899 : "%eax", "%ebx", "%ecx", "%edx", "%esi" | |
900 ); | |
901 } | |
6578 | 902 break; |
903 case IMGFMT_BGR16: | |
3344 | 904 { |
905 asm volatile( | |
906 YSCALEYUV2RGBX | |
907 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
908 #ifdef DITHER1XBPP | |
4248 | 909 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
910 "paddusb "MANGLE(g6Dither)", %%mm4\n\t" | |
911 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
3344 | 912 #endif |
913 | |
914 WRITEBGR16 | |
915 | |
916 :: "m" (-lumFilterSize), "m" (-chrFilterSize), | |
917 "m" (lumMmxFilter+lumFilterSize*4), "m" (chrMmxFilter+chrFilterSize*4), | |
918 "r" (dest), "m" (dstW), | |
919 "m" (lumSrc+lumFilterSize), "m" (chrSrc+chrFilterSize) | |
920 : "%eax", "%ebx", "%ecx", "%edx", "%esi" | |
921 ); | |
922 } | |
6578 | 923 break; |
7723 | 924 case IMGFMT_YUY2: |
925 { | |
926 asm volatile( | |
927 YSCALEYUV2PACKEDX | |
928 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
929 | |
930 "psraw $3, %%mm3 \n\t" | |
931 "psraw $3, %%mm4 \n\t" | |
932 "psraw $3, %%mm1 \n\t" | |
933 "psraw $3, %%mm7 \n\t" | |
934 WRITEYUY2 | |
935 | |
936 :: "m" (-lumFilterSize), "m" (-chrFilterSize), | |
937 "m" (lumMmxFilter+lumFilterSize*4), "m" (chrMmxFilter+chrFilterSize*4), | |
938 "r" (dest), "m" (dstW), | |
939 "m" (lumSrc+lumFilterSize), "m" (chrSrc+chrFilterSize) | |
940 : "%eax", "%ebx", "%ecx", "%edx", "%esi" | |
941 ); | |
942 } | |
943 break; | |
3344 | 944 #endif |
6578 | 945 default: |
7723 | 946 yuv2packedXinC(c, lumFilter, lumSrc, lumFilterSize, |
6578 | 947 chrFilter, chrSrc, chrFilterSize, |
948 dest, dstW, dstY); | |
949 break; | |
950 } | |
3344 | 951 } |
952 | |
953 /** | |
954 * vertical bilinear scale YV12 to RGB | |
955 */ | |
7723 | 956 static inline void RENAME(yuv2packed2)(SwsContext *c, uint16_t *buf0, uint16_t *buf1, uint16_t *uvbuf0, uint16_t *uvbuf1, |
6578 | 957 uint8_t *dest, int dstW, int yalpha, int uvalpha, int y) |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
958 { |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
959 int yalpha1=yalpha^4095; |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
960 int uvalpha1=uvalpha^4095; |
6578 | 961 int i; |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
962 |
6578 | 963 #if 0 //isnt used |
4467 | 964 if(flags&SWS_FULL_CHR_H_INT) |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
965 { |
6578 | 966 switch(dstFormat) |
967 { | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
968 #ifdef HAVE_MMX |
6578 | 969 case IMGFMT_BGR32: |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
970 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
971 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
972 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
973 FULL_YSCALEYUV2RGB |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
974 "punpcklbw %%mm1, %%mm3 \n\t" // BGBGBGBG |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
975 "punpcklbw %%mm7, %%mm0 \n\t" // R0R0R0R0 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
976 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
977 "movq %%mm3, %%mm1 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
978 "punpcklwd %%mm0, %%mm3 \n\t" // BGR0BGR0 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
979 "punpckhwd %%mm0, %%mm1 \n\t" // BGR0BGR0 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
980 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
981 MOVNTQ(%%mm3, (%4, %%eax, 4)) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
982 MOVNTQ(%%mm1, 8(%4, %%eax, 4)) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
983 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
984 "addl $4, %%eax \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
985 "cmpl %5, %%eax \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
986 " jb 1b \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
987 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
988 |
3209 | 989 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
990 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
991 : "%eax" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
992 ); |
6578 | 993 break; |
994 case IMGFMT_BGR24: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
995 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
996 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
997 FULL_YSCALEYUV2RGB |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
998 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
999 // lsb ... msb |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1000 "punpcklbw %%mm1, %%mm3 \n\t" // BGBGBGBG |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1001 "punpcklbw %%mm7, %%mm0 \n\t" // R0R0R0R0 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1002 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1003 "movq %%mm3, %%mm1 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1004 "punpcklwd %%mm0, %%mm3 \n\t" // BGR0BGR0 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1005 "punpckhwd %%mm0, %%mm1 \n\t" // BGR0BGR0 |
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 "movq %%mm3, %%mm2 \n\t" // BGR0BGR0 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1008 "psrlq $8, %%mm3 \n\t" // GR0BGR00 |
4248 | 1009 "pand "MANGLE(bm00000111)", %%mm2\n\t" // BGR00000 |
1010 "pand "MANGLE(bm11111000)", %%mm3\n\t" // 000BGR00 | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1011 "por %%mm2, %%mm3 \n\t" // BGRBGR00 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1012 "movq %%mm1, %%mm2 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1013 "psllq $48, %%mm1 \n\t" // 000000BG |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1014 "por %%mm1, %%mm3 \n\t" // BGRBGRBG |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1015 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1016 "movq %%mm2, %%mm1 \n\t" // BGR0BGR0 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1017 "psrld $16, %%mm2 \n\t" // R000R000 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1018 "psrlq $24, %%mm1 \n\t" // 0BGR0000 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1019 "por %%mm2, %%mm1 \n\t" // RBGRR000 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1020 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1021 "movl %4, %%ebx \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1022 "addl %%eax, %%ebx \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1023 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1024 #ifdef HAVE_MMX2 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1025 //FIXME Alignment |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1026 "movntq %%mm3, (%%ebx, %%eax, 2)\n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1027 "movntq %%mm1, 8(%%ebx, %%eax, 2)\n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1028 #else |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1029 "movd %%mm3, (%%ebx, %%eax, 2) \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1030 "psrlq $32, %%mm3 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1031 "movd %%mm3, 4(%%ebx, %%eax, 2) \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1032 "movd %%mm1, 8(%%ebx, %%eax, 2) \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1033 #endif |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1034 "addl $4, %%eax \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1035 "cmpl %5, %%eax \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1036 " jb 1b \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1037 |
3209 | 1038 :: "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
|
1039 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1040 : "%eax", "%ebx" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1041 ); |
6578 | 1042 break; |
1043 case IMGFMT_BGR15: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1044 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1045 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1046 FULL_YSCALEYUV2RGB |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1047 #ifdef DITHER1XBPP |
4248 | 1048 "paddusb "MANGLE(g5Dither)", %%mm1\n\t" |
1049 "paddusb "MANGLE(r5Dither)", %%mm0\n\t" | |
1050 "paddusb "MANGLE(b5Dither)", %%mm3\n\t" | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1051 #endif |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1052 "punpcklbw %%mm7, %%mm1 \n\t" // 0G0G0G0G |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1053 "punpcklbw %%mm7, %%mm3 \n\t" // 0B0B0B0B |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1054 "punpcklbw %%mm7, %%mm0 \n\t" // 0R0R0R0R |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1055 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1056 "psrlw $3, %%mm3 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1057 "psllw $2, %%mm1 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1058 "psllw $7, %%mm0 \n\t" |
4248 | 1059 "pand "MANGLE(g15Mask)", %%mm1 \n\t" |
1060 "pand "MANGLE(r15Mask)", %%mm0 \n\t" | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1061 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1062 "por %%mm3, %%mm1 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1063 "por %%mm1, %%mm0 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1064 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1065 MOVNTQ(%%mm0, (%4, %%eax, 2)) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1066 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1067 "addl $4, %%eax \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1068 "cmpl %5, %%eax \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1069 " jb 1b \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1070 |
3209 | 1071 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1072 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1073 : "%eax" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1074 ); |
6578 | 1075 break; |
1076 case IMGFMT_BGR16: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1077 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1078 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1079 FULL_YSCALEYUV2RGB |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1080 #ifdef DITHER1XBPP |
4248 | 1081 "paddusb "MANGLE(g6Dither)", %%mm1\n\t" |
1082 "paddusb "MANGLE(r5Dither)", %%mm0\n\t" | |
1083 "paddusb "MANGLE(b5Dither)", %%mm3\n\t" | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1084 #endif |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1085 "punpcklbw %%mm7, %%mm1 \n\t" // 0G0G0G0G |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1086 "punpcklbw %%mm7, %%mm3 \n\t" // 0B0B0B0B |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1087 "punpcklbw %%mm7, %%mm0 \n\t" // 0R0R0R0R |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1088 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1089 "psrlw $3, %%mm3 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1090 "psllw $3, %%mm1 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1091 "psllw $8, %%mm0 \n\t" |
4248 | 1092 "pand "MANGLE(g16Mask)", %%mm1 \n\t" |
1093 "pand "MANGLE(r16Mask)", %%mm0 \n\t" | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1094 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1095 "por %%mm3, %%mm1 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1096 "por %%mm1, %%mm0 \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1097 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1098 MOVNTQ(%%mm0, (%4, %%eax, 2)) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1099 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1100 "addl $4, %%eax \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1101 "cmpl %5, %%eax \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1102 " jb 1b \n\t" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1103 |
3209 | 1104 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1105 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1106 : "%eax" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1107 ); |
6578 | 1108 break; |
1109 #endif | |
1110 case IMGFMT_RGB32: | |
1111 #ifndef HAVE_MMX | |
1112 case IMGFMT_BGR32: | |
1113 #endif | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1114 if(dstFormat==IMGFMT_BGR32) |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1115 { |
4794 | 1116 int i; |
4793 | 1117 #ifdef WORDS_BIGENDIAN |
1118 dest++; | |
1119 #endif | |
3209 | 1120 for(i=0;i<dstW;i++){ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1121 // vertical linear interpolation && yuv2rgb in a single step: |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1122 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
|
1123 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
|
1124 int V=((uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19); |
2503 | 1125 dest[0]=clip_table[((Y + yuvtab_40cf[U]) >>13)]; |
1126 dest[1]=clip_table[((Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13)]; | |
1127 dest[2]=clip_table[((Y + yuvtab_3343[V]) >>13)]; | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1128 dest+= 4; |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1129 } |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1130 } |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1131 else if(dstFormat==IMGFMT_BGR24) |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1132 { |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1133 int i; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1134 for(i=0;i<dstW;i++){ |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1135 // vertical linear interpolation && yuv2rgb in a single step: |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1136 int Y=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)]; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1137 int U=((uvbuf0[i]*uvalpha1+uvbuf1[i]*uvalpha)>>19); |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1138 int V=((uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19); |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1139 dest[0]=clip_table[((Y + yuvtab_40cf[U]) >>13)]; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1140 dest[1]=clip_table[((Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13)]; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1141 dest[2]=clip_table[((Y + yuvtab_3343[V]) >>13)]; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1142 dest+= 3; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1143 } |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1144 } |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1145 else if(dstFormat==IMGFMT_BGR16) |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1146 { |
2671 | 1147 int i; |
3209 | 1148 for(i=0;i<dstW;i++){ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1149 // vertical linear interpolation && yuv2rgb in a single step: |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1150 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
|
1151 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
|
1152 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
|
1153 |
2572
f2353173d52c
c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents:
2569
diff
changeset
|
1154 ((uint16_t*)dest)[i] = |
2584 | 1155 clip_table16b[(Y + yuvtab_40cf[U]) >>13] | |
1156 clip_table16g[(Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13] | | |
1157 clip_table16r[(Y + yuvtab_3343[V]) >>13]; | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1158 } |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1159 } |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
1160 else if(dstFormat==IMGFMT_BGR15) |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1161 { |
2671 | 1162 int i; |
3209 | 1163 for(i=0;i<dstW;i++){ |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1164 // vertical linear interpolation && yuv2rgb in a single step: |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1165 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
|
1166 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
|
1167 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
|
1168 |
2572
f2353173d52c
c optimizations (array is faster than pointer) (16bpp variants tested and 2% faster)
michael
parents:
2569
diff
changeset
|
1169 ((uint16_t*)dest)[i] = |
2584 | 1170 clip_table15b[(Y + yuvtab_40cf[U]) >>13] | |
1171 clip_table15g[(Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13] | | |
1172 clip_table15r[(Y + yuvtab_3343[V]) >>13]; | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1173 } |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1174 } |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1175 }//FULL_UV_IPOL |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1176 else |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1177 { |
6578 | 1178 #endif // if 0 |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1179 #ifdef HAVE_MMX |
6578 | 1180 switch(c->dstFormat) |
1181 { | |
1182 case IMGFMT_BGR32: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1183 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1184 YSCALEYUV2RGB |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1185 WRITEBGR32 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1186 |
3209 | 1187 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1188 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1189 : "%eax" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1190 ); |
6578 | 1191 return; |
1192 case IMGFMT_BGR24: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1193 asm volatile( |
2728 | 1194 "movl %4, %%ebx \n\t" |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1195 YSCALEYUV2RGB |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1196 WRITEBGR24 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1197 |
3209 | 1198 :: "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
|
1199 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1200 : "%eax", "%ebx" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1201 ); |
6578 | 1202 return; |
1203 case IMGFMT_BGR15: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1204 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1205 YSCALEYUV2RGB |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1206 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1207 #ifdef DITHER1XBPP |
4248 | 1208 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
1209 "paddusb "MANGLE(g5Dither)", %%mm4\n\t" | |
1210 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1211 #endif |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1212 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1213 WRITEBGR15 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1214 |
3209 | 1215 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1216 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1217 : "%eax" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1218 ); |
6578 | 1219 return; |
1220 case IMGFMT_BGR16: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1221 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1222 YSCALEYUV2RGB |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1223 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1224 #ifdef DITHER1XBPP |
4248 | 1225 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
1226 "paddusb "MANGLE(g6Dither)", %%mm4\n\t" | |
1227 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1228 #endif |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1229 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1230 WRITEBGR16 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1231 |
3209 | 1232 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1233 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1234 : "%eax" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1235 ); |
6578 | 1236 return; |
7723 | 1237 case IMGFMT_YUY2: |
1238 asm volatile( | |
1239 YSCALEYUV2PACKED | |
1240 WRITEYUY2 | |
1241 | |
1242 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), | |
1243 "m" (yalpha1), "m" (uvalpha1) | |
1244 : "%eax" | |
1245 ); | |
1246 return; | |
6578 | 1247 default: break; |
1248 } | |
1249 #endif //HAVE_MMX | |
7723 | 1250 YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB2_C, YSCALE_YUV_2_PACKED2_C) |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1251 } |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1252 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1253 /** |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1254 * YV12 to RGB without scaling or interpolating |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1255 */ |
7723 | 1256 static inline void RENAME(yuv2packed1)(SwsContext *c, uint16_t *buf0, uint16_t *uvbuf0, uint16_t *uvbuf1, |
6578 | 1257 uint8_t *dest, int dstW, int uvalpha, int dstFormat, int flags, int y) |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1258 { |
8254
772d6d27fd66
warning patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
michael
parents:
7723
diff
changeset
|
1259 #ifdef HAVE_MMX |
2671 | 1260 int uvalpha1=uvalpha^4095; |
8254
772d6d27fd66
warning patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
michael
parents:
7723
diff
changeset
|
1261 #endif |
3344 | 1262 const int yalpha1=0; |
6578 | 1263 int i; |
1264 | |
1265 uint16_t *buf1= buf0; //FIXME needed for the rgb1/bgr1 | |
1266 const int yalpha= 4096; //FIXME ... | |
2671 | 1267 |
4467 | 1268 if(flags&SWS_FULL_CHR_H_INT) |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1269 { |
7723 | 1270 RENAME(yuv2packed2)(c, buf0, buf0, uvbuf0, uvbuf1, dest, dstW, 0, uvalpha, y); |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1271 return; |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1272 } |
2576 | 1273 |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1274 #ifdef HAVE_MMX |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1275 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
|
1276 { |
6578 | 1277 switch(dstFormat) |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1278 { |
6578 | 1279 case IMGFMT_BGR32: |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1280 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1281 YSCALEYUV2RGB1 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1282 WRITEBGR32 |
3344 | 1283 :: "r" (buf0), "r" (buf0), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1284 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1285 : "%eax" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1286 ); |
6578 | 1287 return; |
1288 case IMGFMT_BGR24: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1289 asm volatile( |
2728 | 1290 "movl %4, %%ebx \n\t" |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1291 YSCALEYUV2RGB1 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1292 WRITEBGR24 |
3344 | 1293 :: "r" (buf0), "r" (buf0), "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
|
1294 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1295 : "%eax", "%ebx" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1296 ); |
6578 | 1297 return; |
1298 case IMGFMT_BGR15: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1299 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1300 YSCALEYUV2RGB1 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1301 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1302 #ifdef DITHER1XBPP |
4248 | 1303 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
1304 "paddusb "MANGLE(g5Dither)", %%mm4\n\t" | |
1305 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1306 #endif |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1307 WRITEBGR15 |
3344 | 1308 :: "r" (buf0), "r" (buf0), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1309 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1310 : "%eax" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1311 ); |
6578 | 1312 return; |
1313 case IMGFMT_BGR16: | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1314 asm volatile( |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1315 YSCALEYUV2RGB1 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1316 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1317 #ifdef DITHER1XBPP |
4248 | 1318 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
1319 "paddusb "MANGLE(g6Dither)", %%mm4\n\t" | |
1320 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1321 #endif |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1322 |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1323 WRITEBGR16 |
3344 | 1324 :: "r" (buf0), "r" (buf0), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1325 "m" (yalpha1), "m" (uvalpha1) |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1326 : "%eax" |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1327 ); |
6578 | 1328 return; |
7723 | 1329 case IMGFMT_YUY2: |
1330 asm volatile( | |
1331 YSCALEYUV2PACKED1 | |
1332 WRITEYUY2 | |
1333 :: "r" (buf0), "r" (buf0), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), | |
1334 "m" (yalpha1), "m" (uvalpha1) | |
1335 : "%eax" | |
1336 ); | |
1337 return; | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1338 } |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1339 } |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1340 else |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1341 { |
6578 | 1342 switch(dstFormat) |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1343 { |
6578 | 1344 case IMGFMT_BGR32: |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1345 asm volatile( |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1346 YSCALEYUV2RGB1b |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1347 WRITEBGR32 |
3344 | 1348 :: "r" (buf0), "r" (buf0), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1349 "m" (yalpha1), "m" (uvalpha1) |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1350 : "%eax" |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1351 ); |
6578 | 1352 return; |
1353 case IMGFMT_BGR24: | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1354 asm volatile( |
2728 | 1355 "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
|
1356 YSCALEYUV2RGB1b |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1357 WRITEBGR24 |
3344 | 1358 :: "r" (buf0), "r" (buf0), "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
|
1359 "m" (yalpha1), "m" (uvalpha1) |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1360 : "%eax", "%ebx" |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1361 ); |
6578 | 1362 return; |
1363 case IMGFMT_BGR15: | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1364 asm volatile( |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1365 YSCALEYUV2RGB1b |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1366 /* 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
|
1367 #ifdef DITHER1XBPP |
4248 | 1368 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
1369 "paddusb "MANGLE(g5Dither)", %%mm4\n\t" | |
1370 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1371 #endif |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1372 WRITEBGR15 |
3344 | 1373 :: "r" (buf0), "r" (buf0), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1374 "m" (yalpha1), "m" (uvalpha1) |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1375 : "%eax" |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1376 ); |
6578 | 1377 return; |
1378 case IMGFMT_BGR16: | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1379 asm volatile( |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1380 YSCALEYUV2RGB1b |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1381 /* 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
|
1382 #ifdef DITHER1XBPP |
4248 | 1383 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
1384 "paddusb "MANGLE(g6Dither)", %%mm4\n\t" | |
1385 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1386 #endif |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1387 |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1388 WRITEBGR16 |
3344 | 1389 :: "r" (buf0), "r" (buf0), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1390 "m" (yalpha1), "m" (uvalpha1) |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1391 : "%eax" |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1392 ); |
6578 | 1393 return; |
7723 | 1394 case IMGFMT_YUY2: |
1395 asm volatile( | |
1396 YSCALEYUV2PACKED1b | |
1397 WRITEYUY2 | |
1398 :: "r" (buf0), "r" (buf0), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), | |
1399 "m" (yalpha1), "m" (uvalpha1) | |
1400 : "%eax" | |
1401 ); | |
1402 return; | |
2569
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1403 } |
30b736e7feef
interpolate chrominance for every second line in the 1:1 vertical scale function
michael
parents:
2566
diff
changeset
|
1404 } |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1405 #endif |
6578 | 1406 if( uvalpha < 2048 ) |
1407 { | |
7723 | 1408 YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB1_C, YSCALE_YUV_2_PACKED1_C) |
6578 | 1409 }else{ |
7723 | 1410 YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB1B_C, YSCALE_YUV_2_PACKED1B_C) |
6578 | 1411 } |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1412 } |
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
1413 |
4481 | 1414 //FIXME yuy2* can read upto 7 samples to much |
1415 | |
4467 | 1416 static inline void RENAME(yuy2ToY)(uint8_t *dst, uint8_t *src, int width) |
1417 { | |
4481 | 1418 #ifdef HAVE_MMX |
1419 asm volatile( | |
1420 "movq "MANGLE(bm01010101)", %%mm2\n\t" | |
1421 "movl %0, %%eax \n\t" | |
1422 "1: \n\t" | |
1423 "movq (%1, %%eax,2), %%mm0 \n\t" | |
1424 "movq 8(%1, %%eax,2), %%mm1 \n\t" | |
1425 "pand %%mm2, %%mm0 \n\t" | |
1426 "pand %%mm2, %%mm1 \n\t" | |
1427 "packuswb %%mm1, %%mm0 \n\t" | |
1428 "movq %%mm0, (%2, %%eax) \n\t" | |
1429 "addl $8, %%eax \n\t" | |
1430 " js 1b \n\t" | |
1431 : : "g" (-width), "r" (src+width*2), "r" (dst+width) | |
1432 : "%eax" | |
1433 ); | |
4467 | 1434 #else |
1435 int i; | |
1436 for(i=0; i<width; i++) | |
1437 dst[i]= src[2*i]; | |
1438 #endif | |
1439 } | |
1440 | |
1441 static inline void RENAME(yuy2ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
1442 { | |
4481 | 1443 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
1444 asm volatile( | |
1445 "movq "MANGLE(bm01010101)", %%mm4\n\t" | |
1446 "movl %0, %%eax \n\t" | |
1447 "1: \n\t" | |
1448 "movq (%1, %%eax,4), %%mm0 \n\t" | |
1449 "movq 8(%1, %%eax,4), %%mm1 \n\t" | |
1450 "movq (%2, %%eax,4), %%mm2 \n\t" | |
1451 "movq 8(%2, %%eax,4), %%mm3 \n\t" | |
1452 PAVGB(%%mm2, %%mm0) | |
1453 PAVGB(%%mm3, %%mm1) | |
1454 "psrlw $8, %%mm0 \n\t" | |
1455 "psrlw $8, %%mm1 \n\t" | |
1456 "packuswb %%mm1, %%mm0 \n\t" | |
1457 "movq %%mm0, %%mm1 \n\t" | |
1458 "psrlw $8, %%mm0 \n\t" | |
1459 "pand %%mm4, %%mm1 \n\t" | |
1460 "packuswb %%mm0, %%mm0 \n\t" | |
1461 "packuswb %%mm1, %%mm1 \n\t" | |
1462 "movd %%mm0, (%4, %%eax) \n\t" | |
1463 "movd %%mm1, (%3, %%eax) \n\t" | |
1464 "addl $4, %%eax \n\t" | |
1465 " js 1b \n\t" | |
1466 : : "g" (-width), "r" (src1+width*4), "r" (src2+width*4), "r" (dstU+width), "r" (dstV+width) | |
1467 : "%eax" | |
1468 ); | |
4467 | 1469 #else |
1470 int i; | |
1471 for(i=0; i<width; i++) | |
1472 { | |
1473 dstU[i]= (src1[4*i + 1] + src2[4*i + 1])>>1; | |
1474 dstV[i]= (src1[4*i + 3] + src2[4*i + 3])>>1; | |
1475 } | |
1476 #endif | |
1477 } | |
1478 | |
1479 static inline void RENAME(bgr32ToY)(uint8_t *dst, uint8_t *src, int width) | |
1480 { | |
1481 #ifdef HAVE_MMXFIXME | |
1482 #else | |
1483 int i; | |
1484 for(i=0; i<width; i++) | |
1485 { | |
1486 int b= src[i*4+0]; | |
1487 int g= src[i*4+1]; | |
1488 int r= src[i*4+2]; | |
1489 | |
1490 dst[i]= ((RY*r + GY*g + BY*b)>>RGB2YUV_SHIFT) + 16; | |
1491 } | |
1492 #endif | |
1493 } | |
1494 | |
1495 static inline void RENAME(bgr32ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
1496 { | |
1497 #ifdef HAVE_MMXFIXME | |
1498 #else | |
1499 int i; | |
1500 for(i=0; i<width; i++) | |
1501 { | |
1502 int b= src1[8*i + 0] + src1[8*i + 4] + src2[8*i + 0] + src2[8*i + 4]; | |
1503 int g= src1[8*i + 1] + src1[8*i + 5] + src2[8*i + 1] + src2[8*i + 5]; | |
1504 int r= src1[8*i + 2] + src1[8*i + 6] + src2[8*i + 2] + src2[8*i + 6]; | |
1505 | |
1506 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1507 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1508 } | |
1509 #endif | |
1510 } | |
1511 | |
1512 static inline void RENAME(bgr24ToY)(uint8_t *dst, uint8_t *src, int width) | |
1513 { | |
4612 | 1514 #ifdef HAVE_MMX |
1515 asm volatile( | |
1516 "movl %2, %%eax \n\t" | |
4923 | 1517 "movq "MANGLE(bgr2YCoeff)", %%mm6 \n\t" |
1518 "movq "MANGLE(w1111)", %%mm5 \n\t" | |
4612 | 1519 "pxor %%mm7, %%mm7 \n\t" |
1520 "leal (%%eax, %%eax, 2), %%ebx \n\t" | |
1521 ".balign 16 \n\t" | |
1522 "1: \n\t" | |
1523 PREFETCH" 64(%0, %%ebx) \n\t" | |
1524 "movd (%0, %%ebx), %%mm0 \n\t" | |
1525 "movd 3(%0, %%ebx), %%mm1 \n\t" | |
1526 "punpcklbw %%mm7, %%mm0 \n\t" | |
1527 "punpcklbw %%mm7, %%mm1 \n\t" | |
1528 "movd 6(%0, %%ebx), %%mm2 \n\t" | |
1529 "movd 9(%0, %%ebx), %%mm3 \n\t" | |
1530 "punpcklbw %%mm7, %%mm2 \n\t" | |
1531 "punpcklbw %%mm7, %%mm3 \n\t" | |
1532 "pmaddwd %%mm6, %%mm0 \n\t" | |
1533 "pmaddwd %%mm6, %%mm1 \n\t" | |
1534 "pmaddwd %%mm6, %%mm2 \n\t" | |
1535 "pmaddwd %%mm6, %%mm3 \n\t" | |
1536 #ifndef FAST_BGR2YV12 | |
1537 "psrad $8, %%mm0 \n\t" | |
1538 "psrad $8, %%mm1 \n\t" | |
1539 "psrad $8, %%mm2 \n\t" | |
1540 "psrad $8, %%mm3 \n\t" | |
1541 #endif | |
1542 "packssdw %%mm1, %%mm0 \n\t" | |
1543 "packssdw %%mm3, %%mm2 \n\t" | |
1544 "pmaddwd %%mm5, %%mm0 \n\t" | |
1545 "pmaddwd %%mm5, %%mm2 \n\t" | |
1546 "packssdw %%mm2, %%mm0 \n\t" | |
1547 "psraw $7, %%mm0 \n\t" | |
1548 | |
1549 "movd 12(%0, %%ebx), %%mm4 \n\t" | |
1550 "movd 15(%0, %%ebx), %%mm1 \n\t" | |
1551 "punpcklbw %%mm7, %%mm4 \n\t" | |
1552 "punpcklbw %%mm7, %%mm1 \n\t" | |
1553 "movd 18(%0, %%ebx), %%mm2 \n\t" | |
1554 "movd 21(%0, %%ebx), %%mm3 \n\t" | |
1555 "punpcklbw %%mm7, %%mm2 \n\t" | |
1556 "punpcklbw %%mm7, %%mm3 \n\t" | |
1557 "pmaddwd %%mm6, %%mm4 \n\t" | |
1558 "pmaddwd %%mm6, %%mm1 \n\t" | |
1559 "pmaddwd %%mm6, %%mm2 \n\t" | |
1560 "pmaddwd %%mm6, %%mm3 \n\t" | |
1561 #ifndef FAST_BGR2YV12 | |
1562 "psrad $8, %%mm4 \n\t" | |
1563 "psrad $8, %%mm1 \n\t" | |
1564 "psrad $8, %%mm2 \n\t" | |
1565 "psrad $8, %%mm3 \n\t" | |
1566 #endif | |
1567 "packssdw %%mm1, %%mm4 \n\t" | |
1568 "packssdw %%mm3, %%mm2 \n\t" | |
1569 "pmaddwd %%mm5, %%mm4 \n\t" | |
1570 "pmaddwd %%mm5, %%mm2 \n\t" | |
1571 "addl $24, %%ebx \n\t" | |
1572 "packssdw %%mm2, %%mm4 \n\t" | |
1573 "psraw $7, %%mm4 \n\t" | |
1574 | |
1575 "packuswb %%mm4, %%mm0 \n\t" | |
4923 | 1576 "paddusb "MANGLE(bgr2YOffset)", %%mm0 \n\t" |
4612 | 1577 |
4619 | 1578 "movq %%mm0, (%1, %%eax) \n\t" |
4612 | 1579 "addl $8, %%eax \n\t" |
1580 " js 1b \n\t" | |
1581 : : "r" (src+width*3), "r" (dst+width), "g" (-width) | |
1582 : "%eax", "%ebx" | |
1583 ); | |
4467 | 1584 #else |
1585 int i; | |
1586 for(i=0; i<width; i++) | |
1587 { | |
1588 int b= src[i*3+0]; | |
1589 int g= src[i*3+1]; | |
1590 int r= src[i*3+2]; | |
1591 | |
1592 dst[i]= ((RY*r + GY*g + BY*b)>>RGB2YUV_SHIFT) + 16; | |
1593 } | |
1594 #endif | |
1595 } | |
1596 | |
1597 static inline void RENAME(bgr24ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
1598 { | |
4619 | 1599 #ifdef HAVE_MMX |
1600 asm volatile( | |
1601 "movl %4, %%eax \n\t" | |
4923 | 1602 "movq "MANGLE(w1111)", %%mm5 \n\t" |
1603 "movq "MANGLE(bgr2UCoeff)", %%mm6 \n\t" | |
4619 | 1604 "pxor %%mm7, %%mm7 \n\t" |
1605 "leal (%%eax, %%eax, 2), %%ebx \n\t" | |
1606 "addl %%ebx, %%ebx \n\t" | |
1607 ".balign 16 \n\t" | |
1608 "1: \n\t" | |
1609 PREFETCH" 64(%0, %%ebx) \n\t" | |
1610 PREFETCH" 64(%1, %%ebx) \n\t" | |
1611 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) | |
1612 "movq (%0, %%ebx), %%mm0 \n\t" | |
1613 "movq (%1, %%ebx), %%mm1 \n\t" | |
1614 "movq 6(%0, %%ebx), %%mm2 \n\t" | |
1615 "movq 6(%1, %%ebx), %%mm3 \n\t" | |
1616 PAVGB(%%mm1, %%mm0) | |
1617 PAVGB(%%mm3, %%mm2) | |
1618 "movq %%mm0, %%mm1 \n\t" | |
1619 "movq %%mm2, %%mm3 \n\t" | |
1620 "psrlq $24, %%mm0 \n\t" | |
1621 "psrlq $24, %%mm2 \n\t" | |
1622 PAVGB(%%mm1, %%mm0) | |
1623 PAVGB(%%mm3, %%mm2) | |
1624 "punpcklbw %%mm7, %%mm0 \n\t" | |
1625 "punpcklbw %%mm7, %%mm2 \n\t" | |
1626 #else | |
1627 "movd (%0, %%ebx), %%mm0 \n\t" | |
1628 "movd (%1, %%ebx), %%mm1 \n\t" | |
1629 "movd 3(%0, %%ebx), %%mm2 \n\t" | |
1630 "movd 3(%1, %%ebx), %%mm3 \n\t" | |
1631 "punpcklbw %%mm7, %%mm0 \n\t" | |
1632 "punpcklbw %%mm7, %%mm1 \n\t" | |
1633 "punpcklbw %%mm7, %%mm2 \n\t" | |
1634 "punpcklbw %%mm7, %%mm3 \n\t" | |
1635 "paddw %%mm1, %%mm0 \n\t" | |
1636 "paddw %%mm3, %%mm2 \n\t" | |
1637 "paddw %%mm2, %%mm0 \n\t" | |
1638 "movd 6(%0, %%ebx), %%mm4 \n\t" | |
1639 "movd 6(%1, %%ebx), %%mm1 \n\t" | |
1640 "movd 9(%0, %%ebx), %%mm2 \n\t" | |
1641 "movd 9(%1, %%ebx), %%mm3 \n\t" | |
1642 "punpcklbw %%mm7, %%mm4 \n\t" | |
1643 "punpcklbw %%mm7, %%mm1 \n\t" | |
1644 "punpcklbw %%mm7, %%mm2 \n\t" | |
1645 "punpcklbw %%mm7, %%mm3 \n\t" | |
1646 "paddw %%mm1, %%mm4 \n\t" | |
1647 "paddw %%mm3, %%mm2 \n\t" | |
1648 "paddw %%mm4, %%mm2 \n\t" | |
1649 "psrlw $2, %%mm0 \n\t" | |
1650 "psrlw $2, %%mm2 \n\t" | |
1651 #endif | |
4923 | 1652 "movq "MANGLE(bgr2VCoeff)", %%mm1 \n\t" |
1653 "movq "MANGLE(bgr2VCoeff)", %%mm3 \n\t" | |
4619 | 1654 |
1655 "pmaddwd %%mm0, %%mm1 \n\t" | |
1656 "pmaddwd %%mm2, %%mm3 \n\t" | |
1657 "pmaddwd %%mm6, %%mm0 \n\t" | |
1658 "pmaddwd %%mm6, %%mm2 \n\t" | |
1659 #ifndef FAST_BGR2YV12 | |
1660 "psrad $8, %%mm0 \n\t" | |
1661 "psrad $8, %%mm1 \n\t" | |
1662 "psrad $8, %%mm2 \n\t" | |
1663 "psrad $8, %%mm3 \n\t" | |
1664 #endif | |
1665 "packssdw %%mm2, %%mm0 \n\t" | |
1666 "packssdw %%mm3, %%mm1 \n\t" | |
1667 "pmaddwd %%mm5, %%mm0 \n\t" | |
1668 "pmaddwd %%mm5, %%mm1 \n\t" | |
1669 "packssdw %%mm1, %%mm0 \n\t" // V1 V0 U1 U0 | |
1670 "psraw $7, %%mm0 \n\t" | |
1671 | |
1672 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) | |
1673 "movq 12(%0, %%ebx), %%mm4 \n\t" | |
1674 "movq 12(%1, %%ebx), %%mm1 \n\t" | |
1675 "movq 18(%0, %%ebx), %%mm2 \n\t" | |
1676 "movq 18(%1, %%ebx), %%mm3 \n\t" | |
1677 PAVGB(%%mm1, %%mm4) | |
1678 PAVGB(%%mm3, %%mm2) | |
1679 "movq %%mm4, %%mm1 \n\t" | |
1680 "movq %%mm2, %%mm3 \n\t" | |
1681 "psrlq $24, %%mm4 \n\t" | |
1682 "psrlq $24, %%mm2 \n\t" | |
1683 PAVGB(%%mm1, %%mm4) | |
1684 PAVGB(%%mm3, %%mm2) | |
1685 "punpcklbw %%mm7, %%mm4 \n\t" | |
1686 "punpcklbw %%mm7, %%mm2 \n\t" | |
1687 #else | |
1688 "movd 12(%0, %%ebx), %%mm4 \n\t" | |
1689 "movd 12(%1, %%ebx), %%mm1 \n\t" | |
1690 "movd 15(%0, %%ebx), %%mm2 \n\t" | |
1691 "movd 15(%1, %%ebx), %%mm3 \n\t" | |
1692 "punpcklbw %%mm7, %%mm4 \n\t" | |
1693 "punpcklbw %%mm7, %%mm1 \n\t" | |
1694 "punpcklbw %%mm7, %%mm2 \n\t" | |
1695 "punpcklbw %%mm7, %%mm3 \n\t" | |
1696 "paddw %%mm1, %%mm4 \n\t" | |
1697 "paddw %%mm3, %%mm2 \n\t" | |
1698 "paddw %%mm2, %%mm4 \n\t" | |
1699 "movd 18(%0, %%ebx), %%mm5 \n\t" | |
1700 "movd 18(%1, %%ebx), %%mm1 \n\t" | |
1701 "movd 21(%0, %%ebx), %%mm2 \n\t" | |
1702 "movd 21(%1, %%ebx), %%mm3 \n\t" | |
1703 "punpcklbw %%mm7, %%mm5 \n\t" | |
1704 "punpcklbw %%mm7, %%mm1 \n\t" | |
1705 "punpcklbw %%mm7, %%mm2 \n\t" | |
1706 "punpcklbw %%mm7, %%mm3 \n\t" | |
1707 "paddw %%mm1, %%mm5 \n\t" | |
1708 "paddw %%mm3, %%mm2 \n\t" | |
1709 "paddw %%mm5, %%mm2 \n\t" | |
4923 | 1710 "movq "MANGLE(w1111)", %%mm5 \n\t" |
4619 | 1711 "psrlw $2, %%mm4 \n\t" |
1712 "psrlw $2, %%mm2 \n\t" | |
1713 #endif | |
4923 | 1714 "movq "MANGLE(bgr2VCoeff)", %%mm1 \n\t" |
1715 "movq "MANGLE(bgr2VCoeff)", %%mm3 \n\t" | |
4619 | 1716 |
1717 "pmaddwd %%mm4, %%mm1 \n\t" | |
1718 "pmaddwd %%mm2, %%mm3 \n\t" | |
1719 "pmaddwd %%mm6, %%mm4 \n\t" | |
1720 "pmaddwd %%mm6, %%mm2 \n\t" | |
1721 #ifndef FAST_BGR2YV12 | |
1722 "psrad $8, %%mm4 \n\t" | |
1723 "psrad $8, %%mm1 \n\t" | |
1724 "psrad $8, %%mm2 \n\t" | |
1725 "psrad $8, %%mm3 \n\t" | |
1726 #endif | |
1727 "packssdw %%mm2, %%mm4 \n\t" | |
1728 "packssdw %%mm3, %%mm1 \n\t" | |
1729 "pmaddwd %%mm5, %%mm4 \n\t" | |
1730 "pmaddwd %%mm5, %%mm1 \n\t" | |
1731 "addl $24, %%ebx \n\t" | |
1732 "packssdw %%mm1, %%mm4 \n\t" // V3 V2 U3 U2 | |
1733 "psraw $7, %%mm4 \n\t" | |
1734 | |
1735 "movq %%mm0, %%mm1 \n\t" | |
1736 "punpckldq %%mm4, %%mm0 \n\t" | |
1737 "punpckhdq %%mm4, %%mm1 \n\t" | |
1738 "packsswb %%mm1, %%mm0 \n\t" | |
4923 | 1739 "paddb "MANGLE(bgr2UVOffset)", %%mm0 \n\t" |
4619 | 1740 |
1741 "movd %%mm0, (%2, %%eax) \n\t" | |
1742 "punpckhdq %%mm0, %%mm0 \n\t" | |
1743 "movd %%mm0, (%3, %%eax) \n\t" | |
1744 "addl $4, %%eax \n\t" | |
1745 " js 1b \n\t" | |
1746 : : "r" (src1+width*6), "r" (src2+width*6), "r" (dstU+width), "r" (dstV+width), "g" (-width) | |
1747 : "%eax", "%ebx" | |
1748 ); | |
4467 | 1749 #else |
1750 int i; | |
1751 for(i=0; i<width; i++) | |
1752 { | |
1753 int b= src1[6*i + 0] + src1[6*i + 3] + src2[6*i + 0] + src2[6*i + 3]; | |
1754 int g= src1[6*i + 1] + src1[6*i + 4] + src2[6*i + 1] + src2[6*i + 4]; | |
1755 int r= src1[6*i + 2] + src1[6*i + 5] + src2[6*i + 2] + src2[6*i + 5]; | |
1756 | |
1757 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1758 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1759 } | |
1760 #endif | |
1761 } | |
1762 | |
4578 | 1763 static inline void RENAME(bgr16ToY)(uint8_t *dst, uint8_t *src, int width) |
1764 { | |
1765 int i; | |
1766 for(i=0; i<width; i++) | |
1767 { | |
1768 int d= src[i*2] + (src[i*2+1]<<8); | |
1769 int b= d&0x1F; | |
1770 int g= (d>>5)&0x3F; | |
1771 int r= (d>>11)&0x1F; | |
1772 | |
1773 dst[i]= ((2*RY*r + GY*g + 2*BY*b)>>(RGB2YUV_SHIFT-2)) + 16; | |
1774 } | |
1775 } | |
1776 | |
1777 static inline void RENAME(bgr16ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
1778 { | |
1779 int i; | |
1780 for(i=0; i<width; i++) | |
1781 { | |
4579 | 1782 #if 1 |
1783 int d0= le2me_32( ((uint32_t*)src1)[i] ); | |
1784 int d1= le2me_32( ((uint32_t*)src2)[i] ); | |
1785 | |
1786 int dl= (d0&0x07E0F81F) + (d1&0x07E0F81F); | |
1787 int dh= ((d0>>5)&0x07C0F83F) + ((d1>>5)&0x07C0F83F); | |
1788 | |
1789 int dh2= (dh>>11) + (dh<<21); | |
1790 int d= dh2 + dl; | |
1791 | |
1792 int b= d&0x7F; | |
1793 int r= (d>>11)&0x7F; | |
1794 int g= d>>21; | |
1795 #else | |
4578 | 1796 int d0= src1[i*4] + (src1[i*4+1]<<8); |
1797 int b0= d0&0x1F; | |
1798 int g0= (d0>>5)&0x3F; | |
1799 int r0= (d0>>11)&0x1F; | |
1800 | |
1801 int d1= src1[i*4+2] + (src1[i*4+3]<<8); | |
1802 int b1= d1&0x1F; | |
1803 int g1= (d1>>5)&0x3F; | |
1804 int r1= (d1>>11)&0x1F; | |
1805 | |
1806 int d2= src2[i*4] + (src2[i*4+1]<<8); | |
1807 int b2= d2&0x1F; | |
1808 int g2= (d2>>5)&0x3F; | |
1809 int r2= (d2>>11)&0x1F; | |
1810 | |
1811 int d3= src2[i*4+2] + (src2[i*4+3]<<8); | |
1812 int b3= d3&0x1F; | |
1813 int g3= (d3>>5)&0x3F; | |
1814 int r3= (d3>>11)&0x1F; | |
1815 | |
1816 int b= b0 + b1 + b2 + b3; | |
1817 int g= g0 + g1 + g2 + g3; | |
1818 int r= r0 + r1 + r2 + r3; | |
4579 | 1819 #endif |
4578 | 1820 dstU[i]= ((2*RU*r + GU*g + 2*BU*b)>>(RGB2YUV_SHIFT+2-2)) + 128; |
1821 dstV[i]= ((2*RV*r + GV*g + 2*BV*b)>>(RGB2YUV_SHIFT+2-2)) + 128; | |
1822 } | |
1823 } | |
1824 | |
4580 | 1825 static inline void RENAME(bgr15ToY)(uint8_t *dst, uint8_t *src, int width) |
1826 { | |
1827 int i; | |
1828 for(i=0; i<width; i++) | |
1829 { | |
1830 int d= src[i*2] + (src[i*2+1]<<8); | |
1831 int b= d&0x1F; | |
1832 int g= (d>>5)&0x1F; | |
1833 int r= (d>>10)&0x1F; | |
1834 | |
1835 dst[i]= ((RY*r + GY*g + BY*b)>>(RGB2YUV_SHIFT-3)) + 16; | |
1836 } | |
1837 } | |
1838 | |
1839 static inline void RENAME(bgr15ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
1840 { | |
1841 int i; | |
1842 for(i=0; i<width; i++) | |
1843 { | |
1844 #if 1 | |
1845 int d0= le2me_32( ((uint32_t*)src1)[i] ); | |
1846 int d1= le2me_32( ((uint32_t*)src2)[i] ); | |
1847 | |
1848 int dl= (d0&0x03E07C1F) + (d1&0x03E07C1F); | |
1849 int dh= ((d0>>5)&0x03E0F81F) + ((d1>>5)&0x03E0F81F); | |
1850 | |
1851 int dh2= (dh>>11) + (dh<<21); | |
1852 int d= dh2 + dl; | |
1853 | |
1854 int b= d&0x7F; | |
1855 int r= (d>>10)&0x7F; | |
1856 int g= d>>21; | |
1857 #else | |
1858 int d0= src1[i*4] + (src1[i*4+1]<<8); | |
1859 int b0= d0&0x1F; | |
1860 int g0= (d0>>5)&0x1F; | |
1861 int r0= (d0>>10)&0x1F; | |
1862 | |
1863 int d1= src1[i*4+2] + (src1[i*4+3]<<8); | |
1864 int b1= d1&0x1F; | |
1865 int g1= (d1>>5)&0x1F; | |
1866 int r1= (d1>>10)&0x1F; | |
1867 | |
1868 int d2= src2[i*4] + (src2[i*4+1]<<8); | |
1869 int b2= d2&0x1F; | |
1870 int g2= (d2>>5)&0x1F; | |
1871 int r2= (d2>>10)&0x1F; | |
1872 | |
1873 int d3= src2[i*4+2] + (src2[i*4+3]<<8); | |
1874 int b3= d3&0x1F; | |
1875 int g3= (d3>>5)&0x1F; | |
1876 int r3= (d3>>10)&0x1F; | |
1877 | |
1878 int b= b0 + b1 + b2 + b3; | |
1879 int g= g0 + g1 + g2 + g3; | |
1880 int r= r0 + r1 + r2 + r3; | |
1881 #endif | |
1882 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2-3)) + 128; | |
1883 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2-3)) + 128; | |
1884 } | |
1885 } | |
1886 | |
1887 | |
4558 | 1888 static inline void RENAME(rgb32ToY)(uint8_t *dst, uint8_t *src, int width) |
1889 { | |
1890 int i; | |
1891 for(i=0; i<width; i++) | |
1892 { | |
1893 int r= src[i*4+0]; | |
1894 int g= src[i*4+1]; | |
1895 int b= src[i*4+2]; | |
1896 | |
1897 dst[i]= ((RY*r + GY*g + BY*b)>>RGB2YUV_SHIFT) + 16; | |
1898 } | |
1899 } | |
1900 | |
1901 static inline void RENAME(rgb32ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
1902 { | |
1903 int i; | |
1904 for(i=0; i<width; i++) | |
1905 { | |
1906 int r= src1[8*i + 0] + src1[8*i + 4] + src2[8*i + 0] + src2[8*i + 4]; | |
1907 int g= src1[8*i + 1] + src1[8*i + 5] + src2[8*i + 1] + src2[8*i + 5]; | |
1908 int b= src1[8*i + 2] + src1[8*i + 6] + src2[8*i + 2] + src2[8*i + 6]; | |
1909 | |
1910 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1911 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1912 } | |
1913 } | |
1914 | |
1915 static inline void RENAME(rgb24ToY)(uint8_t *dst, uint8_t *src, int width) | |
1916 { | |
1917 int i; | |
1918 for(i=0; i<width; i++) | |
1919 { | |
1920 int r= src[i*3+0]; | |
1921 int g= src[i*3+1]; | |
1922 int b= src[i*3+2]; | |
1923 | |
1924 dst[i]= ((RY*r + GY*g + BY*b)>>RGB2YUV_SHIFT) + 16; | |
1925 } | |
1926 } | |
1927 | |
1928 static inline void RENAME(rgb24ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
1929 { | |
1930 int i; | |
1931 for(i=0; i<width; i++) | |
1932 { | |
1933 int r= src1[6*i + 0] + src1[6*i + 3] + src2[6*i + 0] + src2[6*i + 3]; | |
1934 int g= src1[6*i + 1] + src1[6*i + 4] + src2[6*i + 1] + src2[6*i + 4]; | |
1935 int b= src1[6*i + 2] + src1[6*i + 5] + src2[6*i + 2] + src2[6*i + 5]; | |
1936 | |
1937 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1938 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1939 } | |
1940 } | |
1941 | |
4467 | 1942 |
3272 | 1943 // Bilinear / Bicubic scaling |
1944 static inline void RENAME(hScale)(int16_t *dst, int dstW, uint8_t *src, int srcW, int xInc, | |
1945 int16_t *filter, int16_t *filterPos, int filterSize) | |
1946 { | |
1947 #ifdef HAVE_MMX | |
1948 if(filterSize==4) // allways true for upscaling, sometimes for down too | |
1949 { | |
1950 int counter= -2*dstW; | |
1951 filter-= counter*2; | |
1952 filterPos-= counter/2; | |
1953 dst-= counter/2; | |
1954 asm volatile( | |
1955 "pxor %%mm7, %%mm7 \n\t" | |
4248 | 1956 "movq "MANGLE(w02)", %%mm6 \n\t" |
3272 | 1957 "pushl %%ebp \n\t" // we use 7 regs here ... |
1958 "movl %%eax, %%ebp \n\t" | |
1959 ".balign 16 \n\t" | |
1960 "1: \n\t" | |
1961 "movzwl (%2, %%ebp), %%eax \n\t" | |
1962 "movzwl 2(%2, %%ebp), %%ebx \n\t" | |
1963 "movq (%1, %%ebp, 4), %%mm1 \n\t" | |
1964 "movq 8(%1, %%ebp, 4), %%mm3 \n\t" | |
1965 "movd (%3, %%eax), %%mm0 \n\t" | |
1966 "movd (%3, %%ebx), %%mm2 \n\t" | |
1967 "punpcklbw %%mm7, %%mm0 \n\t" | |
1968 "punpcklbw %%mm7, %%mm2 \n\t" | |
1969 "pmaddwd %%mm1, %%mm0 \n\t" | |
1970 "pmaddwd %%mm2, %%mm3 \n\t" | |
1971 "psrad $8, %%mm0 \n\t" | |
1972 "psrad $8, %%mm3 \n\t" | |
1973 "packssdw %%mm3, %%mm0 \n\t" | |
1974 "pmaddwd %%mm6, %%mm0 \n\t" | |
1975 "packssdw %%mm0, %%mm0 \n\t" | |
1976 "movd %%mm0, (%4, %%ebp) \n\t" | |
1977 "addl $4, %%ebp \n\t" | |
1978 " jnc 1b \n\t" | |
3352 | 1979 |
3272 | 1980 "popl %%ebp \n\t" |
1981 : "+a" (counter) | |
1982 : "c" (filter), "d" (filterPos), "S" (src), "D" (dst) | |
1983 : "%ebx" | |
1984 ); | |
1985 } | |
1986 else if(filterSize==8) | |
1987 { | |
1988 int counter= -2*dstW; | |
1989 filter-= counter*4; | |
1990 filterPos-= counter/2; | |
1991 dst-= counter/2; | |
1992 asm volatile( | |
1993 "pxor %%mm7, %%mm7 \n\t" | |
4248 | 1994 "movq "MANGLE(w02)", %%mm6 \n\t" |
3272 | 1995 "pushl %%ebp \n\t" // we use 7 regs here ... |
1996 "movl %%eax, %%ebp \n\t" | |
1997 ".balign 16 \n\t" | |
1998 "1: \n\t" | |
1999 "movzwl (%2, %%ebp), %%eax \n\t" | |
2000 "movzwl 2(%2, %%ebp), %%ebx \n\t" | |
2001 "movq (%1, %%ebp, 8), %%mm1 \n\t" | |
2002 "movq 16(%1, %%ebp, 8), %%mm3 \n\t" | |
2003 "movd (%3, %%eax), %%mm0 \n\t" | |
2004 "movd (%3, %%ebx), %%mm2 \n\t" | |
2005 "punpcklbw %%mm7, %%mm0 \n\t" | |
2006 "punpcklbw %%mm7, %%mm2 \n\t" | |
2007 "pmaddwd %%mm1, %%mm0 \n\t" | |
2008 "pmaddwd %%mm2, %%mm3 \n\t" | |
2316
bcb229557e9b
fixed alignment (static variables where sometimes not 8-byte aligned)
michael
parents:
2297
diff
changeset
|
2009 |
3272 | 2010 "movq 8(%1, %%ebp, 8), %%mm1 \n\t" |
2011 "movq 24(%1, %%ebp, 8), %%mm5 \n\t" | |
2012 "movd 4(%3, %%eax), %%mm4 \n\t" | |
2013 "movd 4(%3, %%ebx), %%mm2 \n\t" | |
2014 "punpcklbw %%mm7, %%mm4 \n\t" | |
2015 "punpcklbw %%mm7, %%mm2 \n\t" | |
2016 "pmaddwd %%mm1, %%mm4 \n\t" | |
2017 "pmaddwd %%mm2, %%mm5 \n\t" | |
2018 "paddd %%mm4, %%mm0 \n\t" | |
2019 "paddd %%mm5, %%mm3 \n\t" | |
2020 | |
2021 "psrad $8, %%mm0 \n\t" | |
2022 "psrad $8, %%mm3 \n\t" | |
2023 "packssdw %%mm3, %%mm0 \n\t" | |
2024 "pmaddwd %%mm6, %%mm0 \n\t" | |
2025 "packssdw %%mm0, %%mm0 \n\t" | |
2026 "movd %%mm0, (%4, %%ebp) \n\t" | |
2027 "addl $4, %%ebp \n\t" | |
2028 " jnc 1b \n\t" | |
3344 | 2029 |
3272 | 2030 "popl %%ebp \n\t" |
2031 : "+a" (counter) | |
2032 : "c" (filter), "d" (filterPos), "S" (src), "D" (dst) | |
2033 : "%ebx" | |
2034 ); | |
2035 } | |
2036 else | |
2037 { | |
2038 int counter= -2*dstW; | |
2039 // filter-= counter*filterSize/2; | |
2040 filterPos-= counter/2; | |
2041 dst-= counter/2; | |
2042 asm volatile( | |
2043 "pxor %%mm7, %%mm7 \n\t" | |
4248 | 2044 "movq "MANGLE(w02)", %%mm6 \n\t" |
3272 | 2045 ".balign 16 \n\t" |
2046 "1: \n\t" | |
2047 "movl %2, %%ecx \n\t" | |
2048 "movzwl (%%ecx, %0), %%eax \n\t" | |
2049 "movzwl 2(%%ecx, %0), %%ebx \n\t" | |
2050 "movl %5, %%ecx \n\t" | |
2051 "pxor %%mm4, %%mm4 \n\t" | |
2052 "pxor %%mm5, %%mm5 \n\t" | |
2053 "2: \n\t" | |
2054 "movq (%1), %%mm1 \n\t" | |
2055 "movq (%1, %6), %%mm3 \n\t" | |
2056 "movd (%%ecx, %%eax), %%mm0 \n\t" | |
2057 "movd (%%ecx, %%ebx), %%mm2 \n\t" | |
2058 "punpcklbw %%mm7, %%mm0 \n\t" | |
2059 "punpcklbw %%mm7, %%mm2 \n\t" | |
2060 "pmaddwd %%mm1, %%mm0 \n\t" | |
2061 "pmaddwd %%mm2, %%mm3 \n\t" | |
2062 "paddd %%mm3, %%mm5 \n\t" | |
2063 "paddd %%mm0, %%mm4 \n\t" | |
2064 "addl $8, %1 \n\t" | |
2065 "addl $4, %%ecx \n\t" | |
2066 "cmpl %4, %%ecx \n\t" | |
2067 " jb 2b \n\t" | |
2068 "addl %6, %1 \n\t" | |
2069 "psrad $8, %%mm4 \n\t" | |
2070 "psrad $8, %%mm5 \n\t" | |
2071 "packssdw %%mm5, %%mm4 \n\t" | |
2072 "pmaddwd %%mm6, %%mm4 \n\t" | |
2073 "packssdw %%mm4, %%mm4 \n\t" | |
2074 "movl %3, %%eax \n\t" | |
2075 "movd %%mm4, (%%eax, %0) \n\t" | |
2076 "addl $4, %0 \n\t" | |
2077 " jnc 1b \n\t" | |
3344 | 2078 |
3641 | 2079 : "+r" (counter), "+r" (filter) |
2080 : "m" (filterPos), "m" (dst), "m"(src+filterSize), | |
3272 | 2081 "m" (src), "r" (filterSize*2) |
3299 | 2082 : "%ebx", "%eax", "%ecx" |
3272 | 2083 ); |
2084 } | |
2085 #else | |
2086 int i; | |
2087 for(i=0; i<dstW; i++) | |
2088 { | |
2089 int j; | |
2090 int srcPos= filterPos[i]; | |
2091 int val=0; | |
3344 | 2092 // printf("filterPos: %d\n", filterPos[i]); |
3272 | 2093 for(j=0; j<filterSize; j++) |
2094 { | |
2095 // printf("filter: %d, src: %d\n", filter[i], src[srcPos + j]); | |
2096 val += ((int)src[srcPos + j])*filter[filterSize*i + j]; | |
2097 } | |
2098 // filter += hFilterSize; | |
2099 dst[i] = MIN(MAX(0, val>>7), (1<<15)-1); // the cubic equation does overflow ... | |
2100 // dst[i] = val>>7; | |
2101 } | |
2102 #endif | |
2103 } | |
2104 // *** horizontal scale Y line to temp buffer | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2105 static inline void RENAME(hyscale)(uint16_t *dst, int dstWidth, uint8_t *src, int srcW, int xInc, |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2106 int flags, int canMMX2BeUsed, int16_t *hLumFilter, |
4467 | 2107 int16_t *hLumFilterPos, int hLumFilterSize, void *funnyYCode, |
5452 | 2108 int srcFormat, uint8_t *formatConvBuffer, int16_t *mmx2Filter, |
2109 int32_t *mmx2FilterPos) | |
2469 | 2110 { |
4467 | 2111 if(srcFormat==IMGFMT_YUY2) |
2112 { | |
2113 RENAME(yuy2ToY)(formatConvBuffer, src, srcW); | |
2114 src= formatConvBuffer; | |
2115 } | |
2116 else if(srcFormat==IMGFMT_BGR32) | |
2117 { | |
2118 RENAME(bgr32ToY)(formatConvBuffer, src, srcW); | |
2119 src= formatConvBuffer; | |
2120 } | |
2121 else if(srcFormat==IMGFMT_BGR24) | |
2122 { | |
2123 RENAME(bgr24ToY)(formatConvBuffer, src, srcW); | |
2124 src= formatConvBuffer; | |
2125 } | |
4578 | 2126 else if(srcFormat==IMGFMT_BGR16) |
2127 { | |
2128 RENAME(bgr16ToY)(formatConvBuffer, src, srcW); | |
2129 src= formatConvBuffer; | |
2130 } | |
4580 | 2131 else if(srcFormat==IMGFMT_BGR15) |
2132 { | |
2133 RENAME(bgr15ToY)(formatConvBuffer, src, srcW); | |
2134 src= formatConvBuffer; | |
2135 } | |
4558 | 2136 else if(srcFormat==IMGFMT_RGB32) |
2137 { | |
2138 RENAME(rgb32ToY)(formatConvBuffer, src, srcW); | |
2139 src= formatConvBuffer; | |
2140 } | |
2141 else if(srcFormat==IMGFMT_RGB24) | |
2142 { | |
2143 RENAME(rgb24ToY)(formatConvBuffer, src, srcW); | |
2144 src= formatConvBuffer; | |
2145 } | |
4467 | 2146 |
3352 | 2147 #ifdef HAVE_MMX |
2148 // use the new MMX scaler if th mmx2 cant be used (its faster than the x86asm one) | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2149 if(!(flags&SWS_FAST_BILINEAR) || (!canMMX2BeUsed)) |
3352 | 2150 #else |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2151 if(!(flags&SWS_FAST_BILINEAR)) |
3352 | 2152 #endif |
3272 | 2153 { |
2154 RENAME(hScale)(dst, dstWidth, src, srcW, xInc, hLumFilter, hLumFilterPos, hLumFilterSize); | |
2155 } | |
2156 else // Fast Bilinear upscale / crap downscale | |
2157 { | |
2469 | 2158 #ifdef ARCH_X86 |
2159 #ifdef HAVE_MMX2 | |
2671 | 2160 int i; |
2469 | 2161 if(canMMX2BeUsed) |
2162 { | |
2163 asm volatile( | |
2164 "pxor %%mm7, %%mm7 \n\t" | |
5452 | 2165 "movl %0, %%ecx \n\t" |
2166 "movl %1, %%edi \n\t" | |
2167 "movl %2, %%edx \n\t" | |
2168 "movl %3, %%ebx \n\t" | |
2469 | 2169 "xorl %%eax, %%eax \n\t" // i |
5452 | 2170 PREFETCH" (%%ecx) \n\t" |
2171 PREFETCH" 32(%%ecx) \n\t" | |
2172 PREFETCH" 64(%%ecx) \n\t" | |
2520 | 2173 |
2469 | 2174 #define FUNNY_Y_CODE \ |
5452 | 2175 "movl (%%ebx), %%esi \n\t"\ |
2176 "call *%4 \n\t"\ | |
2177 "addl (%%ebx, %%eax), %%ecx \n\t"\ | |
2178 "addl %%eax, %%edi \n\t"\ | |
2179 "xorl %%eax, %%eax \n\t"\ | |
2520 | 2180 |
2469 | 2181 FUNNY_Y_CODE |
2182 FUNNY_Y_CODE | |
2183 FUNNY_Y_CODE | |
2184 FUNNY_Y_CODE | |
2185 FUNNY_Y_CODE | |
2186 FUNNY_Y_CODE | |
2187 FUNNY_Y_CODE | |
2188 FUNNY_Y_CODE | |
2189 | |
5452 | 2190 :: "m" (src), "m" (dst), "m" (mmx2Filter), "m" (mmx2FilterPos), |
2191 "m" (funnyYCode) | |
2469 | 2192 : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi" |
2193 ); | |
3215 | 2194 for(i=dstWidth-1; (i*xInc)>>16 >=srcW-1; i--) dst[i] = src[srcW-1]*128; |
2469 | 2195 } |
2196 else | |
2197 { | |
2198 #endif | |
2199 //NO MMX just normal asm ... | |
2200 asm volatile( | |
2201 "xorl %%eax, %%eax \n\t" // i | |
2202 "xorl %%ebx, %%ebx \n\t" // xx | |
2203 "xorl %%ecx, %%ecx \n\t" // 2*xalpha | |
2800
7847d6b7ad3d
.balign or we¡ll align by 64kb on some architectures
michael
parents:
2799
diff
changeset
|
2204 ".balign 16 \n\t" |
2469 | 2205 "1: \n\t" |
2206 "movzbl (%0, %%ebx), %%edi \n\t" //src[xx] | |
2207 "movzbl 1(%0, %%ebx), %%esi \n\t" //src[xx+1] | |
2208 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx] | |
2209 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha | |
2210 "shll $16, %%edi \n\t" | |
2211 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha) | |
2212 "movl %1, %%edi \n\t" | |
2213 "shrl $9, %%esi \n\t" | |
2214 "movw %%si, (%%edi, %%eax, 2) \n\t" | |
2215 "addw %4, %%cx \n\t" //2*xalpha += xInc&0xFF | |
2216 "adcl %3, %%ebx \n\t" //xx+= xInc>>8 + carry | |
2217 | |
2218 "movzbl (%0, %%ebx), %%edi \n\t" //src[xx] | |
2219 "movzbl 1(%0, %%ebx), %%esi \n\t" //src[xx+1] | |
2220 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx] | |
2221 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha | |
2222 "shll $16, %%edi \n\t" | |
2223 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha) | |
2224 "movl %1, %%edi \n\t" | |
2225 "shrl $9, %%esi \n\t" | |
2226 "movw %%si, 2(%%edi, %%eax, 2) \n\t" | |
2227 "addw %4, %%cx \n\t" //2*xalpha += xInc&0xFF | |
2228 "adcl %3, %%ebx \n\t" //xx+= xInc>>8 + carry | |
2229 | |
2230 | |
2231 "addl $2, %%eax \n\t" | |
2232 "cmpl %2, %%eax \n\t" | |
2233 " jb 1b \n\t" | |
2234 | |
2235 | |
2236 :: "r" (src), "m" (dst), "m" (dstWidth), "m" (xInc>>16), "m" (xInc&0xFFFF) | |
2237 : "%eax", "%ebx", "%ecx", "%edi", "%esi" | |
2238 ); | |
2239 #ifdef HAVE_MMX2 | |
2240 } //if MMX2 cant be used | |
2241 #endif | |
2242 #else | |
2671 | 2243 int i; |
2244 unsigned int xpos=0; | |
2245 for(i=0;i<dstWidth;i++) | |
2246 { | |
2247 register unsigned int xx=xpos>>16; | |
2248 register unsigned int xalpha=(xpos&0xFFFF)>>9; | |
2249 dst[i]= (src[xx]<<7) + (src[xx+1] - src[xx])*xalpha; | |
2250 xpos+=xInc; | |
2251 } | |
2469 | 2252 #endif |
3272 | 2253 } |
2469 | 2254 } |
2255 | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2256 inline static void RENAME(hcscale)(uint16_t *dst, int dstWidth, uint8_t *src1, uint8_t *src2, |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2257 int srcW, int xInc, int flags, int canMMX2BeUsed, int16_t *hChrFilter, |
4467 | 2258 int16_t *hChrFilterPos, int hChrFilterSize, void *funnyUVCode, |
5452 | 2259 int srcFormat, uint8_t *formatConvBuffer, int16_t *mmx2Filter, |
2260 int32_t *mmx2FilterPos) | |
2469 | 2261 { |
4467 | 2262 if(srcFormat==IMGFMT_YUY2) |
2263 { | |
2264 RENAME(yuy2ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2265 src1= formatConvBuffer; | |
2266 src2= formatConvBuffer+2048; | |
2267 } | |
2268 else if(srcFormat==IMGFMT_BGR32) | |
2269 { | |
2270 RENAME(bgr32ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2271 src1= formatConvBuffer; | |
2272 src2= formatConvBuffer+2048; | |
2273 } | |
2274 else if(srcFormat==IMGFMT_BGR24) | |
2275 { | |
2276 RENAME(bgr24ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2277 src1= formatConvBuffer; | |
2278 src2= formatConvBuffer+2048; | |
2279 } | |
4578 | 2280 else if(srcFormat==IMGFMT_BGR16) |
2281 { | |
2282 RENAME(bgr16ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2283 src1= formatConvBuffer; | |
2284 src2= formatConvBuffer+2048; | |
2285 } | |
4580 | 2286 else if(srcFormat==IMGFMT_BGR15) |
2287 { | |
2288 RENAME(bgr15ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2289 src1= formatConvBuffer; | |
2290 src2= formatConvBuffer+2048; | |
2291 } | |
4558 | 2292 else if(srcFormat==IMGFMT_RGB32) |
2293 { | |
2294 RENAME(rgb32ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2295 src1= formatConvBuffer; | |
2296 src2= formatConvBuffer+2048; | |
2297 } | |
2298 else if(srcFormat==IMGFMT_RGB24) | |
2299 { | |
2300 RENAME(rgb24ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2301 src1= formatConvBuffer; | |
2302 src2= formatConvBuffer+2048; | |
2303 } | |
4481 | 2304 else if(isGray(srcFormat)) |
2305 { | |
2306 return; | |
2307 } | |
4467 | 2308 |
3352 | 2309 #ifdef HAVE_MMX |
2310 // use the new MMX scaler if th mmx2 cant be used (its faster than the x86asm one) | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2311 if(!(flags&SWS_FAST_BILINEAR) || (!canMMX2BeUsed)) |
3352 | 2312 #else |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2313 if(!(flags&SWS_FAST_BILINEAR)) |
3352 | 2314 #endif |
3272 | 2315 { |
2316 RENAME(hScale)(dst , dstWidth, src1, srcW, xInc, hChrFilter, hChrFilterPos, hChrFilterSize); | |
2317 RENAME(hScale)(dst+2048, dstWidth, src2, srcW, xInc, hChrFilter, hChrFilterPos, hChrFilterSize); | |
2318 } | |
2319 else // Fast Bilinear upscale / crap downscale | |
2320 { | |
2469 | 2321 #ifdef ARCH_X86 |
2322 #ifdef HAVE_MMX2 | |
2671 | 2323 int i; |
2469 | 2324 if(canMMX2BeUsed) |
2325 { | |
2326 asm volatile( | |
5452 | 2327 "pxor %%mm7, %%mm7 \n\t" |
2328 "movl %0, %%ecx \n\t" | |
2329 "movl %1, %%edi \n\t" | |
2330 "movl %2, %%edx \n\t" | |
2331 "movl %3, %%ebx \n\t" | |
2332 "xorl %%eax, %%eax \n\t" // i | |
2333 PREFETCH" (%%ecx) \n\t" | |
2334 PREFETCH" 32(%%ecx) \n\t" | |
2335 PREFETCH" 64(%%ecx) \n\t" | |
2336 | |
2337 #define FUNNY_UV_CODE \ | |
2338 "movl (%%ebx), %%esi \n\t"\ | |
2339 "call *%4 \n\t"\ | |
2340 "addl (%%ebx, %%eax), %%ecx \n\t"\ | |
2341 "addl %%eax, %%edi \n\t"\ | |
2342 "xorl %%eax, %%eax \n\t"\ | |
2469 | 2343 |
5452 | 2344 FUNNY_UV_CODE |
2345 FUNNY_UV_CODE | |
2346 FUNNY_UV_CODE | |
2347 FUNNY_UV_CODE | |
2348 "xorl %%eax, %%eax \n\t" // i | |
2349 "movl %5, %%ecx \n\t" // src | |
2350 "movl %1, %%edi \n\t" // buf1 | |
2351 "addl $4096, %%edi \n\t" | |
2352 PREFETCH" (%%ecx) \n\t" | |
2353 PREFETCH" 32(%%ecx) \n\t" | |
2354 PREFETCH" 64(%%ecx) \n\t" | |
2469 | 2355 |
5452 | 2356 FUNNY_UV_CODE |
2357 FUNNY_UV_CODE | |
2358 FUNNY_UV_CODE | |
2359 FUNNY_UV_CODE | |
2469 | 2360 |
5452 | 2361 :: "m" (src1), "m" (dst), "m" (mmx2Filter), "m" (mmx2FilterPos), |
2362 "m" (funnyUVCode), "m" (src2) | |
2363 : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi" | |
2364 ); | |
3344 | 2365 for(i=dstWidth-1; (i*xInc)>>16 >=srcW-1; i--) |
2469 | 2366 { |
3344 | 2367 // printf("%d %d %d\n", dstWidth, i, srcW); |
2368 dst[i] = src1[srcW-1]*128; | |
2369 dst[i+2048] = src2[srcW-1]*128; | |
2469 | 2370 } |
2371 } | |
2372 else | |
2373 { | |
2374 #endif | |
2375 asm volatile( | |
2376 "xorl %%eax, %%eax \n\t" // i | |
2377 "xorl %%ebx, %%ebx \n\t" // xx | |
2378 "xorl %%ecx, %%ecx \n\t" // 2*xalpha | |
2800
7847d6b7ad3d
.balign or we¡ll align by 64kb on some architectures
michael
parents:
2799
diff
changeset
|
2379 ".balign 16 \n\t" |
2469 | 2380 "1: \n\t" |
2381 "movl %0, %%esi \n\t" | |
2382 "movzbl (%%esi, %%ebx), %%edi \n\t" //src[xx] | |
2383 "movzbl 1(%%esi, %%ebx), %%esi \n\t" //src[xx+1] | |
2384 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx] | |
2385 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha | |
2386 "shll $16, %%edi \n\t" | |
2387 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha) | |
2388 "movl %1, %%edi \n\t" | |
2389 "shrl $9, %%esi \n\t" | |
2390 "movw %%si, (%%edi, %%eax, 2) \n\t" | |
2391 | |
2392 "movzbl (%5, %%ebx), %%edi \n\t" //src[xx] | |
2393 "movzbl 1(%5, %%ebx), %%esi \n\t" //src[xx+1] | |
2394 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx] | |
2395 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha | |
2396 "shll $16, %%edi \n\t" | |
2397 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha) | |
2398 "movl %1, %%edi \n\t" | |
2399 "shrl $9, %%esi \n\t" | |
2400 "movw %%si, 4096(%%edi, %%eax, 2)\n\t" | |
2401 | |
2402 "addw %4, %%cx \n\t" //2*xalpha += xInc&0xFF | |
2403 "adcl %3, %%ebx \n\t" //xx+= xInc>>8 + carry | |
2404 "addl $1, %%eax \n\t" | |
2405 "cmpl %2, %%eax \n\t" | |
2406 " jb 1b \n\t" | |
2407 | |
2408 :: "m" (src1), "m" (dst), "m" (dstWidth), "m" (xInc>>16), "m" (xInc&0xFFFF), | |
2409 "r" (src2) | |
2410 : "%eax", "%ebx", "%ecx", "%edi", "%esi" | |
2411 ); | |
2412 #ifdef HAVE_MMX2 | |
2413 } //if MMX2 cant be used | |
2414 #endif | |
2415 #else | |
2671 | 2416 int i; |
2417 unsigned int xpos=0; | |
2418 for(i=0;i<dstWidth;i++) | |
2419 { | |
2420 register unsigned int xx=xpos>>16; | |
2421 register unsigned int xalpha=(xpos&0xFFFF)>>9; | |
2422 dst[i]=(src1[xx]*(xalpha^127)+src1[xx+1]*xalpha); | |
2423 dst[i+2048]=(src2[xx]*(xalpha^127)+src2[xx+1]*xalpha); | |
2566 | 2424 /* slower |
2425 dst[i]= (src1[xx]<<7) + (src1[xx+1] - src1[xx])*xalpha; | |
2426 dst[i+2048]=(src2[xx]<<7) + (src2[xx+1] - src2[xx])*xalpha; | |
2427 */ | |
2671 | 2428 xpos+=xInc; |
2429 } | |
2469 | 2430 #endif |
3272 | 2431 } |
2432 } | |
2433 | |
4467 | 2434 static void RENAME(swScale)(SwsContext *c, uint8_t* srcParam[], int srcStrideParam[], int srcSliceY, |
4698 | 2435 int srcSliceH, uint8_t* dstParam[], int dstStrideParam[]){ |
3344 | 2436 |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2437 /* load a few things into local vars to make the code more readable? and faster */ |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2438 const int srcW= c->srcW; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2439 const int dstW= c->dstW; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2440 const int dstH= c->dstH; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2441 const int chrDstW= c->chrDstW; |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2442 const int chrSrcW= c->chrSrcW; |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2443 const int lumXInc= c->lumXInc; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2444 const int chrXInc= c->chrXInc; |
4295 | 2445 const int dstFormat= c->dstFormat; |
6503 | 2446 const int srcFormat= c->srcFormat; |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2447 const int flags= c->flags; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2448 const int canMMX2BeUsed= c->canMMX2BeUsed; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2449 int16_t *vLumFilterPos= c->vLumFilterPos; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2450 int16_t *vChrFilterPos= c->vChrFilterPos; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2451 int16_t *hLumFilterPos= c->hLumFilterPos; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2452 int16_t *hChrFilterPos= c->hChrFilterPos; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2453 int16_t *vLumFilter= c->vLumFilter; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2454 int16_t *vChrFilter= c->vChrFilter; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2455 int16_t *hLumFilter= c->hLumFilter; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2456 int16_t *hChrFilter= c->hChrFilter; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2457 int16_t *lumMmxFilter= c->lumMmxFilter; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2458 int16_t *chrMmxFilter= c->chrMmxFilter; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2459 const int vLumFilterSize= c->vLumFilterSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2460 const int vChrFilterSize= c->vChrFilterSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2461 const int hLumFilterSize= c->hLumFilterSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2462 const int hChrFilterSize= c->hChrFilterSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2463 int16_t **lumPixBuf= c->lumPixBuf; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2464 int16_t **chrPixBuf= c->chrPixBuf; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2465 const int vLumBufSize= c->vLumBufSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2466 const int vChrBufSize= c->vChrBufSize; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2467 uint8_t *funnyYCode= c->funnyYCode; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2468 uint8_t *funnyUVCode= c->funnyUVCode; |
4467 | 2469 uint8_t *formatConvBuffer= c->formatConvBuffer; |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2470 const int chrSrcSliceY= srcSliceY >> c->chrSrcVSubSample; |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2471 const int chrSrcSliceH= -((-srcSliceH) >> c->chrSrcVSubSample); |
3344 | 2472 |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2473 /* vars whch will change and which we need to storw back in the context */ |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2474 int dstY= c->dstY; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2475 int lumBufIndex= c->lumBufIndex; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2476 int chrBufIndex= c->chrBufIndex; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2477 int lastInLumBuf= c->lastInLumBuf; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2478 int lastInChrBuf= c->lastInChrBuf; |
4467 | 2479 int srcStride[3]; |
4698 | 2480 int dstStride[3]; |
4419 | 2481 uint8_t *src[3]; |
2482 uint8_t *dst[3]; | |
6540 | 2483 |
2484 orderYUV(c->srcFormat, src, srcStride, srcParam, srcStrideParam); | |
2485 orderYUV(c->dstFormat, dst, dstStride, dstParam, dstStrideParam); | |
6503 | 2486 |
6540 | 2487 if(isPacked(c->srcFormat)){ |
4467 | 2488 src[0]= |
2489 src[1]= | |
2490 src[2]= srcParam[0]; | |
6540 | 2491 srcStride[0]= |
4467 | 2492 srcStride[1]= |
6540 | 2493 srcStride[2]= srcStrideParam[0]; |
4467 | 2494 } |
6540 | 2495 srcStride[1]<<= c->vChrDrop; |
2496 srcStride[2]<<= c->vChrDrop; | |
4419 | 2497 |
6517 | 2498 // printf("swscale %X %X %X -> %X %X %X\n", (int)src[0], (int)src[1], (int)src[2], |
2499 // (int)dst[0], (int)dst[1], (int)dst[2]); | |
2500 | |
2501 #if 0 //self test FIXME move to a vfilter or something | |
2502 { | |
2503 static volatile int i=0; | |
2504 i++; | |
2505 if(srcFormat==IMGFMT_YV12 && i==1 && srcSliceH>= c->srcH) | |
2506 selfTest(src, srcStride, c->srcW, c->srcH); | |
2507 i--; | |
2508 } | |
2509 #endif | |
4554 | 2510 |
2511 //printf("sws Strides:%d %d %d -> %d %d %d\n", srcStride[0],srcStride[1],srcStride[2], | |
2512 //dstStride[0],dstStride[1],dstStride[2]); | |
4419 | 2513 |
2514 if(dstStride[0]%8 !=0 || dstStride[1]%8 !=0 || dstStride[2]%8 !=0) | |
2515 { | |
2516 static int firstTime=1; //FIXME move this into the context perhaps | |
2517 if(flags & SWS_PRINT_INFO && firstTime) | |
2518 { | |
5937 | 2519 mp_msg(MSGT_SWS,MSGL_WARN,"SwScaler: Warning: dstStride is not aligned!\n" |
4419 | 2520 "SwScaler: ->cannot do aligned memory acesses anymore\n"); |
2521 firstTime=0; | |
2522 } | |
2523 } | |
3344 | 2524 |
4467 | 2525 /* Note the user might start scaling the picture in the middle so this will not get executed |
2526 this is not really intended but works currently, so ppl might do it */ | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2527 if(srcSliceY ==0){ |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2528 lumBufIndex=0; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2529 chrBufIndex=0; |
4467 | 2530 dstY=0; |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2531 lastInLumBuf= -1; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2532 lastInChrBuf= -1; |
3272 | 2533 } |
3344 | 2534 |
2535 for(;dstY < dstH; dstY++){ | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2536 unsigned char *dest =dst[0]+dstStride[0]*dstY; |
6520 | 2537 const int chrDstY= dstY>>c->chrDstVSubSample; |
2538 unsigned char *uDest=dst[1]+dstStride[1]*chrDstY; | |
2539 unsigned char *vDest=dst[2]+dstStride[2]*chrDstY; | |
3344 | 2540 |
2541 const int firstLumSrcY= vLumFilterPos[dstY]; //First line needed as input | |
2542 const int firstChrSrcY= vChrFilterPos[chrDstY]; //First line needed as input | |
2543 const int lastLumSrcY= firstLumSrcY + vLumFilterSize -1; // Last line needed as input | |
2544 const int lastChrSrcY= firstChrSrcY + vChrFilterSize -1; // Last line needed as input | |
2545 | |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
2546 //handle holes (FAST_BILINEAR & weird filters) |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
2547 if(firstLumSrcY > lastInLumBuf) lastInLumBuf= firstLumSrcY-1; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
2548 if(firstChrSrcY > lastInChrBuf) lastInChrBuf= firstChrSrcY-1; |
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
2549 //printf("%d %d %d\n", firstChrSrcY, lastInChrBuf, vChrBufSize); |
3344 | 2550 ASSERT(firstLumSrcY >= lastInLumBuf - vLumBufSize + 1) |
2551 ASSERT(firstChrSrcY >= lastInChrBuf - vChrBufSize + 1) | |
2216 | 2552 |
3344 | 2553 // Do we have enough lines in this slice to output the dstY line |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2554 if(lastLumSrcY < srcSliceY + srcSliceH && lastChrSrcY < -((-srcSliceY - srcSliceH)>>c->chrSrcVSubSample)) |
2469 | 2555 { |
3344 | 2556 //Do horizontal scaling |
2557 while(lastInLumBuf < lastLumSrcY) | |
2558 { | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2559 uint8_t *s= src[0]+(lastInLumBuf + 1 - srcSliceY)*srcStride[0]; |
3344 | 2560 lumBufIndex++; |
4290
1f8ceb12284d
general convolution filtering of the source picture
michael
parents:
4276
diff
changeset
|
2561 // printf("%d %d %d %d\n", lumBufIndex, vLumBufSize, lastInLumBuf, lastLumSrcY); |
3344 | 2562 ASSERT(lumBufIndex < 2*vLumBufSize) |
2563 ASSERT(lastInLumBuf + 1 - srcSliceY < srcSliceH) | |
2564 ASSERT(lastInLumBuf + 1 - srcSliceY >= 0) | |
2565 // printf("%d %d\n", lumBufIndex, vLumBufSize); | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2566 RENAME(hyscale)(lumPixBuf[ lumBufIndex ], dstW, s, srcW, lumXInc, |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2567 flags, canMMX2BeUsed, hLumFilter, hLumFilterPos, hLumFilterSize, |
5452 | 2568 funnyYCode, c->srcFormat, formatConvBuffer, |
2569 c->lumMmx2Filter, c->lumMmx2FilterPos); | |
3344 | 2570 lastInLumBuf++; |
2571 } | |
2572 while(lastInChrBuf < lastChrSrcY) | |
2573 { | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2574 uint8_t *src1= src[1]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[1]; |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2575 uint8_t *src2= src[2]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[2]; |
3344 | 2576 chrBufIndex++; |
2577 ASSERT(chrBufIndex < 2*vChrBufSize) | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2578 ASSERT(lastInChrBuf + 1 - chrSrcSliceY < (chrSrcSliceH)) |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2579 ASSERT(lastInChrBuf + 1 - chrSrcSliceY >= 0) |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2580 //FIXME replace parameters through context struct (some at least) |
6503 | 2581 |
2582 if(!(isGray(srcFormat) || isGray(dstFormat))) | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2583 RENAME(hcscale)(chrPixBuf[ chrBufIndex ], chrDstW, src1, src2, chrSrcW, chrXInc, |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2584 flags, canMMX2BeUsed, hChrFilter, hChrFilterPos, hChrFilterSize, |
5452 | 2585 funnyUVCode, c->srcFormat, formatConvBuffer, |
2586 c->chrMmx2Filter, c->chrMmx2FilterPos); | |
3344 | 2587 lastInChrBuf++; |
2588 } | |
2589 //wrap buf index around to stay inside the ring buffer | |
2590 if(lumBufIndex >= vLumBufSize ) lumBufIndex-= vLumBufSize; | |
2591 if(chrBufIndex >= vChrBufSize ) chrBufIndex-= vChrBufSize; | |
2469 | 2592 } |
3344 | 2593 else // not enough lines left in this slice -> load the rest in the buffer |
2469 | 2594 { |
3344 | 2595 /* printf("%d %d Last:%d %d LastInBuf:%d %d Index:%d %d Y:%d FSize: %d %d BSize: %d %d\n", |
2596 firstChrSrcY,firstLumSrcY,lastChrSrcY,lastLumSrcY, | |
2597 lastInChrBuf,lastInLumBuf,chrBufIndex,lumBufIndex,dstY,vChrFilterSize,vLumFilterSize, | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2598 vChrBufSize, vLumBufSize);*/ |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2599 |
3344 | 2600 //Do horizontal scaling |
2601 while(lastInLumBuf+1 < srcSliceY + srcSliceH) | |
2469 | 2602 { |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2603 uint8_t *s= src[0]+(lastInLumBuf + 1 - srcSliceY)*srcStride[0]; |
3344 | 2604 lumBufIndex++; |
2605 ASSERT(lumBufIndex < 2*vLumBufSize) | |
2606 ASSERT(lastInLumBuf + 1 - srcSliceY < srcSliceH) | |
2607 ASSERT(lastInLumBuf + 1 - srcSliceY >= 0) | |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2608 RENAME(hyscale)(lumPixBuf[ lumBufIndex ], dstW, s, srcW, lumXInc, |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2609 flags, canMMX2BeUsed, hLumFilter, hLumFilterPos, hLumFilterSize, |
5452 | 2610 funnyYCode, c->srcFormat, formatConvBuffer, |
2611 c->lumMmx2Filter, c->lumMmx2FilterPos); | |
3344 | 2612 lastInLumBuf++; |
2469 | 2613 } |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2614 while(lastInChrBuf+1 < (chrSrcSliceY + chrSrcSliceH)) |
3344 | 2615 { |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2616 uint8_t *src1= src[1]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[1]; |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2617 uint8_t *src2= src[2]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[2]; |
3344 | 2618 chrBufIndex++; |
2619 ASSERT(chrBufIndex < 2*vChrBufSize) | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2620 ASSERT(lastInChrBuf + 1 - chrSrcSliceY < chrSrcSliceH) |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2621 ASSERT(lastInChrBuf + 1 - chrSrcSliceY >= 0) |
6503 | 2622 |
2623 if(!(isGray(srcFormat) || isGray(dstFormat))) | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2624 RENAME(hcscale)(chrPixBuf[ chrBufIndex ], chrDstW, src1, src2, chrSrcW, chrXInc, |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2625 flags, canMMX2BeUsed, hChrFilter, hChrFilterPos, hChrFilterSize, |
5452 | 2626 funnyUVCode, c->srcFormat, formatConvBuffer, |
2627 c->chrMmx2Filter, c->chrMmx2FilterPos); | |
3344 | 2628 lastInChrBuf++; |
2629 } | |
2630 //wrap buf index around to stay inside the ring buffer | |
2631 if(lumBufIndex >= vLumBufSize ) lumBufIndex-= vLumBufSize; | |
2632 if(chrBufIndex >= vChrBufSize ) chrBufIndex-= vChrBufSize; | |
2633 break; //we cant output a dstY line so lets try with the next slice | |
2469 | 2634 } |
2264
7851375ea156
increased precission of s_xinc s_xinc2 (needed for the mmx2 bugfix)
michael
parents:
2237
diff
changeset
|
2635 |
2748 | 2636 #ifdef HAVE_MMX |
3344 | 2637 b5Dither= dither8[dstY&1]; |
2638 g6Dither= dither4[dstY&1]; | |
2639 g5Dither= dither8[dstY&1]; | |
2640 r5Dither= dither8[(dstY+1)&1]; | |
2748 | 2641 #endif |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2642 if(dstY < dstH-2) |
3352 | 2643 { |
6503 | 2644 if(isPlanarYUV(dstFormat) || isGray(dstFormat)) //YV12 like |
3344 | 2645 { |
7351 | 2646 const int chrSkipMask= (1<<c->chrDstVSubSample)-1; |
2647 if((dstY&chrSkipMask) || isGray(dstFormat)) uDest=vDest= NULL; //FIXME split functions in lumi / chromi | |
3344 | 2648 if(vLumFilterSize == 1 && vChrFilterSize == 1) // Unscaled YV12 |
2649 { | |
2650 int16_t *lumBuf = lumPixBuf[0]; | |
2651 int16_t *chrBuf= chrPixBuf[0]; | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2652 RENAME(yuv2yuv1)(lumBuf, chrBuf, dest, uDest, vDest, dstW, chrDstW); |
3344 | 2653 } |
2654 else //General YV12 | |
2655 { | |
2656 int16_t **lumSrcPtr= lumPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize; | |
2657 int16_t **chrSrcPtr= chrPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize; | |
2658 RENAME(yuv2yuvX)( | |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2659 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize, |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2660 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2661 dest, uDest, vDest, dstW, chrDstW, |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2662 lumMmxFilter+dstY*vLumFilterSize*4, chrMmxFilter+chrDstY*vChrFilterSize*4); |
3344 | 2663 } |
2664 } | |
2665 else | |
2666 { | |
2667 int16_t **lumSrcPtr= lumPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize; | |
2668 int16_t **chrSrcPtr= chrPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize; | |
2669 | |
2670 ASSERT(lumSrcPtr + vLumFilterSize - 1 < lumPixBuf + vLumBufSize*2); | |
2671 ASSERT(chrSrcPtr + vChrFilterSize - 1 < chrPixBuf + vChrBufSize*2); | |
2672 if(vLumFilterSize == 1 && vChrFilterSize == 2) //Unscaled RGB | |
2673 { | |
2674 int chrAlpha= vChrFilter[2*dstY+1]; | |
2675 | |
7723 | 2676 RENAME(yuv2packed1)(c, *lumSrcPtr, *chrSrcPtr, *(chrSrcPtr+1), |
6578 | 2677 dest, dstW, chrAlpha, dstFormat, flags, dstY); |
3344 | 2678 } |
2679 else if(vLumFilterSize == 2 && vChrFilterSize == 2) //BiLinear Upscale RGB | |
2680 { | |
2681 int lumAlpha= vLumFilter[2*dstY+1]; | |
2682 int chrAlpha= vChrFilter[2*dstY+1]; | |
2683 | |
7723 | 2684 RENAME(yuv2packed2)(c, *lumSrcPtr, *(lumSrcPtr+1), *chrSrcPtr, *(chrSrcPtr+1), |
6578 | 2685 dest, dstW, lumAlpha, chrAlpha, dstY); |
3344 | 2686 } |
2687 else //General RGB | |
2688 { | |
7723 | 2689 RENAME(yuv2packedX)(c, |
3344 | 2690 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize, |
2691 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, | |
6578 | 2692 dest, dstW, |
2693 lumMmxFilter+dstY*vLumFilterSize*4, chrMmxFilter+dstY*vChrFilterSize*4, dstY); | |
3344 | 2694 } |
2695 } | |
3352 | 2696 } |
2697 else // hmm looks like we cant use MMX here without overwriting this arrays tail | |
2698 { | |
2699 int16_t **lumSrcPtr= lumPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize; | |
2700 int16_t **chrSrcPtr= chrPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize; | |
6615 | 2701 if(isPlanarYUV(dstFormat) || isGray(dstFormat)) //YV12 |
3352 | 2702 { |
7351 | 2703 const int chrSkipMask= (1<<c->chrDstVSubSample)-1; |
2704 if((dstY&chrSkipMask) || isGray(dstFormat)) uDest=vDest= NULL; //FIXME split functions in lumi / chromi | |
6540 | 2705 yuv2yuvXinC( |
6532
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2706 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize, |
9834d9980c45
yvu9 support (other planar yuv formats with other chroma subsamplings should be trivial to add, if they had a IMGFMT)
michael
parents:
6520
diff
changeset
|
2707 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, |
6540 | 2708 dest, uDest, vDest, dstW, chrDstW); |
3352 | 2709 } |
2710 else | |
2711 { | |
2712 ASSERT(lumSrcPtr + vLumFilterSize - 1 < lumPixBuf + vLumBufSize*2); | |
2713 ASSERT(chrSrcPtr + vChrFilterSize - 1 < chrPixBuf + vChrBufSize*2); | |
7723 | 2714 yuv2packedXinC(c, |
3352 | 2715 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize, |
2716 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, | |
6578 | 2717 dest, dstW, dstY); |
3352 | 2718 } |
2719 } | |
3344 | 2720 } |
2534
cc9d3fd626f0
patch from Martin Decky <deckm1am@ss1000.ms.mff.cuni.cz> applied and unnecassery "memory" removed
michael
parents:
2521
diff
changeset
|
2721 |
cc9d3fd626f0
patch from Martin Decky <deckm1am@ss1000.ms.mff.cuni.cz> applied and unnecassery "memory" removed
michael
parents:
2521
diff
changeset
|
2722 #ifdef HAVE_MMX |
cc9d3fd626f0
patch from Martin Decky <deckm1am@ss1000.ms.mff.cuni.cz> applied and unnecassery "memory" removed
michael
parents:
2521
diff
changeset
|
2723 __asm __volatile(SFENCE:::"memory"); |
2566 | 2724 __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
|
2725 #endif |
4276
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2726 /* store changed local vars back in the context */ |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2727 c->dstY= dstY; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2728 c->lumBufIndex= lumBufIndex; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2729 c->chrBufIndex= chrBufIndex; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2730 c->lastInLumBuf= lastInLumBuf; |
9199d15cb4e0
removed global vars so that multiple swscalers can be used
michael
parents:
4248
diff
changeset
|
2731 c->lastInChrBuf= lastInChrBuf; |
3641 | 2732 } |