Mercurial > mplayer.hg
annotate libswscale/swscale_template.c @ 19445:f95c2db61ee3
help_mp-hu.h & xml/hu/ports.xml synced with r19449
author | Gabrov |
---|---|
date | Sat, 19 Aug 2006 12:34:01 +0000 |
parents | 0310c3310360 |
children | 4678e9f81334 |
rev | line source |
---|---|
18861 | 1 /* |
2 Copyright (C) 2001-2003 Michael Niedermayer <michaelni@gmx.at> | |
3 | |
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. | |
8 | |
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
17 */ | |
18 | |
19 #undef REAL_MOVNTQ | |
20 #undef MOVNTQ | |
21 #undef PAVGB | |
22 #undef PREFETCH | |
23 #undef PREFETCHW | |
24 #undef EMMS | |
25 #undef SFENCE | |
26 | |
27 #ifdef HAVE_3DNOW | |
28 /* On K6 femms is faster of emms. On K7 femms is directly mapped on emms. */ | |
29 #define EMMS "femms" | |
30 #else | |
31 #define EMMS "emms" | |
32 #endif | |
33 | |
34 #ifdef HAVE_3DNOW | |
35 #define PREFETCH "prefetch" | |
36 #define PREFETCHW "prefetchw" | |
37 #elif defined ( HAVE_MMX2 ) | |
38 #define PREFETCH "prefetchnta" | |
39 #define PREFETCHW "prefetcht0" | |
40 #else | |
41 #define PREFETCH "/nop" | |
42 #define PREFETCHW "/nop" | |
43 #endif | |
44 | |
45 #ifdef HAVE_MMX2 | |
46 #define SFENCE "sfence" | |
47 #else | |
48 #define SFENCE "/nop" | |
49 #endif | |
50 | |
51 #ifdef HAVE_MMX2 | |
52 #define PAVGB(a,b) "pavgb " #a ", " #b " \n\t" | |
53 #elif defined (HAVE_3DNOW) | |
54 #define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t" | |
55 #endif | |
56 | |
57 #ifdef HAVE_MMX2 | |
58 #define REAL_MOVNTQ(a,b) "movntq " #a ", " #b " \n\t" | |
59 #else | |
60 #define REAL_MOVNTQ(a,b) "movq " #a ", " #b " \n\t" | |
61 #endif | |
62 #define MOVNTQ(a,b) REAL_MOVNTQ(a,b) | |
63 | |
64 #ifdef HAVE_ALTIVEC | |
65 #include "swscale_altivec_template.c" | |
66 #endif | |
67 | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
68 #define YSCALEYUV2YV12X(x, offset, dest, width) \ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
69 asm volatile(\ |
18861 | 70 "xor %%"REG_a", %%"REG_a" \n\t"\ |
71 "movq "VROUNDER_OFFSET"(%0), %%mm3\n\t"\ | |
72 "movq %%mm3, %%mm4 \n\t"\ | |
73 "lea " offset "(%0), %%"REG_d" \n\t"\ | |
74 "mov (%%"REG_d"), %%"REG_S" \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
75 ASMALIGN(4) /* FIXME Unroll? */\ |
18861 | 76 "1: \n\t"\ |
77 "movq 8(%%"REG_d"), %%mm0 \n\t" /* filterCoeff */\ | |
78 "movq " #x "(%%"REG_S", %%"REG_a", 2), %%mm2\n\t" /* srcData */\ | |
79 "movq 8+" #x "(%%"REG_S", %%"REG_a", 2), %%mm5\n\t" /* srcData */\ | |
80 "add $16, %%"REG_d" \n\t"\ | |
81 "mov (%%"REG_d"), %%"REG_S" \n\t"\ | |
82 "test %%"REG_S", %%"REG_S" \n\t"\ | |
83 "pmulhw %%mm0, %%mm2 \n\t"\ | |
84 "pmulhw %%mm0, %%mm5 \n\t"\ | |
85 "paddw %%mm2, %%mm3 \n\t"\ | |
86 "paddw %%mm5, %%mm4 \n\t"\ | |
87 " jnz 1b \n\t"\ | |
88 "psraw $3, %%mm3 \n\t"\ | |
89 "psraw $3, %%mm4 \n\t"\ | |
90 "packuswb %%mm4, %%mm3 \n\t"\ | |
91 MOVNTQ(%%mm3, (%1, %%REGa))\ | |
92 "add $8, %%"REG_a" \n\t"\ | |
93 "cmp %2, %%"REG_a" \n\t"\ | |
94 "movq "VROUNDER_OFFSET"(%0), %%mm3\n\t"\ | |
95 "movq %%mm3, %%mm4 \n\t"\ | |
96 "lea " offset "(%0), %%"REG_d" \n\t"\ | |
97 "mov (%%"REG_d"), %%"REG_S" \n\t"\ | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
98 "jb 1b \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
99 :: "r" (&c->redDither),\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
100 "r" (dest), "p" (width)\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
101 : "%"REG_a, "%"REG_d, "%"REG_S\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
102 ); |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
103 |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
104 #define YSCALEYUV2YV12X_ACCURATE(x, offset, dest, width) \ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
105 asm volatile(\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
106 "lea " offset "(%0), %%"REG_d" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
107 "xor %%"REG_a", %%"REG_a" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
108 "pxor %%mm4, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
109 "pxor %%mm5, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
110 "pxor %%mm6, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
111 "pxor %%mm7, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
112 "mov (%%"REG_d"), %%"REG_S" \n\t"\ |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
113 ASMALIGN(4) \ |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
114 "1: \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
115 "movq " #x "(%%"REG_S", %%"REG_a", 2), %%mm0\n\t" /* srcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
116 "movq 8+" #x "(%%"REG_S", %%"REG_a", 2), %%mm2\n\t" /* srcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
117 "mov 4(%%"REG_d"), %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
118 "movq " #x "(%%"REG_S", %%"REG_a", 2), %%mm1\n\t" /* srcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
119 "movq %%mm0, %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
120 "punpcklwd %%mm1, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
121 "punpckhwd %%mm1, %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
122 "movq 8(%%"REG_d"), %%mm1 \n\t" /* filterCoeff */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
123 "pmaddwd %%mm1, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
124 "pmaddwd %%mm1, %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
125 "paddd %%mm0, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
126 "paddd %%mm3, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
127 "movq 8+" #x "(%%"REG_S", %%"REG_a", 2), %%mm3\n\t" /* srcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
128 "mov 16(%%"REG_d"), %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
129 "add $16, %%"REG_d" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
130 "test %%"REG_S", %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
131 "movq %%mm2, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
132 "punpcklwd %%mm3, %%mm2 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
133 "punpckhwd %%mm3, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
134 "pmaddwd %%mm1, %%mm2 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
135 "pmaddwd %%mm1, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
136 "paddd %%mm2, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
137 "paddd %%mm0, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
138 " jnz 1b \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
139 "psrad $16, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
140 "psrad $16, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
141 "psrad $16, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
142 "psrad $16, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
143 "movq "VROUNDER_OFFSET"(%0), %%mm0\n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
144 "packssdw %%mm5, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
145 "packssdw %%mm7, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
146 "paddw %%mm0, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
147 "paddw %%mm0, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
148 "psraw $3, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
149 "psraw $3, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
150 "packuswb %%mm6, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
151 MOVNTQ(%%mm4, (%1, %%REGa))\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
152 "add $8, %%"REG_a" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
153 "cmp %2, %%"REG_a" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
154 "lea " offset "(%0), %%"REG_d" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
155 "pxor %%mm4, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
156 "pxor %%mm5, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
157 "pxor %%mm6, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
158 "pxor %%mm7, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
159 "mov (%%"REG_d"), %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
160 "jb 1b \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
161 :: "r" (&c->redDither),\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
162 "r" (dest), "p" (width)\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
163 : "%"REG_a, "%"REG_d, "%"REG_S\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
164 ); |
18861 | 165 |
166 #define YSCALEYUV2YV121 \ | |
167 "mov %2, %%"REG_a" \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
168 ASMALIGN(4) /* FIXME Unroll? */\ |
18861 | 169 "1: \n\t"\ |
170 "movq (%0, %%"REG_a", 2), %%mm0 \n\t"\ | |
171 "movq 8(%0, %%"REG_a", 2), %%mm1\n\t"\ | |
172 "psraw $7, %%mm0 \n\t"\ | |
173 "psraw $7, %%mm1 \n\t"\ | |
174 "packuswb %%mm1, %%mm0 \n\t"\ | |
175 MOVNTQ(%%mm0, (%1, %%REGa))\ | |
176 "add $8, %%"REG_a" \n\t"\ | |
177 "jnc 1b \n\t" | |
178 | |
179 /* | |
180 :: "m" (-lumFilterSize), "m" (-chrFilterSize), | |
181 "m" (lumMmxFilter+lumFilterSize*4), "m" (chrMmxFilter+chrFilterSize*4), | |
182 "r" (dest), "m" (dstW), | |
183 "m" (lumSrc+lumFilterSize), "m" (chrSrc+chrFilterSize) | |
184 : "%eax", "%ebx", "%ecx", "%edx", "%esi" | |
185 */ | |
186 #define YSCALEYUV2PACKEDX \ | |
19173 | 187 asm volatile(\ |
18861 | 188 "xor %%"REG_a", %%"REG_a" \n\t"\ |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
189 ASMALIGN(4)\ |
18861 | 190 "nop \n\t"\ |
191 "1: \n\t"\ | |
192 "lea "CHR_MMX_FILTER_OFFSET"(%0), %%"REG_d"\n\t"\ | |
193 "mov (%%"REG_d"), %%"REG_S" \n\t"\ | |
194 "movq "VROUNDER_OFFSET"(%0), %%mm3\n\t"\ | |
195 "movq %%mm3, %%mm4 \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
196 ASMALIGN(4)\ |
18861 | 197 "2: \n\t"\ |
198 "movq 8(%%"REG_d"), %%mm0 \n\t" /* filterCoeff */\ | |
199 "movq (%%"REG_S", %%"REG_a"), %%mm2 \n\t" /* UsrcData */\ | |
200 "movq 4096(%%"REG_S", %%"REG_a"), %%mm5 \n\t" /* VsrcData */\ | |
201 "add $16, %%"REG_d" \n\t"\ | |
202 "mov (%%"REG_d"), %%"REG_S" \n\t"\ | |
203 "pmulhw %%mm0, %%mm2 \n\t"\ | |
204 "pmulhw %%mm0, %%mm5 \n\t"\ | |
205 "paddw %%mm2, %%mm3 \n\t"\ | |
206 "paddw %%mm5, %%mm4 \n\t"\ | |
207 "test %%"REG_S", %%"REG_S" \n\t"\ | |
208 " jnz 2b \n\t"\ | |
209 \ | |
210 "lea "LUM_MMX_FILTER_OFFSET"(%0), %%"REG_d"\n\t"\ | |
211 "mov (%%"REG_d"), %%"REG_S" \n\t"\ | |
212 "movq "VROUNDER_OFFSET"(%0), %%mm1\n\t"\ | |
213 "movq %%mm1, %%mm7 \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
214 ASMALIGN(4)\ |
18861 | 215 "2: \n\t"\ |
216 "movq 8(%%"REG_d"), %%mm0 \n\t" /* filterCoeff */\ | |
217 "movq (%%"REG_S", %%"REG_a", 2), %%mm2 \n\t" /* Y1srcData */\ | |
218 "movq 8(%%"REG_S", %%"REG_a", 2), %%mm5 \n\t" /* Y2srcData */\ | |
219 "add $16, %%"REG_d" \n\t"\ | |
220 "mov (%%"REG_d"), %%"REG_S" \n\t"\ | |
221 "pmulhw %%mm0, %%mm2 \n\t"\ | |
222 "pmulhw %%mm0, %%mm5 \n\t"\ | |
223 "paddw %%mm2, %%mm1 \n\t"\ | |
224 "paddw %%mm5, %%mm7 \n\t"\ | |
225 "test %%"REG_S", %%"REG_S" \n\t"\ | |
226 " jnz 2b \n\t"\ | |
227 | |
19173 | 228 #define YSCALEYUV2PACKEDX_END\ |
229 :: "r" (&c->redDither), \ | |
230 "m" (dummy), "m" (dummy), "m" (dummy),\ | |
231 "r" (dest), "m" (dstW)\ | |
232 : "%"REG_a, "%"REG_d, "%"REG_S\ | |
233 ); | |
234 | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
235 #define YSCALEYUV2PACKEDX_ACCURATE \ |
19173 | 236 asm volatile(\ |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
237 "xor %%"REG_a", %%"REG_a" \n\t"\ |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
238 ASMALIGN(4)\ |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
239 "nop \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
240 "1: \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
241 "lea "CHR_MMX_FILTER_OFFSET"(%0), %%"REG_d"\n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
242 "mov (%%"REG_d"), %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
243 "pxor %%mm4, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
244 "pxor %%mm5, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
245 "pxor %%mm6, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
246 "pxor %%mm7, %%mm7 \n\t"\ |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
247 ASMALIGN(4)\ |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
248 "2: \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
249 "movq (%%"REG_S", %%"REG_a"), %%mm0 \n\t" /* UsrcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
250 "movq 4096(%%"REG_S", %%"REG_a"), %%mm2 \n\t" /* VsrcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
251 "mov 4(%%"REG_d"), %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
252 "movq (%%"REG_S", %%"REG_a"), %%mm1 \n\t" /* UsrcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
253 "movq %%mm0, %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
254 "punpcklwd %%mm1, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
255 "punpckhwd %%mm1, %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
256 "movq 8(%%"REG_d"), %%mm1 \n\t" /* filterCoeff */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
257 "pmaddwd %%mm1, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
258 "pmaddwd %%mm1, %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
259 "paddd %%mm0, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
260 "paddd %%mm3, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
261 "movq 4096(%%"REG_S", %%"REG_a"), %%mm3 \n\t" /* VsrcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
262 "mov 16(%%"REG_d"), %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
263 "add $16, %%"REG_d" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
264 "test %%"REG_S", %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
265 "movq %%mm2, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
266 "punpcklwd %%mm3, %%mm2 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
267 "punpckhwd %%mm3, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
268 "pmaddwd %%mm1, %%mm2 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
269 "pmaddwd %%mm1, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
270 "paddd %%mm2, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
271 "paddd %%mm0, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
272 " jnz 2b \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
273 "psrad $16, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
274 "psrad $16, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
275 "psrad $16, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
276 "psrad $16, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
277 "movq "VROUNDER_OFFSET"(%0), %%mm0\n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
278 "packssdw %%mm5, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
279 "packssdw %%mm7, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
280 "paddw %%mm0, %%mm4 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
281 "paddw %%mm0, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
282 "movq %%mm4, "U_TEMP"(%0) \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
283 "movq %%mm6, "V_TEMP"(%0) \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
284 \ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
285 "lea "LUM_MMX_FILTER_OFFSET"(%0), %%"REG_d"\n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
286 "mov (%%"REG_d"), %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
287 "pxor %%mm1, %%mm1 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
288 "pxor %%mm5, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
289 "pxor %%mm7, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
290 "pxor %%mm6, %%mm6 \n\t"\ |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
291 ASMALIGN(4)\ |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
292 "2: \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
293 "movq (%%"REG_S", %%"REG_a", 2), %%mm0 \n\t" /* Y1srcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
294 "movq 8(%%"REG_S", %%"REG_a", 2), %%mm2 \n\t" /* Y2srcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
295 "mov 4(%%"REG_d"), %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
296 "movq (%%"REG_S", %%"REG_a", 2), %%mm4 \n\t" /* Y1srcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
297 "movq %%mm0, %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
298 "punpcklwd %%mm4, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
299 "punpckhwd %%mm4, %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
300 "movq 8(%%"REG_d"), %%mm4 \n\t" /* filterCoeff */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
301 "pmaddwd %%mm4, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
302 "pmaddwd %%mm4, %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
303 "paddd %%mm0, %%mm1 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
304 "paddd %%mm3, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
305 "movq 8(%%"REG_S", %%"REG_a", 2), %%mm3 \n\t" /* Y2srcData */\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
306 "mov 16(%%"REG_d"), %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
307 "add $16, %%"REG_d" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
308 "test %%"REG_S", %%"REG_S" \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
309 "movq %%mm2, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
310 "punpcklwd %%mm3, %%mm2 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
311 "punpckhwd %%mm3, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
312 "pmaddwd %%mm4, %%mm2 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
313 "pmaddwd %%mm4, %%mm0 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
314 "paddd %%mm2, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
315 "paddd %%mm0, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
316 " jnz 2b \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
317 "psrad $16, %%mm1 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
318 "psrad $16, %%mm5 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
319 "psrad $16, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
320 "psrad $16, %%mm6 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
321 "movq "VROUNDER_OFFSET"(%0), %%mm0\n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
322 "packssdw %%mm5, %%mm1 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
323 "packssdw %%mm6, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
324 "paddw %%mm0, %%mm1 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
325 "paddw %%mm0, %%mm7 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
326 "movq "U_TEMP"(%0), %%mm3 \n\t"\ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
327 "movq "V_TEMP"(%0), %%mm4 \n\t"\ |
18861 | 328 |
19173 | 329 #define YSCALEYUV2RGBX \ |
18861 | 330 "psubw "U_OFFSET"(%0), %%mm3 \n\t" /* (U-128)8*/\ |
331 "psubw "V_OFFSET"(%0), %%mm4 \n\t" /* (V-128)8*/\ | |
332 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\ | |
333 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\ | |
334 "pmulhw "UG_COEFF"(%0), %%mm3 \n\t"\ | |
335 "pmulhw "VG_COEFF"(%0), %%mm4 \n\t"\ | |
336 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\ | |
337 "pmulhw "UB_COEFF"(%0), %%mm2 \n\t"\ | |
338 "pmulhw "VR_COEFF"(%0), %%mm5 \n\t"\ | |
339 "psubw "Y_OFFSET"(%0), %%mm1 \n\t" /* 8(Y-16)*/\ | |
340 "psubw "Y_OFFSET"(%0), %%mm7 \n\t" /* 8(Y-16)*/\ | |
341 "pmulhw "Y_COEFF"(%0), %%mm1 \n\t"\ | |
342 "pmulhw "Y_COEFF"(%0), %%mm7 \n\t"\ | |
343 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\ | |
344 "paddw %%mm3, %%mm4 \n\t"\ | |
345 "movq %%mm2, %%mm0 \n\t"\ | |
346 "movq %%mm5, %%mm6 \n\t"\ | |
347 "movq %%mm4, %%mm3 \n\t"\ | |
348 "punpcklwd %%mm2, %%mm2 \n\t"\ | |
349 "punpcklwd %%mm5, %%mm5 \n\t"\ | |
350 "punpcklwd %%mm4, %%mm4 \n\t"\ | |
351 "paddw %%mm1, %%mm2 \n\t"\ | |
352 "paddw %%mm1, %%mm5 \n\t"\ | |
353 "paddw %%mm1, %%mm4 \n\t"\ | |
354 "punpckhwd %%mm0, %%mm0 \n\t"\ | |
355 "punpckhwd %%mm6, %%mm6 \n\t"\ | |
356 "punpckhwd %%mm3, %%mm3 \n\t"\ | |
357 "paddw %%mm7, %%mm0 \n\t"\ | |
358 "paddw %%mm7, %%mm6 \n\t"\ | |
359 "paddw %%mm7, %%mm3 \n\t"\ | |
360 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\ | |
361 "packuswb %%mm0, %%mm2 \n\t"\ | |
362 "packuswb %%mm6, %%mm5 \n\t"\ | |
363 "packuswb %%mm3, %%mm4 \n\t"\ | |
364 "pxor %%mm7, %%mm7 \n\t" | |
365 #if 0 | |
366 #define FULL_YSCALEYUV2RGB \ | |
367 "pxor %%mm7, %%mm7 \n\t"\ | |
368 "movd %6, %%mm6 \n\t" /*yalpha1*/\ | |
369 "punpcklwd %%mm6, %%mm6 \n\t"\ | |
370 "punpcklwd %%mm6, %%mm6 \n\t"\ | |
371 "movd %7, %%mm5 \n\t" /*uvalpha1*/\ | |
372 "punpcklwd %%mm5, %%mm5 \n\t"\ | |
373 "punpcklwd %%mm5, %%mm5 \n\t"\ | |
374 "xor %%"REG_a", %%"REG_a" \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
375 ASMALIGN(4)\ |
18861 | 376 "1: \n\t"\ |
377 "movq (%0, %%"REG_a", 2), %%mm0 \n\t" /*buf0[eax]*/\ | |
378 "movq (%1, %%"REG_a", 2), %%mm1 \n\t" /*buf1[eax]*/\ | |
379 "movq (%2, %%"REG_a",2), %%mm2 \n\t" /* uvbuf0[eax]*/\ | |
380 "movq (%3, %%"REG_a",2), %%mm3 \n\t" /* uvbuf1[eax]*/\ | |
381 "psubw %%mm1, %%mm0 \n\t" /* buf0[eax] - buf1[eax]*/\ | |
382 "psubw %%mm3, %%mm2 \n\t" /* uvbuf0[eax] - uvbuf1[eax]*/\ | |
383 "pmulhw %%mm6, %%mm0 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\ | |
384 "pmulhw %%mm5, %%mm2 \n\t" /* (uvbuf0[eax] - uvbuf1[eax])uvalpha1>>16*/\ | |
385 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
386 "movq 4096(%2, %%"REG_a",2), %%mm4 \n\t" /* uvbuf0[eax+2048]*/\ | |
387 "psraw $4, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\ | |
388 "paddw %%mm0, %%mm1 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\ | |
389 "movq 4096(%3, %%"REG_a",2), %%mm0 \n\t" /* uvbuf1[eax+2048]*/\ | |
390 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax]uvalpha1 - uvbuf1[eax](1-uvalpha1)*/\ | |
391 "psubw %%mm0, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\ | |
392 "psubw "MANGLE(w80)", %%mm1 \n\t" /* 8(Y-16)*/\ | |
393 "psubw "MANGLE(w400)", %%mm3 \n\t" /* 8(U-128)*/\ | |
394 "pmulhw "MANGLE(yCoeff)", %%mm1 \n\t"\ | |
395 \ | |
396 \ | |
397 "pmulhw %%mm5, %%mm4 \n\t" /* (uvbuf0[eax+2048] - uvbuf1[eax+2048])uvalpha1>>16*/\ | |
398 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\ | |
399 "pmulhw "MANGLE(ubCoeff)", %%mm3\n\t"\ | |
400 "psraw $4, %%mm0 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\ | |
401 "pmulhw "MANGLE(ugCoeff)", %%mm2\n\t"\ | |
402 "paddw %%mm4, %%mm0 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\ | |
403 "psubw "MANGLE(w400)", %%mm0 \n\t" /* (V-128)8*/\ | |
404 \ | |
405 \ | |
406 "movq %%mm0, %%mm4 \n\t" /* (V-128)8*/\ | |
407 "pmulhw "MANGLE(vrCoeff)", %%mm0\n\t"\ | |
408 "pmulhw "MANGLE(vgCoeff)", %%mm4\n\t"\ | |
409 "paddw %%mm1, %%mm3 \n\t" /* B*/\ | |
410 "paddw %%mm1, %%mm0 \n\t" /* R*/\ | |
411 "packuswb %%mm3, %%mm3 \n\t"\ | |
412 \ | |
413 "packuswb %%mm0, %%mm0 \n\t"\ | |
414 "paddw %%mm4, %%mm2 \n\t"\ | |
415 "paddw %%mm2, %%mm1 \n\t" /* G*/\ | |
416 \ | |
417 "packuswb %%mm1, %%mm1 \n\t" | |
418 #endif | |
419 | |
420 #define REAL_YSCALEYUV2PACKED(index, c) \ | |
421 "movq "CHR_MMX_FILTER_OFFSET"+8("#c"), %%mm0\n\t"\ | |
422 "movq "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm1\n\t"\ | |
423 "psraw $3, %%mm0 \n\t"\ | |
424 "psraw $3, %%mm1 \n\t"\ | |
425 "movq %%mm0, "CHR_MMX_FILTER_OFFSET"+8("#c")\n\t"\ | |
426 "movq %%mm1, "LUM_MMX_FILTER_OFFSET"+8("#c")\n\t"\ | |
427 "xor "#index", "#index" \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
428 ASMALIGN(4)\ |
18861 | 429 "1: \n\t"\ |
430 "movq (%2, "#index"), %%mm2 \n\t" /* uvbuf0[eax]*/\ | |
431 "movq (%3, "#index"), %%mm3 \n\t" /* uvbuf1[eax]*/\ | |
432 "movq 4096(%2, "#index"), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\ | |
433 "movq 4096(%3, "#index"), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\ | |
434 "psubw %%mm3, %%mm2 \n\t" /* uvbuf0[eax] - uvbuf1[eax]*/\ | |
435 "psubw %%mm4, %%mm5 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\ | |
436 "movq "CHR_MMX_FILTER_OFFSET"+8("#c"), %%mm0\n\t"\ | |
437 "pmulhw %%mm0, %%mm2 \n\t" /* (uvbuf0[eax] - uvbuf1[eax])uvalpha1>>16*/\ | |
438 "pmulhw %%mm0, %%mm5 \n\t" /* (uvbuf0[eax+2048] - uvbuf1[eax+2048])uvalpha1>>16*/\ | |
439 "psraw $7, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\ | |
440 "psraw $7, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\ | |
441 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax]uvalpha1 - uvbuf1[eax](1-uvalpha1)*/\ | |
442 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\ | |
443 "movq (%0, "#index", 2), %%mm0 \n\t" /*buf0[eax]*/\ | |
444 "movq (%1, "#index", 2), %%mm1 \n\t" /*buf1[eax]*/\ | |
445 "movq 8(%0, "#index", 2), %%mm6 \n\t" /*buf0[eax]*/\ | |
446 "movq 8(%1, "#index", 2), %%mm7 \n\t" /*buf1[eax]*/\ | |
447 "psubw %%mm1, %%mm0 \n\t" /* buf0[eax] - buf1[eax]*/\ | |
448 "psubw %%mm7, %%mm6 \n\t" /* buf0[eax] - buf1[eax]*/\ | |
449 "pmulhw "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm0\n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\ | |
450 "pmulhw "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm6\n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\ | |
451 "psraw $7, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
452 "psraw $7, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
453 "paddw %%mm0, %%mm1 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\ | |
454 "paddw %%mm6, %%mm7 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\ | |
455 | |
456 #define YSCALEYUV2PACKED(index, c) REAL_YSCALEYUV2PACKED(index, c) | |
457 | |
458 #define REAL_YSCALEYUV2RGB(index, c) \ | |
459 "xor "#index", "#index" \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
460 ASMALIGN(4)\ |
18861 | 461 "1: \n\t"\ |
462 "movq (%2, "#index"), %%mm2 \n\t" /* uvbuf0[eax]*/\ | |
463 "movq (%3, "#index"), %%mm3 \n\t" /* uvbuf1[eax]*/\ | |
464 "movq 4096(%2, "#index"), %%mm5\n\t" /* uvbuf0[eax+2048]*/\ | |
465 "movq 4096(%3, "#index"), %%mm4\n\t" /* uvbuf1[eax+2048]*/\ | |
466 "psubw %%mm3, %%mm2 \n\t" /* uvbuf0[eax] - uvbuf1[eax]*/\ | |
467 "psubw %%mm4, %%mm5 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\ | |
468 "movq "CHR_MMX_FILTER_OFFSET"+8("#c"), %%mm0\n\t"\ | |
469 "pmulhw %%mm0, %%mm2 \n\t" /* (uvbuf0[eax] - uvbuf1[eax])uvalpha1>>16*/\ | |
470 "pmulhw %%mm0, %%mm5 \n\t" /* (uvbuf0[eax+2048] - uvbuf1[eax+2048])uvalpha1>>16*/\ | |
471 "psraw $4, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\ | |
472 "psraw $4, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\ | |
473 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax]uvalpha1 - uvbuf1[eax](1-uvalpha1)*/\ | |
474 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\ | |
475 "psubw "U_OFFSET"("#c"), %%mm3 \n\t" /* (U-128)8*/\ | |
476 "psubw "V_OFFSET"("#c"), %%mm4 \n\t" /* (V-128)8*/\ | |
477 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\ | |
478 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\ | |
479 "pmulhw "UG_COEFF"("#c"), %%mm3\n\t"\ | |
480 "pmulhw "VG_COEFF"("#c"), %%mm4\n\t"\ | |
481 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\ | |
482 "movq (%0, "#index", 2), %%mm0 \n\t" /*buf0[eax]*/\ | |
483 "movq (%1, "#index", 2), %%mm1 \n\t" /*buf1[eax]*/\ | |
484 "movq 8(%0, "#index", 2), %%mm6\n\t" /*buf0[eax]*/\ | |
485 "movq 8(%1, "#index", 2), %%mm7\n\t" /*buf1[eax]*/\ | |
486 "psubw %%mm1, %%mm0 \n\t" /* buf0[eax] - buf1[eax]*/\ | |
487 "psubw %%mm7, %%mm6 \n\t" /* buf0[eax] - buf1[eax]*/\ | |
488 "pmulhw "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm0\n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\ | |
489 "pmulhw "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm6\n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\ | |
490 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
491 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
492 "paddw %%mm0, %%mm1 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\ | |
493 "paddw %%mm6, %%mm7 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\ | |
494 "pmulhw "UB_COEFF"("#c"), %%mm2\n\t"\ | |
495 "pmulhw "VR_COEFF"("#c"), %%mm5\n\t"\ | |
496 "psubw "Y_OFFSET"("#c"), %%mm1 \n\t" /* 8(Y-16)*/\ | |
497 "psubw "Y_OFFSET"("#c"), %%mm7 \n\t" /* 8(Y-16)*/\ | |
498 "pmulhw "Y_COEFF"("#c"), %%mm1 \n\t"\ | |
499 "pmulhw "Y_COEFF"("#c"), %%mm7 \n\t"\ | |
500 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\ | |
501 "paddw %%mm3, %%mm4 \n\t"\ | |
502 "movq %%mm2, %%mm0 \n\t"\ | |
503 "movq %%mm5, %%mm6 \n\t"\ | |
504 "movq %%mm4, %%mm3 \n\t"\ | |
505 "punpcklwd %%mm2, %%mm2 \n\t"\ | |
506 "punpcklwd %%mm5, %%mm5 \n\t"\ | |
507 "punpcklwd %%mm4, %%mm4 \n\t"\ | |
508 "paddw %%mm1, %%mm2 \n\t"\ | |
509 "paddw %%mm1, %%mm5 \n\t"\ | |
510 "paddw %%mm1, %%mm4 \n\t"\ | |
511 "punpckhwd %%mm0, %%mm0 \n\t"\ | |
512 "punpckhwd %%mm6, %%mm6 \n\t"\ | |
513 "punpckhwd %%mm3, %%mm3 \n\t"\ | |
514 "paddw %%mm7, %%mm0 \n\t"\ | |
515 "paddw %%mm7, %%mm6 \n\t"\ | |
516 "paddw %%mm7, %%mm3 \n\t"\ | |
517 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\ | |
518 "packuswb %%mm0, %%mm2 \n\t"\ | |
519 "packuswb %%mm6, %%mm5 \n\t"\ | |
520 "packuswb %%mm3, %%mm4 \n\t"\ | |
521 "pxor %%mm7, %%mm7 \n\t" | |
522 #define YSCALEYUV2RGB(index, c) REAL_YSCALEYUV2RGB(index, c) | |
523 | |
524 #define REAL_YSCALEYUV2PACKED1(index, c) \ | |
525 "xor "#index", "#index" \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
526 ASMALIGN(4)\ |
18861 | 527 "1: \n\t"\ |
528 "movq (%2, "#index"), %%mm3 \n\t" /* uvbuf0[eax]*/\ | |
529 "movq 4096(%2, "#index"), %%mm4 \n\t" /* uvbuf0[eax+2048]*/\ | |
530 "psraw $7, %%mm3 \n\t" \ | |
531 "psraw $7, %%mm4 \n\t" \ | |
532 "movq (%0, "#index", 2), %%mm1 \n\t" /*buf0[eax]*/\ | |
533 "movq 8(%0, "#index", 2), %%mm7 \n\t" /*buf0[eax]*/\ | |
534 "psraw $7, %%mm1 \n\t" \ | |
535 "psraw $7, %%mm7 \n\t" \ | |
536 | |
537 #define YSCALEYUV2PACKED1(index, c) REAL_YSCALEYUV2PACKED1(index, c) | |
538 | |
539 #define REAL_YSCALEYUV2RGB1(index, c) \ | |
540 "xor "#index", "#index" \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
541 ASMALIGN(4)\ |
18861 | 542 "1: \n\t"\ |
543 "movq (%2, "#index"), %%mm3 \n\t" /* uvbuf0[eax]*/\ | |
544 "movq 4096(%2, "#index"), %%mm4 \n\t" /* uvbuf0[eax+2048]*/\ | |
545 "psraw $4, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\ | |
546 "psraw $4, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\ | |
547 "psubw "U_OFFSET"("#c"), %%mm3 \n\t" /* (U-128)8*/\ | |
548 "psubw "V_OFFSET"("#c"), %%mm4 \n\t" /* (V-128)8*/\ | |
549 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\ | |
550 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\ | |
551 "pmulhw "UG_COEFF"("#c"), %%mm3\n\t"\ | |
552 "pmulhw "VG_COEFF"("#c"), %%mm4\n\t"\ | |
553 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\ | |
554 "movq (%0, "#index", 2), %%mm1 \n\t" /*buf0[eax]*/\ | |
555 "movq 8(%0, "#index", 2), %%mm7 \n\t" /*buf0[eax]*/\ | |
556 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
557 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
558 "pmulhw "UB_COEFF"("#c"), %%mm2\n\t"\ | |
559 "pmulhw "VR_COEFF"("#c"), %%mm5\n\t"\ | |
560 "psubw "Y_OFFSET"("#c"), %%mm1 \n\t" /* 8(Y-16)*/\ | |
561 "psubw "Y_OFFSET"("#c"), %%mm7 \n\t" /* 8(Y-16)*/\ | |
562 "pmulhw "Y_COEFF"("#c"), %%mm1 \n\t"\ | |
563 "pmulhw "Y_COEFF"("#c"), %%mm7 \n\t"\ | |
564 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\ | |
565 "paddw %%mm3, %%mm4 \n\t"\ | |
566 "movq %%mm2, %%mm0 \n\t"\ | |
567 "movq %%mm5, %%mm6 \n\t"\ | |
568 "movq %%mm4, %%mm3 \n\t"\ | |
569 "punpcklwd %%mm2, %%mm2 \n\t"\ | |
570 "punpcklwd %%mm5, %%mm5 \n\t"\ | |
571 "punpcklwd %%mm4, %%mm4 \n\t"\ | |
572 "paddw %%mm1, %%mm2 \n\t"\ | |
573 "paddw %%mm1, %%mm5 \n\t"\ | |
574 "paddw %%mm1, %%mm4 \n\t"\ | |
575 "punpckhwd %%mm0, %%mm0 \n\t"\ | |
576 "punpckhwd %%mm6, %%mm6 \n\t"\ | |
577 "punpckhwd %%mm3, %%mm3 \n\t"\ | |
578 "paddw %%mm7, %%mm0 \n\t"\ | |
579 "paddw %%mm7, %%mm6 \n\t"\ | |
580 "paddw %%mm7, %%mm3 \n\t"\ | |
581 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\ | |
582 "packuswb %%mm0, %%mm2 \n\t"\ | |
583 "packuswb %%mm6, %%mm5 \n\t"\ | |
584 "packuswb %%mm3, %%mm4 \n\t"\ | |
585 "pxor %%mm7, %%mm7 \n\t" | |
586 #define YSCALEYUV2RGB1(index, c) REAL_YSCALEYUV2RGB1(index, c) | |
587 | |
588 #define REAL_YSCALEYUV2PACKED1b(index, c) \ | |
589 "xor "#index", "#index" \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
590 ASMALIGN(4)\ |
18861 | 591 "1: \n\t"\ |
592 "movq (%2, "#index"), %%mm2 \n\t" /* uvbuf0[eax]*/\ | |
593 "movq (%3, "#index"), %%mm3 \n\t" /* uvbuf1[eax]*/\ | |
594 "movq 4096(%2, "#index"), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\ | |
595 "movq 4096(%3, "#index"), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\ | |
596 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax] + uvbuf1[eax]*/\ | |
597 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048] + uvbuf1[eax+2048]*/\ | |
598 "psrlw $8, %%mm3 \n\t" \ | |
599 "psrlw $8, %%mm4 \n\t" \ | |
600 "movq (%0, "#index", 2), %%mm1 \n\t" /*buf0[eax]*/\ | |
601 "movq 8(%0, "#index", 2), %%mm7 \n\t" /*buf0[eax]*/\ | |
602 "psraw $7, %%mm1 \n\t" \ | |
603 "psraw $7, %%mm7 \n\t" | |
604 #define YSCALEYUV2PACKED1b(index, c) REAL_YSCALEYUV2PACKED1b(index, c) | |
605 | |
606 // do vertical chrominance interpolation | |
607 #define REAL_YSCALEYUV2RGB1b(index, c) \ | |
608 "xor "#index", "#index" \n\t"\ | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
609 ASMALIGN(4)\ |
18861 | 610 "1: \n\t"\ |
611 "movq (%2, "#index"), %%mm2 \n\t" /* uvbuf0[eax]*/\ | |
612 "movq (%3, "#index"), %%mm3 \n\t" /* uvbuf1[eax]*/\ | |
613 "movq 4096(%2, "#index"), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\ | |
614 "movq 4096(%3, "#index"), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\ | |
615 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax] + uvbuf1[eax]*/\ | |
616 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048] + uvbuf1[eax+2048]*/\ | |
617 "psrlw $5, %%mm3 \n\t" /*FIXME might overflow*/\ | |
618 "psrlw $5, %%mm4 \n\t" /*FIXME might overflow*/\ | |
619 "psubw "U_OFFSET"("#c"), %%mm3 \n\t" /* (U-128)8*/\ | |
620 "psubw "V_OFFSET"("#c"), %%mm4 \n\t" /* (V-128)8*/\ | |
621 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\ | |
622 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\ | |
623 "pmulhw "UG_COEFF"("#c"), %%mm3\n\t"\ | |
624 "pmulhw "VG_COEFF"("#c"), %%mm4\n\t"\ | |
625 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\ | |
626 "movq (%0, "#index", 2), %%mm1 \n\t" /*buf0[eax]*/\ | |
627 "movq 8(%0, "#index", 2), %%mm7 \n\t" /*buf0[eax]*/\ | |
628 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
629 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\ | |
630 "pmulhw "UB_COEFF"("#c"), %%mm2\n\t"\ | |
631 "pmulhw "VR_COEFF"("#c"), %%mm5\n\t"\ | |
632 "psubw "Y_OFFSET"("#c"), %%mm1 \n\t" /* 8(Y-16)*/\ | |
633 "psubw "Y_OFFSET"("#c"), %%mm7 \n\t" /* 8(Y-16)*/\ | |
634 "pmulhw "Y_COEFF"("#c"), %%mm1 \n\t"\ | |
635 "pmulhw "Y_COEFF"("#c"), %%mm7 \n\t"\ | |
636 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\ | |
637 "paddw %%mm3, %%mm4 \n\t"\ | |
638 "movq %%mm2, %%mm0 \n\t"\ | |
639 "movq %%mm5, %%mm6 \n\t"\ | |
640 "movq %%mm4, %%mm3 \n\t"\ | |
641 "punpcklwd %%mm2, %%mm2 \n\t"\ | |
642 "punpcklwd %%mm5, %%mm5 \n\t"\ | |
643 "punpcklwd %%mm4, %%mm4 \n\t"\ | |
644 "paddw %%mm1, %%mm2 \n\t"\ | |
645 "paddw %%mm1, %%mm5 \n\t"\ | |
646 "paddw %%mm1, %%mm4 \n\t"\ | |
647 "punpckhwd %%mm0, %%mm0 \n\t"\ | |
648 "punpckhwd %%mm6, %%mm6 \n\t"\ | |
649 "punpckhwd %%mm3, %%mm3 \n\t"\ | |
650 "paddw %%mm7, %%mm0 \n\t"\ | |
651 "paddw %%mm7, %%mm6 \n\t"\ | |
652 "paddw %%mm7, %%mm3 \n\t"\ | |
653 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\ | |
654 "packuswb %%mm0, %%mm2 \n\t"\ | |
655 "packuswb %%mm6, %%mm5 \n\t"\ | |
656 "packuswb %%mm3, %%mm4 \n\t"\ | |
657 "pxor %%mm7, %%mm7 \n\t" | |
658 #define YSCALEYUV2RGB1b(index, c) REAL_YSCALEYUV2RGB1b(index, c) | |
659 | |
660 #define REAL_WRITEBGR32(dst, dstw, index) \ | |
661 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\ | |
662 "movq %%mm2, %%mm1 \n\t" /* B */\ | |
663 "movq %%mm5, %%mm6 \n\t" /* R */\ | |
664 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\ | |
665 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\ | |
666 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\ | |
667 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\ | |
668 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\ | |
669 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\ | |
670 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\ | |
671 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\ | |
672 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\ | |
673 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\ | |
674 \ | |
675 MOVNTQ(%%mm0, (dst, index, 4))\ | |
676 MOVNTQ(%%mm2, 8(dst, index, 4))\ | |
677 MOVNTQ(%%mm1, 16(dst, index, 4))\ | |
678 MOVNTQ(%%mm3, 24(dst, index, 4))\ | |
679 \ | |
680 "add $8, "#index" \n\t"\ | |
681 "cmp "#dstw", "#index" \n\t"\ | |
682 " jb 1b \n\t" | |
683 #define WRITEBGR32(dst, dstw, index) REAL_WRITEBGR32(dst, dstw, index) | |
684 | |
685 #define REAL_WRITEBGR16(dst, dstw, index) \ | |
686 "pand "MANGLE(bF8)", %%mm2 \n\t" /* B */\ | |
687 "pand "MANGLE(bFC)", %%mm4 \n\t" /* G */\ | |
688 "pand "MANGLE(bF8)", %%mm5 \n\t" /* R */\ | |
689 "psrlq $3, %%mm2 \n\t"\ | |
690 \ | |
691 "movq %%mm2, %%mm1 \n\t"\ | |
692 "movq %%mm4, %%mm3 \n\t"\ | |
693 \ | |
694 "punpcklbw %%mm7, %%mm3 \n\t"\ | |
695 "punpcklbw %%mm5, %%mm2 \n\t"\ | |
696 "punpckhbw %%mm7, %%mm4 \n\t"\ | |
697 "punpckhbw %%mm5, %%mm1 \n\t"\ | |
698 \ | |
699 "psllq $3, %%mm3 \n\t"\ | |
700 "psllq $3, %%mm4 \n\t"\ | |
701 \ | |
702 "por %%mm3, %%mm2 \n\t"\ | |
703 "por %%mm4, %%mm1 \n\t"\ | |
704 \ | |
705 MOVNTQ(%%mm2, (dst, index, 2))\ | |
706 MOVNTQ(%%mm1, 8(dst, index, 2))\ | |
707 \ | |
708 "add $8, "#index" \n\t"\ | |
709 "cmp "#dstw", "#index" \n\t"\ | |
710 " jb 1b \n\t" | |
711 #define WRITEBGR16(dst, dstw, index) REAL_WRITEBGR16(dst, dstw, index) | |
712 | |
713 #define REAL_WRITEBGR15(dst, dstw, index) \ | |
714 "pand "MANGLE(bF8)", %%mm2 \n\t" /* B */\ | |
715 "pand "MANGLE(bF8)", %%mm4 \n\t" /* G */\ | |
716 "pand "MANGLE(bF8)", %%mm5 \n\t" /* R */\ | |
717 "psrlq $3, %%mm2 \n\t"\ | |
718 "psrlq $1, %%mm5 \n\t"\ | |
719 \ | |
720 "movq %%mm2, %%mm1 \n\t"\ | |
721 "movq %%mm4, %%mm3 \n\t"\ | |
722 \ | |
723 "punpcklbw %%mm7, %%mm3 \n\t"\ | |
724 "punpcklbw %%mm5, %%mm2 \n\t"\ | |
725 "punpckhbw %%mm7, %%mm4 \n\t"\ | |
726 "punpckhbw %%mm5, %%mm1 \n\t"\ | |
727 \ | |
728 "psllq $2, %%mm3 \n\t"\ | |
729 "psllq $2, %%mm4 \n\t"\ | |
730 \ | |
731 "por %%mm3, %%mm2 \n\t"\ | |
732 "por %%mm4, %%mm1 \n\t"\ | |
733 \ | |
734 MOVNTQ(%%mm2, (dst, index, 2))\ | |
735 MOVNTQ(%%mm1, 8(dst, index, 2))\ | |
736 \ | |
737 "add $8, "#index" \n\t"\ | |
738 "cmp "#dstw", "#index" \n\t"\ | |
739 " jb 1b \n\t" | |
740 #define WRITEBGR15(dst, dstw, index) REAL_WRITEBGR15(dst, dstw, index) | |
741 | |
742 #define WRITEBGR24OLD(dst, dstw, index) \ | |
743 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\ | |
744 "movq %%mm2, %%mm1 \n\t" /* B */\ | |
745 "movq %%mm5, %%mm6 \n\t" /* R */\ | |
746 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\ | |
747 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\ | |
748 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\ | |
749 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\ | |
750 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\ | |
751 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\ | |
752 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\ | |
753 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\ | |
754 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\ | |
755 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\ | |
756 \ | |
757 "movq %%mm0, %%mm4 \n\t" /* 0RGB0RGB 0 */\ | |
758 "psrlq $8, %%mm0 \n\t" /* 00RGB0RG 0 */\ | |
759 "pand "MANGLE(bm00000111)", %%mm4\n\t" /* 00000RGB 0 */\ | |
760 "pand "MANGLE(bm11111000)", %%mm0\n\t" /* 00RGB000 0.5 */\ | |
761 "por %%mm4, %%mm0 \n\t" /* 00RGBRGB 0 */\ | |
762 "movq %%mm2, %%mm4 \n\t" /* 0RGB0RGB 1 */\ | |
763 "psllq $48, %%mm2 \n\t" /* GB000000 1 */\ | |
764 "por %%mm2, %%mm0 \n\t" /* GBRGBRGB 0 */\ | |
765 \ | |
766 "movq %%mm4, %%mm2 \n\t" /* 0RGB0RGB 1 */\ | |
767 "psrld $16, %%mm4 \n\t" /* 000R000R 1 */\ | |
768 "psrlq $24, %%mm2 \n\t" /* 0000RGB0 1.5 */\ | |
769 "por %%mm4, %%mm2 \n\t" /* 000RRGBR 1 */\ | |
770 "pand "MANGLE(bm00001111)", %%mm2\n\t" /* 0000RGBR 1 */\ | |
771 "movq %%mm1, %%mm4 \n\t" /* 0RGB0RGB 2 */\ | |
772 "psrlq $8, %%mm1 \n\t" /* 00RGB0RG 2 */\ | |
773 "pand "MANGLE(bm00000111)", %%mm4\n\t" /* 00000RGB 2 */\ | |
774 "pand "MANGLE(bm11111000)", %%mm1\n\t" /* 00RGB000 2.5 */\ | |
775 "por %%mm4, %%mm1 \n\t" /* 00RGBRGB 2 */\ | |
776 "movq %%mm1, %%mm4 \n\t" /* 00RGBRGB 2 */\ | |
777 "psllq $32, %%mm1 \n\t" /* BRGB0000 2 */\ | |
778 "por %%mm1, %%mm2 \n\t" /* BRGBRGBR 1 */\ | |
779 \ | |
780 "psrlq $32, %%mm4 \n\t" /* 000000RG 2.5 */\ | |
781 "movq %%mm3, %%mm5 \n\t" /* 0RGB0RGB 3 */\ | |
782 "psrlq $8, %%mm3 \n\t" /* 00RGB0RG 3 */\ | |
783 "pand "MANGLE(bm00000111)", %%mm5\n\t" /* 00000RGB 3 */\ | |
784 "pand "MANGLE(bm11111000)", %%mm3\n\t" /* 00RGB000 3.5 */\ | |
785 "por %%mm5, %%mm3 \n\t" /* 00RGBRGB 3 */\ | |
786 "psllq $16, %%mm3 \n\t" /* RGBRGB00 3 */\ | |
787 "por %%mm4, %%mm3 \n\t" /* RGBRGBRG 2.5 */\ | |
788 \ | |
789 MOVNTQ(%%mm0, (dst))\ | |
790 MOVNTQ(%%mm2, 8(dst))\ | |
791 MOVNTQ(%%mm3, 16(dst))\ | |
792 "add $24, "#dst" \n\t"\ | |
793 \ | |
794 "add $8, "#index" \n\t"\ | |
795 "cmp "#dstw", "#index" \n\t"\ | |
796 " jb 1b \n\t" | |
797 | |
798 #define WRITEBGR24MMX(dst, dstw, index) \ | |
799 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\ | |
800 "movq %%mm2, %%mm1 \n\t" /* B */\ | |
801 "movq %%mm5, %%mm6 \n\t" /* R */\ | |
802 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\ | |
803 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\ | |
804 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\ | |
805 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\ | |
806 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\ | |
807 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\ | |
808 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\ | |
809 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\ | |
810 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\ | |
811 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\ | |
812 \ | |
813 "movq %%mm0, %%mm4 \n\t" /* 0RGB0RGB 0 */\ | |
814 "movq %%mm2, %%mm6 \n\t" /* 0RGB0RGB 1 */\ | |
815 "movq %%mm1, %%mm5 \n\t" /* 0RGB0RGB 2 */\ | |
816 "movq %%mm3, %%mm7 \n\t" /* 0RGB0RGB 3 */\ | |
817 \ | |
818 "psllq $40, %%mm0 \n\t" /* RGB00000 0 */\ | |
819 "psllq $40, %%mm2 \n\t" /* RGB00000 1 */\ | |
820 "psllq $40, %%mm1 \n\t" /* RGB00000 2 */\ | |
821 "psllq $40, %%mm3 \n\t" /* RGB00000 3 */\ | |
822 \ | |
823 "punpckhdq %%mm4, %%mm0 \n\t" /* 0RGBRGB0 0 */\ | |
824 "punpckhdq %%mm6, %%mm2 \n\t" /* 0RGBRGB0 1 */\ | |
825 "punpckhdq %%mm5, %%mm1 \n\t" /* 0RGBRGB0 2 */\ | |
826 "punpckhdq %%mm7, %%mm3 \n\t" /* 0RGBRGB0 3 */\ | |
827 \ | |
828 "psrlq $8, %%mm0 \n\t" /* 00RGBRGB 0 */\ | |
829 "movq %%mm2, %%mm6 \n\t" /* 0RGBRGB0 1 */\ | |
830 "psllq $40, %%mm2 \n\t" /* GB000000 1 */\ | |
831 "por %%mm2, %%mm0 \n\t" /* GBRGBRGB 0 */\ | |
832 MOVNTQ(%%mm0, (dst))\ | |
833 \ | |
834 "psrlq $24, %%mm6 \n\t" /* 0000RGBR 1 */\ | |
835 "movq %%mm1, %%mm5 \n\t" /* 0RGBRGB0 2 */\ | |
836 "psllq $24, %%mm1 \n\t" /* BRGB0000 2 */\ | |
837 "por %%mm1, %%mm6 \n\t" /* BRGBRGBR 1 */\ | |
838 MOVNTQ(%%mm6, 8(dst))\ | |
839 \ | |
840 "psrlq $40, %%mm5 \n\t" /* 000000RG 2 */\ | |
841 "psllq $8, %%mm3 \n\t" /* RGBRGB00 3 */\ | |
842 "por %%mm3, %%mm5 \n\t" /* RGBRGBRG 2 */\ | |
843 MOVNTQ(%%mm5, 16(dst))\ | |
844 \ | |
845 "add $24, "#dst" \n\t"\ | |
846 \ | |
847 "add $8, "#index" \n\t"\ | |
848 "cmp "#dstw", "#index" \n\t"\ | |
849 " jb 1b \n\t" | |
850 | |
851 #define WRITEBGR24MMX2(dst, dstw, index) \ | |
852 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\ | |
853 "movq "MANGLE(M24A)", %%mm0 \n\t"\ | |
854 "movq "MANGLE(M24C)", %%mm7 \n\t"\ | |
855 "pshufw $0x50, %%mm2, %%mm1 \n\t" /* B3 B2 B3 B2 B1 B0 B1 B0 */\ | |
856 "pshufw $0x50, %%mm4, %%mm3 \n\t" /* G3 G2 G3 G2 G1 G0 G1 G0 */\ | |
857 "pshufw $0x00, %%mm5, %%mm6 \n\t" /* R1 R0 R1 R0 R1 R0 R1 R0 */\ | |
858 \ | |
859 "pand %%mm0, %%mm1 \n\t" /* B2 B1 B0 */\ | |
860 "pand %%mm0, %%mm3 \n\t" /* G2 G1 G0 */\ | |
861 "pand %%mm7, %%mm6 \n\t" /* R1 R0 */\ | |
862 \ | |
863 "psllq $8, %%mm3 \n\t" /* G2 G1 G0 */\ | |
864 "por %%mm1, %%mm6 \n\t"\ | |
865 "por %%mm3, %%mm6 \n\t"\ | |
866 MOVNTQ(%%mm6, (dst))\ | |
867 \ | |
868 "psrlq $8, %%mm4 \n\t" /* 00 G7 G6 G5 G4 G3 G2 G1 */\ | |
869 "pshufw $0xA5, %%mm2, %%mm1 \n\t" /* B5 B4 B5 B4 B3 B2 B3 B2 */\ | |
870 "pshufw $0x55, %%mm4, %%mm3 \n\t" /* G4 G3 G4 G3 G4 G3 G4 G3 */\ | |
871 "pshufw $0xA5, %%mm5, %%mm6 \n\t" /* R5 R4 R5 R4 R3 R2 R3 R2 */\ | |
872 \ | |
873 "pand "MANGLE(M24B)", %%mm1 \n\t" /* B5 B4 B3 */\ | |
874 "pand %%mm7, %%mm3 \n\t" /* G4 G3 */\ | |
875 "pand %%mm0, %%mm6 \n\t" /* R4 R3 R2 */\ | |
876 \ | |
877 "por %%mm1, %%mm3 \n\t" /* B5 G4 B4 G3 B3 */\ | |
878 "por %%mm3, %%mm6 \n\t"\ | |
879 MOVNTQ(%%mm6, 8(dst))\ | |
880 \ | |
881 "pshufw $0xFF, %%mm2, %%mm1 \n\t" /* B7 B6 B7 B6 B7 B6 B6 B7 */\ | |
882 "pshufw $0xFA, %%mm4, %%mm3 \n\t" /* 00 G7 00 G7 G6 G5 G6 G5 */\ | |
883 "pshufw $0xFA, %%mm5, %%mm6 \n\t" /* R7 R6 R7 R6 R5 R4 R5 R4 */\ | |
884 \ | |
885 "pand %%mm7, %%mm1 \n\t" /* B7 B6 */\ | |
886 "pand %%mm0, %%mm3 \n\t" /* G7 G6 G5 */\ | |
887 "pand "MANGLE(M24B)", %%mm6 \n\t" /* R7 R6 R5 */\ | |
888 \ | |
889 "por %%mm1, %%mm3 \n\t"\ | |
890 "por %%mm3, %%mm6 \n\t"\ | |
891 MOVNTQ(%%mm6, 16(dst))\ | |
892 \ | |
893 "add $24, "#dst" \n\t"\ | |
894 \ | |
895 "add $8, "#index" \n\t"\ | |
896 "cmp "#dstw", "#index" \n\t"\ | |
897 " jb 1b \n\t" | |
898 | |
899 #ifdef HAVE_MMX2 | |
900 #undef WRITEBGR24 | |
901 #define WRITEBGR24(dst, dstw, index) WRITEBGR24MMX2(dst, dstw, index) | |
902 #else | |
903 #undef WRITEBGR24 | |
904 #define WRITEBGR24(dst, dstw, index) WRITEBGR24MMX(dst, dstw, index) | |
905 #endif | |
906 | |
907 #define REAL_WRITEYUY2(dst, dstw, index) \ | |
908 "packuswb %%mm3, %%mm3 \n\t"\ | |
909 "packuswb %%mm4, %%mm4 \n\t"\ | |
910 "packuswb %%mm7, %%mm1 \n\t"\ | |
911 "punpcklbw %%mm4, %%mm3 \n\t"\ | |
912 "movq %%mm1, %%mm7 \n\t"\ | |
913 "punpcklbw %%mm3, %%mm1 \n\t"\ | |
914 "punpckhbw %%mm3, %%mm7 \n\t"\ | |
915 \ | |
916 MOVNTQ(%%mm1, (dst, index, 2))\ | |
917 MOVNTQ(%%mm7, 8(dst, index, 2))\ | |
918 \ | |
919 "add $8, "#index" \n\t"\ | |
920 "cmp "#dstw", "#index" \n\t"\ | |
921 " jb 1b \n\t" | |
922 #define WRITEYUY2(dst, dstw, index) REAL_WRITEYUY2(dst, dstw, index) | |
923 | |
924 | |
925 static inline void RENAME(yuv2yuvX)(SwsContext *c, int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize, | |
926 int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize, | |
927 uint8_t *dest, uint8_t *uDest, uint8_t *vDest, long dstW, long chrDstW) | |
928 { | |
929 #ifdef HAVE_MMX | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
930 if(c->flags & SWS_ACCURATE_RND){ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
931 if(uDest){ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
932 YSCALEYUV2YV12X_ACCURATE( 0, CHR_MMX_FILTER_OFFSET, uDest, chrDstW) |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
933 YSCALEYUV2YV12X_ACCURATE(4096, CHR_MMX_FILTER_OFFSET, vDest, chrDstW) |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
934 } |
18861 | 935 |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
936 YSCALEYUV2YV12X_ACCURATE(0, LUM_MMX_FILTER_OFFSET, dest, dstW) |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
937 }else{ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
938 if(uDest){ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
939 YSCALEYUV2YV12X( 0, CHR_MMX_FILTER_OFFSET, uDest, chrDstW) |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
940 YSCALEYUV2YV12X(4096, CHR_MMX_FILTER_OFFSET, vDest, chrDstW) |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
941 } |
18861 | 942 |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
943 YSCALEYUV2YV12X(0, LUM_MMX_FILTER_OFFSET, dest, dstW) |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
944 } |
18861 | 945 #else |
946 #ifdef HAVE_ALTIVEC | |
947 yuv2yuvX_altivec_real(lumFilter, lumSrc, lumFilterSize, | |
948 chrFilter, chrSrc, chrFilterSize, | |
949 dest, uDest, vDest, dstW, chrDstW); | |
950 #else //HAVE_ALTIVEC | |
951 yuv2yuvXinC(lumFilter, lumSrc, lumFilterSize, | |
952 chrFilter, chrSrc, chrFilterSize, | |
953 dest, uDest, vDest, dstW, chrDstW); | |
954 #endif //!HAVE_ALTIVEC | |
955 #endif | |
956 } | |
957 | |
958 static inline void RENAME(yuv2nv12X)(SwsContext *c, int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize, | |
959 int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize, | |
960 uint8_t *dest, uint8_t *uDest, int dstW, int chrDstW, int dstFormat) | |
961 { | |
962 yuv2nv12XinC(lumFilter, lumSrc, lumFilterSize, | |
963 chrFilter, chrSrc, chrFilterSize, | |
964 dest, uDest, dstW, chrDstW, dstFormat); | |
965 } | |
966 | |
967 static inline void RENAME(yuv2yuv1)(int16_t *lumSrc, int16_t *chrSrc, | |
968 uint8_t *dest, uint8_t *uDest, uint8_t *vDest, long dstW, long chrDstW) | |
969 { | |
970 #ifdef HAVE_MMX | |
971 if(uDest != NULL) | |
972 { | |
973 asm volatile( | |
974 YSCALEYUV2YV121 | |
975 :: "r" (chrSrc + chrDstW), "r" (uDest + chrDstW), | |
976 "g" (-chrDstW) | |
977 : "%"REG_a | |
978 ); | |
979 | |
980 asm volatile( | |
981 YSCALEYUV2YV121 | |
982 :: "r" (chrSrc + 2048 + chrDstW), "r" (vDest + chrDstW), | |
983 "g" (-chrDstW) | |
984 : "%"REG_a | |
985 ); | |
986 } | |
987 | |
988 asm volatile( | |
989 YSCALEYUV2YV121 | |
990 :: "r" (lumSrc + dstW), "r" (dest + dstW), | |
991 "g" (-dstW) | |
992 : "%"REG_a | |
993 ); | |
994 #else | |
995 int i; | |
996 for(i=0; i<dstW; i++) | |
997 { | |
998 int val= lumSrc[i]>>7; | |
999 | |
1000 if(val&256){ | |
1001 if(val<0) val=0; | |
1002 else val=255; | |
1003 } | |
1004 | |
1005 dest[i]= val; | |
1006 } | |
1007 | |
1008 if(uDest != NULL) | |
1009 for(i=0; i<chrDstW; i++) | |
1010 { | |
1011 int u=chrSrc[i]>>7; | |
1012 int v=chrSrc[i + 2048]>>7; | |
1013 | |
1014 if((u|v)&256){ | |
1015 if(u<0) u=0; | |
1016 else if (u>255) u=255; | |
1017 if(v<0) v=0; | |
1018 else if (v>255) v=255; | |
1019 } | |
1020 | |
1021 uDest[i]= u; | |
1022 vDest[i]= v; | |
1023 } | |
1024 #endif | |
1025 } | |
1026 | |
1027 | |
1028 /** | |
1029 * vertical scale YV12 to RGB | |
1030 */ | |
1031 static inline void RENAME(yuv2packedX)(SwsContext *c, int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize, | |
1032 int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize, | |
1033 uint8_t *dest, long dstW, long dstY) | |
1034 { | |
1035 long dummy=0; | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1036 #ifdef HAVE_MMX |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1037 if(c->flags & SWS_ACCURATE_RND){ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1038 switch(c->dstFormat){ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1039 case IMGFMT_BGR32: |
19173 | 1040 YSCALEYUV2PACKEDX_ACCURATE |
1041 YSCALEYUV2RGBX | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1042 WRITEBGR32(%4, %5, %%REGa) |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1043 |
19173 | 1044 YSCALEYUV2PACKEDX_END |
1045 return; | |
1046 case IMGFMT_BGR24: | |
1047 YSCALEYUV2PACKEDX_ACCURATE | |
1048 YSCALEYUV2RGBX | |
19396 | 1049 "lea (%%"REG_a", %%"REG_a", 2), %%"REG_c"\n\t" //FIXME optimize |
1050 "add %4, %%"REG_c" \n\t" | |
1051 WRITEBGR24(%%REGc, %5, %%REGa) | |
19173 | 1052 |
1053 | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1054 :: "r" (&c->redDither), |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1055 "m" (dummy), "m" (dummy), "m" (dummy), |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1056 "r" (dest), "m" (dstW) |
19396 | 1057 : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1058 ); |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1059 return; |
19173 | 1060 case IMGFMT_BGR15: |
1061 YSCALEYUV2PACKEDX_ACCURATE | |
1062 YSCALEYUV2RGBX | |
1063 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1064 #ifdef DITHER1XBPP | |
1065 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" | |
1066 "paddusb "MANGLE(g5Dither)", %%mm4\n\t" | |
1067 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
1068 #endif | |
1069 | |
1070 WRITEBGR15(%4, %5, %%REGa) | |
1071 YSCALEYUV2PACKEDX_END | |
1072 return; | |
1073 case IMGFMT_BGR16: | |
1074 YSCALEYUV2PACKEDX_ACCURATE | |
1075 YSCALEYUV2RGBX | |
1076 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1077 #ifdef DITHER1XBPP | |
1078 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" | |
1079 "paddusb "MANGLE(g6Dither)", %%mm4\n\t" | |
1080 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
1081 #endif | |
1082 | |
1083 WRITEBGR16(%4, %5, %%REGa) | |
1084 YSCALEYUV2PACKEDX_END | |
1085 return; | |
1086 case IMGFMT_YUY2: | |
1087 YSCALEYUV2PACKEDX_ACCURATE | |
1088 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1089 | |
1090 "psraw $3, %%mm3 \n\t" | |
1091 "psraw $3, %%mm4 \n\t" | |
1092 "psraw $3, %%mm1 \n\t" | |
1093 "psraw $3, %%mm7 \n\t" | |
1094 WRITEYUY2(%4, %5, %%REGa) | |
1095 YSCALEYUV2PACKEDX_END | |
1096 return; | |
1097 } | |
1098 }else{ | |
1099 switch(c->dstFormat) | |
1100 { | |
1101 case IMGFMT_BGR32: | |
1102 YSCALEYUV2PACKEDX | |
1103 YSCALEYUV2RGBX | |
1104 WRITEBGR32(%4, %5, %%REGa) | |
1105 YSCALEYUV2PACKEDX_END | |
1106 return; | |
1107 case IMGFMT_BGR24: | |
1108 YSCALEYUV2PACKEDX | |
1109 YSCALEYUV2RGBX | |
19396 | 1110 "lea (%%"REG_a", %%"REG_a", 2), %%"REG_c"\n\t" //FIXME optimize |
1111 "add %4, %%"REG_c" \n\t" | |
1112 WRITEBGR24(%%REGc, %5, %%REGa) | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1113 |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1114 :: "r" (&c->redDither), |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1115 "m" (dummy), "m" (dummy), "m" (dummy), |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1116 "r" (dest), "m" (dstW) |
19396 | 1117 : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1118 ); |
19173 | 1119 return; |
1120 case IMGFMT_BGR15: | |
1121 YSCALEYUV2PACKEDX | |
1122 YSCALEYUV2RGBX | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1123 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1124 #ifdef DITHER1XBPP |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1125 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1126 "paddusb "MANGLE(g5Dither)", %%mm4\n\t" |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1127 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1128 #endif |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1129 |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1130 WRITEBGR15(%4, %5, %%REGa) |
19173 | 1131 YSCALEYUV2PACKEDX_END |
1132 return; | |
1133 case IMGFMT_BGR16: | |
1134 YSCALEYUV2PACKEDX | |
1135 YSCALEYUV2RGBX | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1136 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1137 #ifdef DITHER1XBPP |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1138 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1139 "paddusb "MANGLE(g6Dither)", %%mm4\n\t" |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1140 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1141 #endif |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1142 |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1143 WRITEBGR16(%4, %5, %%REGa) |
19173 | 1144 YSCALEYUV2PACKEDX_END |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1145 return; |
18861 | 1146 case IMGFMT_YUY2: |
1147 YSCALEYUV2PACKEDX | |
1148 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1149 | |
1150 "psraw $3, %%mm3 \n\t" | |
1151 "psraw $3, %%mm4 \n\t" | |
1152 "psraw $3, %%mm1 \n\t" | |
1153 "psraw $3, %%mm7 \n\t" | |
1154 WRITEYUY2(%4, %5, %%REGa) | |
19173 | 1155 YSCALEYUV2PACKEDX_END |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1156 return; |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1157 } |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
1158 } |
18861 | 1159 #endif |
1160 #ifdef HAVE_ALTIVEC | |
1161 /* The following list of supported dstFormat values should | |
1162 match what's found in the body of altivec_yuv2packedX() */ | |
1163 if(c->dstFormat==IMGFMT_ABGR || c->dstFormat==IMGFMT_BGRA || | |
1164 c->dstFormat==IMGFMT_BGR24 || c->dstFormat==IMGFMT_RGB24 || | |
1165 c->dstFormat==IMGFMT_RGBA || c->dstFormat==IMGFMT_ARGB) | |
1166 altivec_yuv2packedX (c, lumFilter, lumSrc, lumFilterSize, | |
1167 chrFilter, chrSrc, chrFilterSize, | |
1168 dest, dstW, dstY); | |
1169 else | |
1170 #endif | |
1171 yuv2packedXinC(c, lumFilter, lumSrc, lumFilterSize, | |
1172 chrFilter, chrSrc, chrFilterSize, | |
1173 dest, dstW, dstY); | |
1174 } | |
1175 | |
1176 /** | |
1177 * vertical bilinear scale YV12 to RGB | |
1178 */ | |
1179 static inline void RENAME(yuv2packed2)(SwsContext *c, uint16_t *buf0, uint16_t *buf1, uint16_t *uvbuf0, uint16_t *uvbuf1, | |
1180 uint8_t *dest, int dstW, int yalpha, int uvalpha, int y) | |
1181 { | |
1182 int yalpha1=yalpha^4095; | |
1183 int uvalpha1=uvalpha^4095; | |
1184 int i; | |
1185 | |
1186 #if 0 //isn't used | |
1187 if(flags&SWS_FULL_CHR_H_INT) | |
1188 { | |
1189 switch(dstFormat) | |
1190 { | |
1191 #ifdef HAVE_MMX | |
1192 case IMGFMT_BGR32: | |
1193 asm volatile( | |
1194 | |
1195 | |
1196 FULL_YSCALEYUV2RGB | |
1197 "punpcklbw %%mm1, %%mm3 \n\t" // BGBGBGBG | |
1198 "punpcklbw %%mm7, %%mm0 \n\t" // R0R0R0R0 | |
1199 | |
1200 "movq %%mm3, %%mm1 \n\t" | |
1201 "punpcklwd %%mm0, %%mm3 \n\t" // BGR0BGR0 | |
1202 "punpckhwd %%mm0, %%mm1 \n\t" // BGR0BGR0 | |
1203 | |
1204 MOVNTQ(%%mm3, (%4, %%REGa, 4)) | |
1205 MOVNTQ(%%mm1, 8(%4, %%REGa, 4)) | |
1206 | |
1207 "add $4, %%"REG_a" \n\t" | |
1208 "cmp %5, %%"REG_a" \n\t" | |
1209 " jb 1b \n\t" | |
1210 | |
1211 | |
1212 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" ((long)dstW), | |
1213 "m" (yalpha1), "m" (uvalpha1) | |
1214 : "%"REG_a | |
1215 ); | |
1216 break; | |
1217 case IMGFMT_BGR24: | |
1218 asm volatile( | |
1219 | |
1220 FULL_YSCALEYUV2RGB | |
1221 | |
1222 // lsb ... msb | |
1223 "punpcklbw %%mm1, %%mm3 \n\t" // BGBGBGBG | |
1224 "punpcklbw %%mm7, %%mm0 \n\t" // R0R0R0R0 | |
1225 | |
1226 "movq %%mm3, %%mm1 \n\t" | |
1227 "punpcklwd %%mm0, %%mm3 \n\t" // BGR0BGR0 | |
1228 "punpckhwd %%mm0, %%mm1 \n\t" // BGR0BGR0 | |
1229 | |
1230 "movq %%mm3, %%mm2 \n\t" // BGR0BGR0 | |
1231 "psrlq $8, %%mm3 \n\t" // GR0BGR00 | |
1232 "pand "MANGLE(bm00000111)", %%mm2\n\t" // BGR00000 | |
1233 "pand "MANGLE(bm11111000)", %%mm3\n\t" // 000BGR00 | |
1234 "por %%mm2, %%mm3 \n\t" // BGRBGR00 | |
1235 "movq %%mm1, %%mm2 \n\t" | |
1236 "psllq $48, %%mm1 \n\t" // 000000BG | |
1237 "por %%mm1, %%mm3 \n\t" // BGRBGRBG | |
1238 | |
1239 "movq %%mm2, %%mm1 \n\t" // BGR0BGR0 | |
1240 "psrld $16, %%mm2 \n\t" // R000R000 | |
1241 "psrlq $24, %%mm1 \n\t" // 0BGR0000 | |
1242 "por %%mm2, %%mm1 \n\t" // RBGRR000 | |
1243 | |
1244 "mov %4, %%"REG_b" \n\t" | |
1245 "add %%"REG_a", %%"REG_b" \n\t" | |
1246 | |
1247 #ifdef HAVE_MMX2 | |
1248 //FIXME Alignment | |
1249 "movntq %%mm3, (%%"REG_b", %%"REG_a", 2)\n\t" | |
1250 "movntq %%mm1, 8(%%"REG_b", %%"REG_a", 2)\n\t" | |
1251 #else | |
1252 "movd %%mm3, (%%"REG_b", %%"REG_a", 2) \n\t" | |
1253 "psrlq $32, %%mm3 \n\t" | |
1254 "movd %%mm3, 4(%%"REG_b", %%"REG_a", 2) \n\t" | |
1255 "movd %%mm1, 8(%%"REG_b", %%"REG_a", 2) \n\t" | |
1256 #endif | |
1257 "add $4, %%"REG_a" \n\t" | |
1258 "cmp %5, %%"REG_a" \n\t" | |
1259 " jb 1b \n\t" | |
1260 | |
1261 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "m" (dest), "m" (dstW), | |
1262 "m" (yalpha1), "m" (uvalpha1) | |
1263 : "%"REG_a, "%"REG_b | |
1264 ); | |
1265 break; | |
1266 case IMGFMT_BGR15: | |
1267 asm volatile( | |
1268 | |
1269 FULL_YSCALEYUV2RGB | |
1270 #ifdef DITHER1XBPP | |
1271 "paddusb "MANGLE(g5Dither)", %%mm1\n\t" | |
1272 "paddusb "MANGLE(r5Dither)", %%mm0\n\t" | |
1273 "paddusb "MANGLE(b5Dither)", %%mm3\n\t" | |
1274 #endif | |
1275 "punpcklbw %%mm7, %%mm1 \n\t" // 0G0G0G0G | |
1276 "punpcklbw %%mm7, %%mm3 \n\t" // 0B0B0B0B | |
1277 "punpcklbw %%mm7, %%mm0 \n\t" // 0R0R0R0R | |
1278 | |
1279 "psrlw $3, %%mm3 \n\t" | |
1280 "psllw $2, %%mm1 \n\t" | |
1281 "psllw $7, %%mm0 \n\t" | |
1282 "pand "MANGLE(g15Mask)", %%mm1 \n\t" | |
1283 "pand "MANGLE(r15Mask)", %%mm0 \n\t" | |
1284 | |
1285 "por %%mm3, %%mm1 \n\t" | |
1286 "por %%mm1, %%mm0 \n\t" | |
1287 | |
1288 MOVNTQ(%%mm0, (%4, %%REGa, 2)) | |
1289 | |
1290 "add $4, %%"REG_a" \n\t" | |
1291 "cmp %5, %%"REG_a" \n\t" | |
1292 " jb 1b \n\t" | |
1293 | |
1294 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), | |
1295 "m" (yalpha1), "m" (uvalpha1) | |
1296 : "%"REG_a | |
1297 ); | |
1298 break; | |
1299 case IMGFMT_BGR16: | |
1300 asm volatile( | |
1301 | |
1302 FULL_YSCALEYUV2RGB | |
1303 #ifdef DITHER1XBPP | |
1304 "paddusb "MANGLE(g6Dither)", %%mm1\n\t" | |
1305 "paddusb "MANGLE(r5Dither)", %%mm0\n\t" | |
1306 "paddusb "MANGLE(b5Dither)", %%mm3\n\t" | |
1307 #endif | |
1308 "punpcklbw %%mm7, %%mm1 \n\t" // 0G0G0G0G | |
1309 "punpcklbw %%mm7, %%mm3 \n\t" // 0B0B0B0B | |
1310 "punpcklbw %%mm7, %%mm0 \n\t" // 0R0R0R0R | |
1311 | |
1312 "psrlw $3, %%mm3 \n\t" | |
1313 "psllw $3, %%mm1 \n\t" | |
1314 "psllw $8, %%mm0 \n\t" | |
1315 "pand "MANGLE(g16Mask)", %%mm1 \n\t" | |
1316 "pand "MANGLE(r16Mask)", %%mm0 \n\t" | |
1317 | |
1318 "por %%mm3, %%mm1 \n\t" | |
1319 "por %%mm1, %%mm0 \n\t" | |
1320 | |
1321 MOVNTQ(%%mm0, (%4, %%REGa, 2)) | |
1322 | |
1323 "add $4, %%"REG_a" \n\t" | |
1324 "cmp %5, %%"REG_a" \n\t" | |
1325 " jb 1b \n\t" | |
1326 | |
1327 :: "r" (buf0), "r" (buf1), "r" (uvbuf0), "r" (uvbuf1), "r" (dest), "m" (dstW), | |
1328 "m" (yalpha1), "m" (uvalpha1) | |
1329 : "%"REG_a | |
1330 ); | |
1331 break; | |
1332 #endif | |
1333 case IMGFMT_RGB32: | |
1334 #ifndef HAVE_MMX | |
1335 case IMGFMT_BGR32: | |
1336 #endif | |
1337 if(dstFormat==IMGFMT_BGR32) | |
1338 { | |
1339 int i; | |
1340 #ifdef WORDS_BIGENDIAN | |
1341 dest++; | |
1342 #endif | |
1343 for(i=0;i<dstW;i++){ | |
1344 // vertical linear interpolation && yuv2rgb in a single step: | |
1345 int Y=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)]; | |
1346 int U=((uvbuf0[i]*uvalpha1+uvbuf1[i]*uvalpha)>>19); | |
1347 int V=((uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19); | |
1348 dest[0]=clip_table[((Y + yuvtab_40cf[U]) >>13)]; | |
1349 dest[1]=clip_table[((Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13)]; | |
1350 dest[2]=clip_table[((Y + yuvtab_3343[V]) >>13)]; | |
1351 dest+= 4; | |
1352 } | |
1353 } | |
1354 else if(dstFormat==IMGFMT_BGR24) | |
1355 { | |
1356 int i; | |
1357 for(i=0;i<dstW;i++){ | |
1358 // vertical linear interpolation && yuv2rgb in a single step: | |
1359 int Y=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)]; | |
1360 int U=((uvbuf0[i]*uvalpha1+uvbuf1[i]*uvalpha)>>19); | |
1361 int V=((uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19); | |
1362 dest[0]=clip_table[((Y + yuvtab_40cf[U]) >>13)]; | |
1363 dest[1]=clip_table[((Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13)]; | |
1364 dest[2]=clip_table[((Y + yuvtab_3343[V]) >>13)]; | |
1365 dest+= 3; | |
1366 } | |
1367 } | |
1368 else if(dstFormat==IMGFMT_BGR16) | |
1369 { | |
1370 int i; | |
1371 for(i=0;i<dstW;i++){ | |
1372 // vertical linear interpolation && yuv2rgb in a single step: | |
1373 int Y=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)]; | |
1374 int U=((uvbuf0[i]*uvalpha1+uvbuf1[i]*uvalpha)>>19); | |
1375 int V=((uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19); | |
1376 | |
1377 ((uint16_t*)dest)[i] = | |
1378 clip_table16b[(Y + yuvtab_40cf[U]) >>13] | | |
1379 clip_table16g[(Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13] | | |
1380 clip_table16r[(Y + yuvtab_3343[V]) >>13]; | |
1381 } | |
1382 } | |
1383 else if(dstFormat==IMGFMT_BGR15) | |
1384 { | |
1385 int i; | |
1386 for(i=0;i<dstW;i++){ | |
1387 // vertical linear interpolation && yuv2rgb in a single step: | |
1388 int Y=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)]; | |
1389 int U=((uvbuf0[i]*uvalpha1+uvbuf1[i]*uvalpha)>>19); | |
1390 int V=((uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19); | |
1391 | |
1392 ((uint16_t*)dest)[i] = | |
1393 clip_table15b[(Y + yuvtab_40cf[U]) >>13] | | |
1394 clip_table15g[(Y + yuvtab_1a1e[V] + yuvtab_0c92[U]) >>13] | | |
1395 clip_table15r[(Y + yuvtab_3343[V]) >>13]; | |
1396 } | |
1397 } | |
1398 }//FULL_UV_IPOL | |
1399 else | |
1400 { | |
1401 #endif // if 0 | |
1402 #ifdef HAVE_MMX | |
1403 switch(c->dstFormat) | |
1404 { | |
1405 //Note 8280 == DSTW_OFFSET but the preprocessor can't handle that there :( | |
1406 case IMGFMT_BGR32: | |
1407 asm volatile( | |
1408 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1409 "mov %4, %%"REG_b" \n\t" | |
1410 "push %%"REG_BP" \n\t" | |
1411 YSCALEYUV2RGB(%%REGBP, %5) | |
1412 WRITEBGR32(%%REGb, 8280(%5), %%REGBP) | |
1413 "pop %%"REG_BP" \n\t" | |
1414 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1415 | |
1416 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1417 "a" (&c->redDither) | |
1418 ); | |
1419 return; | |
1420 case IMGFMT_BGR24: | |
1421 asm volatile( | |
1422 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1423 "mov %4, %%"REG_b" \n\t" | |
1424 "push %%"REG_BP" \n\t" | |
1425 YSCALEYUV2RGB(%%REGBP, %5) | |
1426 WRITEBGR24(%%REGb, 8280(%5), %%REGBP) | |
1427 "pop %%"REG_BP" \n\t" | |
1428 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1429 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1430 "a" (&c->redDither) | |
1431 ); | |
1432 return; | |
1433 case IMGFMT_BGR15: | |
1434 asm volatile( | |
1435 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1436 "mov %4, %%"REG_b" \n\t" | |
1437 "push %%"REG_BP" \n\t" | |
1438 YSCALEYUV2RGB(%%REGBP, %5) | |
1439 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1440 #ifdef DITHER1XBPP | |
1441 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" | |
1442 "paddusb "MANGLE(g5Dither)", %%mm4\n\t" | |
1443 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
1444 #endif | |
1445 | |
1446 WRITEBGR15(%%REGb, 8280(%5), %%REGBP) | |
1447 "pop %%"REG_BP" \n\t" | |
1448 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1449 | |
1450 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1451 "a" (&c->redDither) | |
1452 ); | |
1453 return; | |
1454 case IMGFMT_BGR16: | |
1455 asm volatile( | |
1456 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1457 "mov %4, %%"REG_b" \n\t" | |
1458 "push %%"REG_BP" \n\t" | |
1459 YSCALEYUV2RGB(%%REGBP, %5) | |
1460 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1461 #ifdef DITHER1XBPP | |
1462 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" | |
1463 "paddusb "MANGLE(g6Dither)", %%mm4\n\t" | |
1464 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
1465 #endif | |
1466 | |
1467 WRITEBGR16(%%REGb, 8280(%5), %%REGBP) | |
1468 "pop %%"REG_BP" \n\t" | |
1469 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1470 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1471 "a" (&c->redDither) | |
1472 ); | |
1473 return; | |
1474 case IMGFMT_YUY2: | |
1475 asm volatile( | |
1476 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1477 "mov %4, %%"REG_b" \n\t" | |
1478 "push %%"REG_BP" \n\t" | |
1479 YSCALEYUV2PACKED(%%REGBP, %5) | |
1480 WRITEYUY2(%%REGb, 8280(%5), %%REGBP) | |
1481 "pop %%"REG_BP" \n\t" | |
1482 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1483 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1484 "a" (&c->redDither) | |
1485 ); | |
1486 return; | |
1487 default: break; | |
1488 } | |
1489 #endif //HAVE_MMX | |
1490 YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB2_C, YSCALE_YUV_2_PACKED2_C) | |
1491 } | |
1492 | |
1493 /** | |
1494 * YV12 to RGB without scaling or interpolating | |
1495 */ | |
1496 static inline void RENAME(yuv2packed1)(SwsContext *c, uint16_t *buf0, uint16_t *uvbuf0, uint16_t *uvbuf1, | |
1497 uint8_t *dest, int dstW, int uvalpha, int dstFormat, int flags, int y) | |
1498 { | |
1499 const int yalpha1=0; | |
1500 int i; | |
1501 | |
1502 uint16_t *buf1= buf0; //FIXME needed for the rgb1/bgr1 | |
1503 const int yalpha= 4096; //FIXME ... | |
1504 | |
1505 if(flags&SWS_FULL_CHR_H_INT) | |
1506 { | |
1507 RENAME(yuv2packed2)(c, buf0, buf0, uvbuf0, uvbuf1, dest, dstW, 0, uvalpha, y); | |
1508 return; | |
1509 } | |
1510 | |
1511 #ifdef HAVE_MMX | |
1512 if( uvalpha < 2048 ) // note this is not correct (shifts chrominance by 0.5 pixels) but its a bit faster | |
1513 { | |
1514 switch(dstFormat) | |
1515 { | |
1516 case IMGFMT_BGR32: | |
1517 asm volatile( | |
1518 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1519 "mov %4, %%"REG_b" \n\t" | |
1520 "push %%"REG_BP" \n\t" | |
1521 YSCALEYUV2RGB1(%%REGBP, %5) | |
1522 WRITEBGR32(%%REGb, 8280(%5), %%REGBP) | |
1523 "pop %%"REG_BP" \n\t" | |
1524 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1525 | |
1526 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1527 "a" (&c->redDither) | |
1528 ); | |
1529 return; | |
1530 case IMGFMT_BGR24: | |
1531 asm volatile( | |
1532 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1533 "mov %4, %%"REG_b" \n\t" | |
1534 "push %%"REG_BP" \n\t" | |
1535 YSCALEYUV2RGB1(%%REGBP, %5) | |
1536 WRITEBGR24(%%REGb, 8280(%5), %%REGBP) | |
1537 "pop %%"REG_BP" \n\t" | |
1538 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1539 | |
1540 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1541 "a" (&c->redDither) | |
1542 ); | |
1543 return; | |
1544 case IMGFMT_BGR15: | |
1545 asm volatile( | |
1546 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1547 "mov %4, %%"REG_b" \n\t" | |
1548 "push %%"REG_BP" \n\t" | |
1549 YSCALEYUV2RGB1(%%REGBP, %5) | |
1550 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1551 #ifdef DITHER1XBPP | |
1552 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" | |
1553 "paddusb "MANGLE(g5Dither)", %%mm4\n\t" | |
1554 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
1555 #endif | |
1556 WRITEBGR15(%%REGb, 8280(%5), %%REGBP) | |
1557 "pop %%"REG_BP" \n\t" | |
1558 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1559 | |
1560 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1561 "a" (&c->redDither) | |
1562 ); | |
1563 return; | |
1564 case IMGFMT_BGR16: | |
1565 asm volatile( | |
1566 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1567 "mov %4, %%"REG_b" \n\t" | |
1568 "push %%"REG_BP" \n\t" | |
1569 YSCALEYUV2RGB1(%%REGBP, %5) | |
1570 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1571 #ifdef DITHER1XBPP | |
1572 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" | |
1573 "paddusb "MANGLE(g6Dither)", %%mm4\n\t" | |
1574 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
1575 #endif | |
1576 | |
1577 WRITEBGR16(%%REGb, 8280(%5), %%REGBP) | |
1578 "pop %%"REG_BP" \n\t" | |
1579 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1580 | |
1581 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1582 "a" (&c->redDither) | |
1583 ); | |
1584 return; | |
1585 case IMGFMT_YUY2: | |
1586 asm volatile( | |
1587 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1588 "mov %4, %%"REG_b" \n\t" | |
1589 "push %%"REG_BP" \n\t" | |
1590 YSCALEYUV2PACKED1(%%REGBP, %5) | |
1591 WRITEYUY2(%%REGb, 8280(%5), %%REGBP) | |
1592 "pop %%"REG_BP" \n\t" | |
1593 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1594 | |
1595 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1596 "a" (&c->redDither) | |
1597 ); | |
1598 return; | |
1599 } | |
1600 } | |
1601 else | |
1602 { | |
1603 switch(dstFormat) | |
1604 { | |
1605 case IMGFMT_BGR32: | |
1606 asm volatile( | |
1607 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1608 "mov %4, %%"REG_b" \n\t" | |
1609 "push %%"REG_BP" \n\t" | |
1610 YSCALEYUV2RGB1b(%%REGBP, %5) | |
1611 WRITEBGR32(%%REGb, 8280(%5), %%REGBP) | |
1612 "pop %%"REG_BP" \n\t" | |
1613 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1614 | |
1615 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1616 "a" (&c->redDither) | |
1617 ); | |
1618 return; | |
1619 case IMGFMT_BGR24: | |
1620 asm volatile( | |
1621 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1622 "mov %4, %%"REG_b" \n\t" | |
1623 "push %%"REG_BP" \n\t" | |
1624 YSCALEYUV2RGB1b(%%REGBP, %5) | |
1625 WRITEBGR24(%%REGb, 8280(%5), %%REGBP) | |
1626 "pop %%"REG_BP" \n\t" | |
1627 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1628 | |
1629 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1630 "a" (&c->redDither) | |
1631 ); | |
1632 return; | |
1633 case IMGFMT_BGR15: | |
1634 asm volatile( | |
1635 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1636 "mov %4, %%"REG_b" \n\t" | |
1637 "push %%"REG_BP" \n\t" | |
1638 YSCALEYUV2RGB1b(%%REGBP, %5) | |
1639 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1640 #ifdef DITHER1XBPP | |
1641 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" | |
1642 "paddusb "MANGLE(g5Dither)", %%mm4\n\t" | |
1643 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
1644 #endif | |
1645 WRITEBGR15(%%REGb, 8280(%5), %%REGBP) | |
1646 "pop %%"REG_BP" \n\t" | |
1647 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1648 | |
1649 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1650 "a" (&c->redDither) | |
1651 ); | |
1652 return; | |
1653 case IMGFMT_BGR16: | |
1654 asm volatile( | |
1655 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1656 "mov %4, %%"REG_b" \n\t" | |
1657 "push %%"REG_BP" \n\t" | |
1658 YSCALEYUV2RGB1b(%%REGBP, %5) | |
1659 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */ | |
1660 #ifdef DITHER1XBPP | |
1661 "paddusb "MANGLE(b5Dither)", %%mm2\n\t" | |
1662 "paddusb "MANGLE(g6Dither)", %%mm4\n\t" | |
1663 "paddusb "MANGLE(r5Dither)", %%mm5\n\t" | |
1664 #endif | |
1665 | |
1666 WRITEBGR16(%%REGb, 8280(%5), %%REGBP) | |
1667 "pop %%"REG_BP" \n\t" | |
1668 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1669 | |
1670 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1671 "a" (&c->redDither) | |
1672 ); | |
1673 return; | |
1674 case IMGFMT_YUY2: | |
1675 asm volatile( | |
1676 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t" | |
1677 "mov %4, %%"REG_b" \n\t" | |
1678 "push %%"REG_BP" \n\t" | |
1679 YSCALEYUV2PACKED1b(%%REGBP, %5) | |
1680 WRITEYUY2(%%REGb, 8280(%5), %%REGBP) | |
1681 "pop %%"REG_BP" \n\t" | |
1682 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t" | |
1683 | |
1684 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest), | |
1685 "a" (&c->redDither) | |
1686 ); | |
1687 return; | |
1688 } | |
1689 } | |
1690 #endif | |
1691 if( uvalpha < 2048 ) | |
1692 { | |
1693 YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB1_C, YSCALE_YUV_2_PACKED1_C) | |
1694 }else{ | |
1695 YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB1B_C, YSCALE_YUV_2_PACKED1B_C) | |
1696 } | |
1697 } | |
1698 | |
1699 //FIXME yuy2* can read upto 7 samples to much | |
1700 | |
1701 static inline void RENAME(yuy2ToY)(uint8_t *dst, uint8_t *src, long width) | |
1702 { | |
1703 #ifdef HAVE_MMX | |
1704 asm volatile( | |
1705 "movq "MANGLE(bm01010101)", %%mm2\n\t" | |
1706 "mov %0, %%"REG_a" \n\t" | |
1707 "1: \n\t" | |
1708 "movq (%1, %%"REG_a",2), %%mm0 \n\t" | |
1709 "movq 8(%1, %%"REG_a",2), %%mm1 \n\t" | |
1710 "pand %%mm2, %%mm0 \n\t" | |
1711 "pand %%mm2, %%mm1 \n\t" | |
1712 "packuswb %%mm1, %%mm0 \n\t" | |
1713 "movq %%mm0, (%2, %%"REG_a") \n\t" | |
1714 "add $8, %%"REG_a" \n\t" | |
1715 " js 1b \n\t" | |
1716 : : "g" (-width), "r" (src+width*2), "r" (dst+width) | |
1717 : "%"REG_a | |
1718 ); | |
1719 #else | |
1720 int i; | |
1721 for(i=0; i<width; i++) | |
1722 dst[i]= src[2*i]; | |
1723 #endif | |
1724 } | |
1725 | |
1726 static inline void RENAME(yuy2ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, long width) | |
1727 { | |
1728 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) | |
1729 asm volatile( | |
1730 "movq "MANGLE(bm01010101)", %%mm4\n\t" | |
1731 "mov %0, %%"REG_a" \n\t" | |
1732 "1: \n\t" | |
1733 "movq (%1, %%"REG_a",4), %%mm0 \n\t" | |
1734 "movq 8(%1, %%"REG_a",4), %%mm1 \n\t" | |
1735 "movq (%2, %%"REG_a",4), %%mm2 \n\t" | |
1736 "movq 8(%2, %%"REG_a",4), %%mm3 \n\t" | |
1737 PAVGB(%%mm2, %%mm0) | |
1738 PAVGB(%%mm3, %%mm1) | |
1739 "psrlw $8, %%mm0 \n\t" | |
1740 "psrlw $8, %%mm1 \n\t" | |
1741 "packuswb %%mm1, %%mm0 \n\t" | |
1742 "movq %%mm0, %%mm1 \n\t" | |
1743 "psrlw $8, %%mm0 \n\t" | |
1744 "pand %%mm4, %%mm1 \n\t" | |
1745 "packuswb %%mm0, %%mm0 \n\t" | |
1746 "packuswb %%mm1, %%mm1 \n\t" | |
1747 "movd %%mm0, (%4, %%"REG_a") \n\t" | |
1748 "movd %%mm1, (%3, %%"REG_a") \n\t" | |
1749 "add $4, %%"REG_a" \n\t" | |
1750 " js 1b \n\t" | |
1751 : : "g" (-width), "r" (src1+width*4), "r" (src2+width*4), "r" (dstU+width), "r" (dstV+width) | |
1752 : "%"REG_a | |
1753 ); | |
1754 #else | |
1755 int i; | |
1756 for(i=0; i<width; i++) | |
1757 { | |
1758 dstU[i]= (src1[4*i + 1] + src2[4*i + 1])>>1; | |
1759 dstV[i]= (src1[4*i + 3] + src2[4*i + 3])>>1; | |
1760 } | |
1761 #endif | |
1762 } | |
1763 | |
1764 //this is allmost identical to the previous, end exists only cuz yuy2ToY/UV)(dst, src+1, ...) would have 100% unaligned accesses | |
1765 static inline void RENAME(uyvyToY)(uint8_t *dst, uint8_t *src, long width) | |
1766 { | |
1767 #ifdef HAVE_MMX | |
1768 asm volatile( | |
1769 "mov %0, %%"REG_a" \n\t" | |
1770 "1: \n\t" | |
1771 "movq (%1, %%"REG_a",2), %%mm0 \n\t" | |
1772 "movq 8(%1, %%"REG_a",2), %%mm1 \n\t" | |
1773 "psrlw $8, %%mm0 \n\t" | |
1774 "psrlw $8, %%mm1 \n\t" | |
1775 "packuswb %%mm1, %%mm0 \n\t" | |
1776 "movq %%mm0, (%2, %%"REG_a") \n\t" | |
1777 "add $8, %%"REG_a" \n\t" | |
1778 " js 1b \n\t" | |
1779 : : "g" (-width), "r" (src+width*2), "r" (dst+width) | |
1780 : "%"REG_a | |
1781 ); | |
1782 #else | |
1783 int i; | |
1784 for(i=0; i<width; i++) | |
1785 dst[i]= src[2*i+1]; | |
1786 #endif | |
1787 } | |
1788 | |
1789 static inline void RENAME(uyvyToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, long width) | |
1790 { | |
1791 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) | |
1792 asm volatile( | |
1793 "movq "MANGLE(bm01010101)", %%mm4\n\t" | |
1794 "mov %0, %%"REG_a" \n\t" | |
1795 "1: \n\t" | |
1796 "movq (%1, %%"REG_a",4), %%mm0 \n\t" | |
1797 "movq 8(%1, %%"REG_a",4), %%mm1 \n\t" | |
1798 "movq (%2, %%"REG_a",4), %%mm2 \n\t" | |
1799 "movq 8(%2, %%"REG_a",4), %%mm3 \n\t" | |
1800 PAVGB(%%mm2, %%mm0) | |
1801 PAVGB(%%mm3, %%mm1) | |
1802 "pand %%mm4, %%mm0 \n\t" | |
1803 "pand %%mm4, %%mm1 \n\t" | |
1804 "packuswb %%mm1, %%mm0 \n\t" | |
1805 "movq %%mm0, %%mm1 \n\t" | |
1806 "psrlw $8, %%mm0 \n\t" | |
1807 "pand %%mm4, %%mm1 \n\t" | |
1808 "packuswb %%mm0, %%mm0 \n\t" | |
1809 "packuswb %%mm1, %%mm1 \n\t" | |
1810 "movd %%mm0, (%4, %%"REG_a") \n\t" | |
1811 "movd %%mm1, (%3, %%"REG_a") \n\t" | |
1812 "add $4, %%"REG_a" \n\t" | |
1813 " js 1b \n\t" | |
1814 : : "g" (-width), "r" (src1+width*4), "r" (src2+width*4), "r" (dstU+width), "r" (dstV+width) | |
1815 : "%"REG_a | |
1816 ); | |
1817 #else | |
1818 int i; | |
1819 for(i=0; i<width; i++) | |
1820 { | |
1821 dstU[i]= (src1[4*i + 0] + src2[4*i + 0])>>1; | |
1822 dstV[i]= (src1[4*i + 2] + src2[4*i + 2])>>1; | |
1823 } | |
1824 #endif | |
1825 } | |
1826 | |
1827 static inline void RENAME(bgr32ToY)(uint8_t *dst, uint8_t *src, int width) | |
1828 { | |
1829 int i; | |
1830 for(i=0; i<width; i++) | |
1831 { | |
1832 int b= ((uint32_t*)src)[i]&0xFF; | |
1833 int g= (((uint32_t*)src)[i]>>8)&0xFF; | |
1834 int r= (((uint32_t*)src)[i]>>16)&0xFF; | |
1835 | |
1836 dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)) )>>RGB2YUV_SHIFT); | |
1837 } | |
1838 } | |
1839 | |
1840 static inline void RENAME(bgr32ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
1841 { | |
1842 int i; | |
1843 for(i=0; i<width; i++) | |
1844 { | |
1845 const int a= ((uint32_t*)src1)[2*i+0]; | |
1846 const int e= ((uint32_t*)src1)[2*i+1]; | |
1847 const int c= ((uint32_t*)src2)[2*i+0]; | |
1848 const int d= ((uint32_t*)src2)[2*i+1]; | |
1849 const int l= (a&0xFF00FF) + (e&0xFF00FF) + (c&0xFF00FF) + (d&0xFF00FF); | |
1850 const int h= (a&0x00FF00) + (e&0x00FF00) + (c&0x00FF00) + (d&0x00FF00); | |
1851 const int b= l&0x3FF; | |
1852 const int g= h>>8; | |
1853 const int r= l>>16; | |
1854 | |
1855 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1856 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
1857 } | |
1858 } | |
1859 | |
1860 static inline void RENAME(bgr24ToY)(uint8_t *dst, uint8_t *src, long width) | |
1861 { | |
1862 #ifdef HAVE_MMX | |
1863 asm volatile( | |
1864 "mov %2, %%"REG_a" \n\t" | |
1865 "movq "MANGLE(bgr2YCoeff)", %%mm6 \n\t" | |
1866 "movq "MANGLE(w1111)", %%mm5 \n\t" | |
1867 "pxor %%mm7, %%mm7 \n\t" | |
19396 | 1868 "lea (%%"REG_a", %%"REG_a", 2), %%"REG_d"\n\t" |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
1869 ASMALIGN(4) |
18861 | 1870 "1: \n\t" |
19396 | 1871 PREFETCH" 64(%0, %%"REG_d") \n\t" |
1872 "movd (%0, %%"REG_d"), %%mm0 \n\t" | |
1873 "movd 3(%0, %%"REG_d"), %%mm1 \n\t" | |
18861 | 1874 "punpcklbw %%mm7, %%mm0 \n\t" |
1875 "punpcklbw %%mm7, %%mm1 \n\t" | |
19396 | 1876 "movd 6(%0, %%"REG_d"), %%mm2 \n\t" |
1877 "movd 9(%0, %%"REG_d"), %%mm3 \n\t" | |
18861 | 1878 "punpcklbw %%mm7, %%mm2 \n\t" |
1879 "punpcklbw %%mm7, %%mm3 \n\t" | |
1880 "pmaddwd %%mm6, %%mm0 \n\t" | |
1881 "pmaddwd %%mm6, %%mm1 \n\t" | |
1882 "pmaddwd %%mm6, %%mm2 \n\t" | |
1883 "pmaddwd %%mm6, %%mm3 \n\t" | |
1884 #ifndef FAST_BGR2YV12 | |
1885 "psrad $8, %%mm0 \n\t" | |
1886 "psrad $8, %%mm1 \n\t" | |
1887 "psrad $8, %%mm2 \n\t" | |
1888 "psrad $8, %%mm3 \n\t" | |
1889 #endif | |
1890 "packssdw %%mm1, %%mm0 \n\t" | |
1891 "packssdw %%mm3, %%mm2 \n\t" | |
1892 "pmaddwd %%mm5, %%mm0 \n\t" | |
1893 "pmaddwd %%mm5, %%mm2 \n\t" | |
1894 "packssdw %%mm2, %%mm0 \n\t" | |
1895 "psraw $7, %%mm0 \n\t" | |
1896 | |
19396 | 1897 "movd 12(%0, %%"REG_d"), %%mm4 \n\t" |
1898 "movd 15(%0, %%"REG_d"), %%mm1 \n\t" | |
18861 | 1899 "punpcklbw %%mm7, %%mm4 \n\t" |
1900 "punpcklbw %%mm7, %%mm1 \n\t" | |
19396 | 1901 "movd 18(%0, %%"REG_d"), %%mm2 \n\t" |
1902 "movd 21(%0, %%"REG_d"), %%mm3 \n\t" | |
18861 | 1903 "punpcklbw %%mm7, %%mm2 \n\t" |
1904 "punpcklbw %%mm7, %%mm3 \n\t" | |
1905 "pmaddwd %%mm6, %%mm4 \n\t" | |
1906 "pmaddwd %%mm6, %%mm1 \n\t" | |
1907 "pmaddwd %%mm6, %%mm2 \n\t" | |
1908 "pmaddwd %%mm6, %%mm3 \n\t" | |
1909 #ifndef FAST_BGR2YV12 | |
1910 "psrad $8, %%mm4 \n\t" | |
1911 "psrad $8, %%mm1 \n\t" | |
1912 "psrad $8, %%mm2 \n\t" | |
1913 "psrad $8, %%mm3 \n\t" | |
1914 #endif | |
1915 "packssdw %%mm1, %%mm4 \n\t" | |
1916 "packssdw %%mm3, %%mm2 \n\t" | |
1917 "pmaddwd %%mm5, %%mm4 \n\t" | |
1918 "pmaddwd %%mm5, %%mm2 \n\t" | |
19396 | 1919 "add $24, %%"REG_d" \n\t" |
18861 | 1920 "packssdw %%mm2, %%mm4 \n\t" |
1921 "psraw $7, %%mm4 \n\t" | |
1922 | |
1923 "packuswb %%mm4, %%mm0 \n\t" | |
1924 "paddusb "MANGLE(bgr2YOffset)", %%mm0 \n\t" | |
1925 | |
1926 "movq %%mm0, (%1, %%"REG_a") \n\t" | |
1927 "add $8, %%"REG_a" \n\t" | |
1928 " js 1b \n\t" | |
1929 : : "r" (src+width*3), "r" (dst+width), "g" (-width) | |
19396 | 1930 : "%"REG_a, "%"REG_d |
18861 | 1931 ); |
1932 #else | |
1933 int i; | |
1934 for(i=0; i<width; i++) | |
1935 { | |
1936 int b= src[i*3+0]; | |
1937 int g= src[i*3+1]; | |
1938 int r= src[i*3+2]; | |
1939 | |
1940 dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)) )>>RGB2YUV_SHIFT); | |
1941 } | |
1942 #endif | |
1943 } | |
1944 | |
1945 static inline void RENAME(bgr24ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, long width) | |
1946 { | |
1947 #ifdef HAVE_MMX | |
1948 asm volatile( | |
1949 "mov %4, %%"REG_a" \n\t" | |
1950 "movq "MANGLE(w1111)", %%mm5 \n\t" | |
1951 "movq "MANGLE(bgr2UCoeff)", %%mm6 \n\t" | |
1952 "pxor %%mm7, %%mm7 \n\t" | |
19396 | 1953 "lea (%%"REG_a", %%"REG_a", 2), %%"REG_d" \n\t" |
1954 "add %%"REG_d", %%"REG_d" \n\t" | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
1955 ASMALIGN(4) |
18861 | 1956 "1: \n\t" |
19396 | 1957 PREFETCH" 64(%0, %%"REG_d") \n\t" |
1958 PREFETCH" 64(%1, %%"REG_d") \n\t" | |
18861 | 1959 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
19396 | 1960 "movq (%0, %%"REG_d"), %%mm0 \n\t" |
1961 "movq (%1, %%"REG_d"), %%mm1 \n\t" | |
1962 "movq 6(%0, %%"REG_d"), %%mm2 \n\t" | |
1963 "movq 6(%1, %%"REG_d"), %%mm3 \n\t" | |
18861 | 1964 PAVGB(%%mm1, %%mm0) |
1965 PAVGB(%%mm3, %%mm2) | |
1966 "movq %%mm0, %%mm1 \n\t" | |
1967 "movq %%mm2, %%mm3 \n\t" | |
1968 "psrlq $24, %%mm0 \n\t" | |
1969 "psrlq $24, %%mm2 \n\t" | |
1970 PAVGB(%%mm1, %%mm0) | |
1971 PAVGB(%%mm3, %%mm2) | |
1972 "punpcklbw %%mm7, %%mm0 \n\t" | |
1973 "punpcklbw %%mm7, %%mm2 \n\t" | |
1974 #else | |
19396 | 1975 "movd (%0, %%"REG_d"), %%mm0 \n\t" |
1976 "movd (%1, %%"REG_d"), %%mm1 \n\t" | |
1977 "movd 3(%0, %%"REG_d"), %%mm2 \n\t" | |
1978 "movd 3(%1, %%"REG_d"), %%mm3 \n\t" | |
18861 | 1979 "punpcklbw %%mm7, %%mm0 \n\t" |
1980 "punpcklbw %%mm7, %%mm1 \n\t" | |
1981 "punpcklbw %%mm7, %%mm2 \n\t" | |
1982 "punpcklbw %%mm7, %%mm3 \n\t" | |
1983 "paddw %%mm1, %%mm0 \n\t" | |
1984 "paddw %%mm3, %%mm2 \n\t" | |
1985 "paddw %%mm2, %%mm0 \n\t" | |
19396 | 1986 "movd 6(%0, %%"REG_d"), %%mm4 \n\t" |
1987 "movd 6(%1, %%"REG_d"), %%mm1 \n\t" | |
1988 "movd 9(%0, %%"REG_d"), %%mm2 \n\t" | |
1989 "movd 9(%1, %%"REG_d"), %%mm3 \n\t" | |
18861 | 1990 "punpcklbw %%mm7, %%mm4 \n\t" |
1991 "punpcklbw %%mm7, %%mm1 \n\t" | |
1992 "punpcklbw %%mm7, %%mm2 \n\t" | |
1993 "punpcklbw %%mm7, %%mm3 \n\t" | |
1994 "paddw %%mm1, %%mm4 \n\t" | |
1995 "paddw %%mm3, %%mm2 \n\t" | |
1996 "paddw %%mm4, %%mm2 \n\t" | |
1997 "psrlw $2, %%mm0 \n\t" | |
1998 "psrlw $2, %%mm2 \n\t" | |
1999 #endif | |
2000 "movq "MANGLE(bgr2VCoeff)", %%mm1 \n\t" | |
2001 "movq "MANGLE(bgr2VCoeff)", %%mm3 \n\t" | |
2002 | |
2003 "pmaddwd %%mm0, %%mm1 \n\t" | |
2004 "pmaddwd %%mm2, %%mm3 \n\t" | |
2005 "pmaddwd %%mm6, %%mm0 \n\t" | |
2006 "pmaddwd %%mm6, %%mm2 \n\t" | |
2007 #ifndef FAST_BGR2YV12 | |
2008 "psrad $8, %%mm0 \n\t" | |
2009 "psrad $8, %%mm1 \n\t" | |
2010 "psrad $8, %%mm2 \n\t" | |
2011 "psrad $8, %%mm3 \n\t" | |
2012 #endif | |
2013 "packssdw %%mm2, %%mm0 \n\t" | |
2014 "packssdw %%mm3, %%mm1 \n\t" | |
2015 "pmaddwd %%mm5, %%mm0 \n\t" | |
2016 "pmaddwd %%mm5, %%mm1 \n\t" | |
2017 "packssdw %%mm1, %%mm0 \n\t" // V1 V0 U1 U0 | |
2018 "psraw $7, %%mm0 \n\t" | |
2019 | |
2020 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) | |
19396 | 2021 "movq 12(%0, %%"REG_d"), %%mm4 \n\t" |
2022 "movq 12(%1, %%"REG_d"), %%mm1 \n\t" | |
2023 "movq 18(%0, %%"REG_d"), %%mm2 \n\t" | |
2024 "movq 18(%1, %%"REG_d"), %%mm3 \n\t" | |
18861 | 2025 PAVGB(%%mm1, %%mm4) |
2026 PAVGB(%%mm3, %%mm2) | |
2027 "movq %%mm4, %%mm1 \n\t" | |
2028 "movq %%mm2, %%mm3 \n\t" | |
2029 "psrlq $24, %%mm4 \n\t" | |
2030 "psrlq $24, %%mm2 \n\t" | |
2031 PAVGB(%%mm1, %%mm4) | |
2032 PAVGB(%%mm3, %%mm2) | |
2033 "punpcklbw %%mm7, %%mm4 \n\t" | |
2034 "punpcklbw %%mm7, %%mm2 \n\t" | |
2035 #else | |
19396 | 2036 "movd 12(%0, %%"REG_d"), %%mm4 \n\t" |
2037 "movd 12(%1, %%"REG_d"), %%mm1 \n\t" | |
2038 "movd 15(%0, %%"REG_d"), %%mm2 \n\t" | |
2039 "movd 15(%1, %%"REG_d"), %%mm3 \n\t" | |
18861 | 2040 "punpcklbw %%mm7, %%mm4 \n\t" |
2041 "punpcklbw %%mm7, %%mm1 \n\t" | |
2042 "punpcklbw %%mm7, %%mm2 \n\t" | |
2043 "punpcklbw %%mm7, %%mm3 \n\t" | |
2044 "paddw %%mm1, %%mm4 \n\t" | |
2045 "paddw %%mm3, %%mm2 \n\t" | |
2046 "paddw %%mm2, %%mm4 \n\t" | |
19396 | 2047 "movd 18(%0, %%"REG_d"), %%mm5 \n\t" |
2048 "movd 18(%1, %%"REG_d"), %%mm1 \n\t" | |
2049 "movd 21(%0, %%"REG_d"), %%mm2 \n\t" | |
2050 "movd 21(%1, %%"REG_d"), %%mm3 \n\t" | |
18861 | 2051 "punpcklbw %%mm7, %%mm5 \n\t" |
2052 "punpcklbw %%mm7, %%mm1 \n\t" | |
2053 "punpcklbw %%mm7, %%mm2 \n\t" | |
2054 "punpcklbw %%mm7, %%mm3 \n\t" | |
2055 "paddw %%mm1, %%mm5 \n\t" | |
2056 "paddw %%mm3, %%mm2 \n\t" | |
2057 "paddw %%mm5, %%mm2 \n\t" | |
2058 "movq "MANGLE(w1111)", %%mm5 \n\t" | |
2059 "psrlw $2, %%mm4 \n\t" | |
2060 "psrlw $2, %%mm2 \n\t" | |
2061 #endif | |
2062 "movq "MANGLE(bgr2VCoeff)", %%mm1 \n\t" | |
2063 "movq "MANGLE(bgr2VCoeff)", %%mm3 \n\t" | |
2064 | |
2065 "pmaddwd %%mm4, %%mm1 \n\t" | |
2066 "pmaddwd %%mm2, %%mm3 \n\t" | |
2067 "pmaddwd %%mm6, %%mm4 \n\t" | |
2068 "pmaddwd %%mm6, %%mm2 \n\t" | |
2069 #ifndef FAST_BGR2YV12 | |
2070 "psrad $8, %%mm4 \n\t" | |
2071 "psrad $8, %%mm1 \n\t" | |
2072 "psrad $8, %%mm2 \n\t" | |
2073 "psrad $8, %%mm3 \n\t" | |
2074 #endif | |
2075 "packssdw %%mm2, %%mm4 \n\t" | |
2076 "packssdw %%mm3, %%mm1 \n\t" | |
2077 "pmaddwd %%mm5, %%mm4 \n\t" | |
2078 "pmaddwd %%mm5, %%mm1 \n\t" | |
19396 | 2079 "add $24, %%"REG_d" \n\t" |
18861 | 2080 "packssdw %%mm1, %%mm4 \n\t" // V3 V2 U3 U2 |
2081 "psraw $7, %%mm4 \n\t" | |
2082 | |
2083 "movq %%mm0, %%mm1 \n\t" | |
2084 "punpckldq %%mm4, %%mm0 \n\t" | |
2085 "punpckhdq %%mm4, %%mm1 \n\t" | |
2086 "packsswb %%mm1, %%mm0 \n\t" | |
2087 "paddb "MANGLE(bgr2UVOffset)", %%mm0 \n\t" | |
2088 | |
2089 "movd %%mm0, (%2, %%"REG_a") \n\t" | |
2090 "punpckhdq %%mm0, %%mm0 \n\t" | |
2091 "movd %%mm0, (%3, %%"REG_a") \n\t" | |
2092 "add $4, %%"REG_a" \n\t" | |
2093 " js 1b \n\t" | |
2094 : : "r" (src1+width*6), "r" (src2+width*6), "r" (dstU+width), "r" (dstV+width), "g" (-width) | |
19396 | 2095 : "%"REG_a, "%"REG_d |
18861 | 2096 ); |
2097 #else | |
2098 int i; | |
2099 for(i=0; i<width; i++) | |
2100 { | |
2101 int b= src1[6*i + 0] + src1[6*i + 3] + src2[6*i + 0] + src2[6*i + 3]; | |
2102 int g= src1[6*i + 1] + src1[6*i + 4] + src2[6*i + 1] + src2[6*i + 4]; | |
2103 int r= src1[6*i + 2] + src1[6*i + 5] + src2[6*i + 2] + src2[6*i + 5]; | |
2104 | |
2105 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
2106 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
2107 } | |
2108 #endif | |
2109 } | |
2110 | |
2111 static inline void RENAME(bgr16ToY)(uint8_t *dst, uint8_t *src, int width) | |
2112 { | |
2113 int i; | |
2114 for(i=0; i<width; i++) | |
2115 { | |
2116 int d= ((uint16_t*)src)[i]; | |
2117 int b= d&0x1F; | |
2118 int g= (d>>5)&0x3F; | |
2119 int r= (d>>11)&0x1F; | |
2120 | |
2121 dst[i]= ((2*RY*r + GY*g + 2*BY*b)>>(RGB2YUV_SHIFT-2)) + 16; | |
2122 } | |
2123 } | |
2124 | |
2125 static inline void RENAME(bgr16ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
2126 { | |
2127 int i; | |
2128 for(i=0; i<width; i++) | |
2129 { | |
2130 int d0= ((uint32_t*)src1)[i]; | |
2131 int d1= ((uint32_t*)src2)[i]; | |
2132 | |
2133 int dl= (d0&0x07E0F81F) + (d1&0x07E0F81F); | |
2134 int dh= ((d0>>5)&0x07C0F83F) + ((d1>>5)&0x07C0F83F); | |
2135 | |
2136 int dh2= (dh>>11) + (dh<<21); | |
2137 int d= dh2 + dl; | |
2138 | |
2139 int b= d&0x7F; | |
2140 int r= (d>>11)&0x7F; | |
2141 int g= d>>21; | |
2142 dstU[i]= ((2*RU*r + GU*g + 2*BU*b)>>(RGB2YUV_SHIFT+2-2)) + 128; | |
2143 dstV[i]= ((2*RV*r + GV*g + 2*BV*b)>>(RGB2YUV_SHIFT+2-2)) + 128; | |
2144 } | |
2145 } | |
2146 | |
2147 static inline void RENAME(bgr15ToY)(uint8_t *dst, uint8_t *src, int width) | |
2148 { | |
2149 int i; | |
2150 for(i=0; i<width; i++) | |
2151 { | |
2152 int d= ((uint16_t*)src)[i]; | |
2153 int b= d&0x1F; | |
2154 int g= (d>>5)&0x1F; | |
2155 int r= (d>>10)&0x1F; | |
2156 | |
2157 dst[i]= ((RY*r + GY*g + BY*b)>>(RGB2YUV_SHIFT-3)) + 16; | |
2158 } | |
2159 } | |
2160 | |
2161 static inline void RENAME(bgr15ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
2162 { | |
2163 int i; | |
2164 for(i=0; i<width; i++) | |
2165 { | |
2166 int d0= ((uint32_t*)src1)[i]; | |
2167 int d1= ((uint32_t*)src2)[i]; | |
2168 | |
2169 int dl= (d0&0x03E07C1F) + (d1&0x03E07C1F); | |
2170 int dh= ((d0>>5)&0x03E0F81F) + ((d1>>5)&0x03E0F81F); | |
2171 | |
2172 int dh2= (dh>>11) + (dh<<21); | |
2173 int d= dh2 + dl; | |
2174 | |
2175 int b= d&0x7F; | |
2176 int r= (d>>10)&0x7F; | |
2177 int g= d>>21; | |
2178 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2-3)) + 128; | |
2179 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2-3)) + 128; | |
2180 } | |
2181 } | |
2182 | |
2183 | |
2184 static inline void RENAME(rgb32ToY)(uint8_t *dst, uint8_t *src, int width) | |
2185 { | |
2186 int i; | |
2187 for(i=0; i<width; i++) | |
2188 { | |
2189 int r= ((uint32_t*)src)[i]&0xFF; | |
2190 int g= (((uint32_t*)src)[i]>>8)&0xFF; | |
2191 int b= (((uint32_t*)src)[i]>>16)&0xFF; | |
2192 | |
2193 dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)) )>>RGB2YUV_SHIFT); | |
2194 } | |
2195 } | |
2196 | |
2197 static inline void RENAME(rgb32ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
2198 { | |
2199 int i; | |
2200 for(i=0; i<width; i++) | |
2201 { | |
2202 const int a= ((uint32_t*)src1)[2*i+0]; | |
2203 const int e= ((uint32_t*)src1)[2*i+1]; | |
2204 const int c= ((uint32_t*)src2)[2*i+0]; | |
2205 const int d= ((uint32_t*)src2)[2*i+1]; | |
2206 const int l= (a&0xFF00FF) + (e&0xFF00FF) + (c&0xFF00FF) + (d&0xFF00FF); | |
2207 const int h= (a&0x00FF00) + (e&0x00FF00) + (c&0x00FF00) + (d&0x00FF00); | |
2208 const int r= l&0x3FF; | |
2209 const int g= h>>8; | |
2210 const int b= l>>16; | |
2211 | |
2212 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
2213 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
2214 } | |
2215 } | |
2216 | |
2217 static inline void RENAME(rgb24ToY)(uint8_t *dst, uint8_t *src, int width) | |
2218 { | |
2219 int i; | |
2220 for(i=0; i<width; i++) | |
2221 { | |
2222 int r= src[i*3+0]; | |
2223 int g= src[i*3+1]; | |
2224 int b= src[i*3+2]; | |
2225 | |
2226 dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)) )>>RGB2YUV_SHIFT); | |
2227 } | |
2228 } | |
2229 | |
2230 static inline void RENAME(rgb24ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width) | |
2231 { | |
2232 int i; | |
2233 for(i=0; i<width; i++) | |
2234 { | |
2235 int r= src1[6*i + 0] + src1[6*i + 3] + src2[6*i + 0] + src2[6*i + 3]; | |
2236 int g= src1[6*i + 1] + src1[6*i + 4] + src2[6*i + 1] + src2[6*i + 4]; | |
2237 int b= src1[6*i + 2] + src1[6*i + 5] + src2[6*i + 2] + src2[6*i + 5]; | |
2238 | |
2239 dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
2240 dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2)) + 128; | |
2241 } | |
2242 } | |
2243 | |
2244 | |
2245 // Bilinear / Bicubic scaling | |
2246 static inline void RENAME(hScale)(int16_t *dst, int dstW, uint8_t *src, int srcW, int xInc, | |
2247 int16_t *filter, int16_t *filterPos, long filterSize) | |
2248 { | |
2249 #ifdef HAVE_MMX | |
2250 assert(filterSize % 4 == 0 && filterSize>0); | |
2251 if(filterSize==4) // allways true for upscaling, sometimes for down too | |
2252 { | |
2253 long counter= -2*dstW; | |
2254 filter-= counter*2; | |
2255 filterPos-= counter/2; | |
2256 dst-= counter/2; | |
2257 asm volatile( | |
19396 | 2258 #if defined(PIC) |
2259 "push %%"REG_b" \n\t" | |
2260 #endif | |
18861 | 2261 "pxor %%mm7, %%mm7 \n\t" |
2262 "movq "MANGLE(w02)", %%mm6 \n\t" | |
2263 "push %%"REG_BP" \n\t" // we use 7 regs here ... | |
2264 "mov %%"REG_a", %%"REG_BP" \n\t" | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
2265 ASMALIGN(4) |
18861 | 2266 "1: \n\t" |
2267 "movzwl (%2, %%"REG_BP"), %%eax \n\t" | |
2268 "movzwl 2(%2, %%"REG_BP"), %%ebx\n\t" | |
2269 "movq (%1, %%"REG_BP", 4), %%mm1\n\t" | |
2270 "movq 8(%1, %%"REG_BP", 4), %%mm3\n\t" | |
2271 "movd (%3, %%"REG_a"), %%mm0 \n\t" | |
2272 "movd (%3, %%"REG_b"), %%mm2 \n\t" | |
2273 "punpcklbw %%mm7, %%mm0 \n\t" | |
2274 "punpcklbw %%mm7, %%mm2 \n\t" | |
2275 "pmaddwd %%mm1, %%mm0 \n\t" | |
2276 "pmaddwd %%mm2, %%mm3 \n\t" | |
2277 "psrad $8, %%mm0 \n\t" | |
2278 "psrad $8, %%mm3 \n\t" | |
2279 "packssdw %%mm3, %%mm0 \n\t" | |
2280 "pmaddwd %%mm6, %%mm0 \n\t" | |
2281 "packssdw %%mm0, %%mm0 \n\t" | |
2282 "movd %%mm0, (%4, %%"REG_BP") \n\t" | |
2283 "add $4, %%"REG_BP" \n\t" | |
2284 " jnc 1b \n\t" | |
2285 | |
2286 "pop %%"REG_BP" \n\t" | |
19396 | 2287 #if defined(PIC) |
2288 "pop %%"REG_b" \n\t" | |
2289 #endif | |
18861 | 2290 : "+a" (counter) |
2291 : "c" (filter), "d" (filterPos), "S" (src), "D" (dst) | |
19396 | 2292 #if !defined(PIC) |
18861 | 2293 : "%"REG_b |
19396 | 2294 #endif |
18861 | 2295 ); |
2296 } | |
2297 else if(filterSize==8) | |
2298 { | |
2299 long counter= -2*dstW; | |
2300 filter-= counter*4; | |
2301 filterPos-= counter/2; | |
2302 dst-= counter/2; | |
2303 asm volatile( | |
19396 | 2304 #if defined(PIC) |
2305 "push %%"REG_b" \n\t" | |
2306 #endif | |
18861 | 2307 "pxor %%mm7, %%mm7 \n\t" |
2308 "movq "MANGLE(w02)", %%mm6 \n\t" | |
2309 "push %%"REG_BP" \n\t" // we use 7 regs here ... | |
2310 "mov %%"REG_a", %%"REG_BP" \n\t" | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
2311 ASMALIGN(4) |
18861 | 2312 "1: \n\t" |
2313 "movzwl (%2, %%"REG_BP"), %%eax \n\t" | |
2314 "movzwl 2(%2, %%"REG_BP"), %%ebx\n\t" | |
2315 "movq (%1, %%"REG_BP", 8), %%mm1\n\t" | |
2316 "movq 16(%1, %%"REG_BP", 8), %%mm3\n\t" | |
2317 "movd (%3, %%"REG_a"), %%mm0 \n\t" | |
2318 "movd (%3, %%"REG_b"), %%mm2 \n\t" | |
2319 "punpcklbw %%mm7, %%mm0 \n\t" | |
2320 "punpcklbw %%mm7, %%mm2 \n\t" | |
2321 "pmaddwd %%mm1, %%mm0 \n\t" | |
2322 "pmaddwd %%mm2, %%mm3 \n\t" | |
2323 | |
2324 "movq 8(%1, %%"REG_BP", 8), %%mm1\n\t" | |
2325 "movq 24(%1, %%"REG_BP", 8), %%mm5\n\t" | |
2326 "movd 4(%3, %%"REG_a"), %%mm4 \n\t" | |
2327 "movd 4(%3, %%"REG_b"), %%mm2 \n\t" | |
2328 "punpcklbw %%mm7, %%mm4 \n\t" | |
2329 "punpcklbw %%mm7, %%mm2 \n\t" | |
2330 "pmaddwd %%mm1, %%mm4 \n\t" | |
2331 "pmaddwd %%mm2, %%mm5 \n\t" | |
2332 "paddd %%mm4, %%mm0 \n\t" | |
2333 "paddd %%mm5, %%mm3 \n\t" | |
2334 | |
2335 "psrad $8, %%mm0 \n\t" | |
2336 "psrad $8, %%mm3 \n\t" | |
2337 "packssdw %%mm3, %%mm0 \n\t" | |
2338 "pmaddwd %%mm6, %%mm0 \n\t" | |
2339 "packssdw %%mm0, %%mm0 \n\t" | |
2340 "movd %%mm0, (%4, %%"REG_BP") \n\t" | |
2341 "add $4, %%"REG_BP" \n\t" | |
2342 " jnc 1b \n\t" | |
2343 | |
2344 "pop %%"REG_BP" \n\t" | |
19396 | 2345 #if defined(PIC) |
2346 "pop %%"REG_b" \n\t" | |
2347 #endif | |
18861 | 2348 : "+a" (counter) |
2349 : "c" (filter), "d" (filterPos), "S" (src), "D" (dst) | |
19396 | 2350 #if !defined(PIC) |
18861 | 2351 : "%"REG_b |
19396 | 2352 #endif |
18861 | 2353 ); |
2354 } | |
2355 else | |
2356 { | |
2357 uint8_t *offset = src+filterSize; | |
2358 long counter= -2*dstW; | |
2359 // filter-= counter*filterSize/2; | |
2360 filterPos-= counter/2; | |
2361 dst-= counter/2; | |
2362 asm volatile( | |
2363 "pxor %%mm7, %%mm7 \n\t" | |
2364 "movq "MANGLE(w02)", %%mm6 \n\t" | |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
2365 ASMALIGN(4) |
18861 | 2366 "1: \n\t" |
2367 "mov %2, %%"REG_c" \n\t" | |
2368 "movzwl (%%"REG_c", %0), %%eax \n\t" | |
19396 | 2369 "movzwl 2(%%"REG_c", %0), %%edx \n\t" |
18861 | 2370 "mov %5, %%"REG_c" \n\t" |
2371 "pxor %%mm4, %%mm4 \n\t" | |
2372 "pxor %%mm5, %%mm5 \n\t" | |
2373 "2: \n\t" | |
2374 "movq (%1), %%mm1 \n\t" | |
2375 "movq (%1, %6), %%mm3 \n\t" | |
2376 "movd (%%"REG_c", %%"REG_a"), %%mm0\n\t" | |
19396 | 2377 "movd (%%"REG_c", %%"REG_d"), %%mm2\n\t" |
18861 | 2378 "punpcklbw %%mm7, %%mm0 \n\t" |
2379 "punpcklbw %%mm7, %%mm2 \n\t" | |
2380 "pmaddwd %%mm1, %%mm0 \n\t" | |
2381 "pmaddwd %%mm2, %%mm3 \n\t" | |
2382 "paddd %%mm3, %%mm5 \n\t" | |
2383 "paddd %%mm0, %%mm4 \n\t" | |
2384 "add $8, %1 \n\t" | |
2385 "add $4, %%"REG_c" \n\t" | |
2386 "cmp %4, %%"REG_c" \n\t" | |
2387 " jb 2b \n\t" | |
2388 "add %6, %1 \n\t" | |
2389 "psrad $8, %%mm4 \n\t" | |
2390 "psrad $8, %%mm5 \n\t" | |
2391 "packssdw %%mm5, %%mm4 \n\t" | |
2392 "pmaddwd %%mm6, %%mm4 \n\t" | |
2393 "packssdw %%mm4, %%mm4 \n\t" | |
2394 "mov %3, %%"REG_a" \n\t" | |
2395 "movd %%mm4, (%%"REG_a", %0) \n\t" | |
2396 "add $4, %0 \n\t" | |
2397 " jnc 1b \n\t" | |
2398 | |
2399 : "+r" (counter), "+r" (filter) | |
2400 : "m" (filterPos), "m" (dst), "m"(offset), | |
2401 "m" (src), "r" (filterSize*2) | |
19396 | 2402 : "%"REG_a, "%"REG_c, "%"REG_d |
18861 | 2403 ); |
2404 } | |
2405 #else | |
2406 #ifdef HAVE_ALTIVEC | |
2407 hScale_altivec_real(dst, dstW, src, srcW, xInc, filter, filterPos, filterSize); | |
2408 #else | |
2409 int i; | |
2410 for(i=0; i<dstW; i++) | |
2411 { | |
2412 int j; | |
2413 int srcPos= filterPos[i]; | |
2414 int val=0; | |
2415 // printf("filterPos: %d\n", filterPos[i]); | |
2416 for(j=0; j<filterSize; j++) | |
2417 { | |
2418 // printf("filter: %d, src: %d\n", filter[i], src[srcPos + j]); | |
2419 val += ((int)src[srcPos + j])*filter[filterSize*i + j]; | |
2420 } | |
2421 // filter += hFilterSize; | |
19181 | 2422 dst[i] = FFMIN(FFMAX(0, val>>7), (1<<15)-1); // the cubic equation does overflow ... |
18861 | 2423 // dst[i] = val>>7; |
2424 } | |
2425 #endif | |
2426 #endif | |
2427 } | |
2428 // *** horizontal scale Y line to temp buffer | |
2429 static inline void RENAME(hyscale)(uint16_t *dst, long dstWidth, uint8_t *src, int srcW, int xInc, | |
2430 int flags, int canMMX2BeUsed, int16_t *hLumFilter, | |
2431 int16_t *hLumFilterPos, int hLumFilterSize, void *funnyYCode, | |
2432 int srcFormat, uint8_t *formatConvBuffer, int16_t *mmx2Filter, | |
2433 int32_t *mmx2FilterPos) | |
2434 { | |
2435 if(srcFormat==IMGFMT_YUY2) | |
2436 { | |
2437 RENAME(yuy2ToY)(formatConvBuffer, src, srcW); | |
2438 src= formatConvBuffer; | |
2439 } | |
2440 else if(srcFormat==IMGFMT_UYVY) | |
2441 { | |
2442 RENAME(uyvyToY)(formatConvBuffer, src, srcW); | |
2443 src= formatConvBuffer; | |
2444 } | |
2445 else if(srcFormat==IMGFMT_BGR32) | |
2446 { | |
2447 RENAME(bgr32ToY)(formatConvBuffer, src, srcW); | |
2448 src= formatConvBuffer; | |
2449 } | |
2450 else if(srcFormat==IMGFMT_BGR24) | |
2451 { | |
2452 RENAME(bgr24ToY)(formatConvBuffer, src, srcW); | |
2453 src= formatConvBuffer; | |
2454 } | |
2455 else if(srcFormat==IMGFMT_BGR16) | |
2456 { | |
2457 RENAME(bgr16ToY)(formatConvBuffer, src, srcW); | |
2458 src= formatConvBuffer; | |
2459 } | |
2460 else if(srcFormat==IMGFMT_BGR15) | |
2461 { | |
2462 RENAME(bgr15ToY)(formatConvBuffer, src, srcW); | |
2463 src= formatConvBuffer; | |
2464 } | |
2465 else if(srcFormat==IMGFMT_RGB32) | |
2466 { | |
2467 RENAME(rgb32ToY)(formatConvBuffer, src, srcW); | |
2468 src= formatConvBuffer; | |
2469 } | |
2470 else if(srcFormat==IMGFMT_RGB24) | |
2471 { | |
2472 RENAME(rgb24ToY)(formatConvBuffer, src, srcW); | |
2473 src= formatConvBuffer; | |
2474 } | |
2475 | |
2476 #ifdef HAVE_MMX | |
2477 // use the new MMX scaler if the mmx2 can't be used (its faster than the x86asm one) | |
2478 if(!(flags&SWS_FAST_BILINEAR) || (!canMMX2BeUsed)) | |
2479 #else | |
2480 if(!(flags&SWS_FAST_BILINEAR)) | |
2481 #endif | |
2482 { | |
2483 RENAME(hScale)(dst, dstWidth, src, srcW, xInc, hLumFilter, hLumFilterPos, hLumFilterSize); | |
2484 } | |
2485 else // Fast Bilinear upscale / crap downscale | |
2486 { | |
2487 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
2488 #ifdef HAVE_MMX2 | |
2489 int i; | |
19396 | 2490 #if defined(PIC) |
2491 uint64_t ebxsave __attribute__((aligned(8))); | |
2492 #endif | |
18861 | 2493 if(canMMX2BeUsed) |
2494 { | |
2495 asm volatile( | |
19396 | 2496 #if defined(PIC) |
2497 "mov %%"REG_b", %5 \n\t" | |
2498 #endif | |
18861 | 2499 "pxor %%mm7, %%mm7 \n\t" |
2500 "mov %0, %%"REG_c" \n\t" | |
2501 "mov %1, %%"REG_D" \n\t" | |
2502 "mov %2, %%"REG_d" \n\t" | |
2503 "mov %3, %%"REG_b" \n\t" | |
2504 "xor %%"REG_a", %%"REG_a" \n\t" // i | |
2505 PREFETCH" (%%"REG_c") \n\t" | |
2506 PREFETCH" 32(%%"REG_c") \n\t" | |
2507 PREFETCH" 64(%%"REG_c") \n\t" | |
2508 | |
2509 #ifdef ARCH_X86_64 | |
2510 | |
2511 #define FUNNY_Y_CODE \ | |
2512 "movl (%%"REG_b"), %%esi \n\t"\ | |
2513 "call *%4 \n\t"\ | |
2514 "movl (%%"REG_b", %%"REG_a"), %%esi\n\t"\ | |
2515 "add %%"REG_S", %%"REG_c" \n\t"\ | |
2516 "add %%"REG_a", %%"REG_D" \n\t"\ | |
2517 "xor %%"REG_a", %%"REG_a" \n\t"\ | |
2518 | |
2519 #else | |
2520 | |
2521 #define FUNNY_Y_CODE \ | |
2522 "movl (%%"REG_b"), %%esi \n\t"\ | |
2523 "call *%4 \n\t"\ | |
2524 "addl (%%"REG_b", %%"REG_a"), %%"REG_c"\n\t"\ | |
2525 "add %%"REG_a", %%"REG_D" \n\t"\ | |
2526 "xor %%"REG_a", %%"REG_a" \n\t"\ | |
2527 | |
2528 #endif | |
2529 | |
2530 FUNNY_Y_CODE | |
2531 FUNNY_Y_CODE | |
2532 FUNNY_Y_CODE | |
2533 FUNNY_Y_CODE | |
2534 FUNNY_Y_CODE | |
2535 FUNNY_Y_CODE | |
2536 FUNNY_Y_CODE | |
2537 FUNNY_Y_CODE | |
2538 | |
19396 | 2539 #if defined(PIC) |
2540 "mov %5, %%"REG_b" \n\t" | |
2541 #endif | |
18861 | 2542 :: "m" (src), "m" (dst), "m" (mmx2Filter), "m" (mmx2FilterPos), |
2543 "m" (funnyYCode) | |
19396 | 2544 #if defined(PIC) |
2545 ,"m" (ebxsave) | |
2546 #endif | |
2547 : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D | |
2548 #if !defined(PIC) | |
2549 ,"%"REG_b | |
2550 #endif | |
18861 | 2551 ); |
2552 for(i=dstWidth-1; (i*xInc)>>16 >=srcW-1; i--) dst[i] = src[srcW-1]*128; | |
2553 } | |
2554 else | |
2555 { | |
2556 #endif | |
2557 long xInc_shr16 = xInc >> 16; | |
2558 uint16_t xInc_mask = xInc & 0xffff; | |
2559 //NO MMX just normal asm ... | |
2560 asm volatile( | |
2561 "xor %%"REG_a", %%"REG_a" \n\t" // i | |
19396 | 2562 "xor %%"REG_d", %%"REG_d" \n\t" // xx |
18861 | 2563 "xorl %%ecx, %%ecx \n\t" // 2*xalpha |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
2564 ASMALIGN(4) |
18861 | 2565 "1: \n\t" |
19396 | 2566 "movzbl (%0, %%"REG_d"), %%edi \n\t" //src[xx] |
2567 "movzbl 1(%0, %%"REG_d"), %%esi \n\t" //src[xx+1] | |
18861 | 2568 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx] |
2569 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha | |
2570 "shll $16, %%edi \n\t" | |
2571 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha) | |
2572 "mov %1, %%"REG_D" \n\t" | |
2573 "shrl $9, %%esi \n\t" | |
2574 "movw %%si, (%%"REG_D", %%"REG_a", 2)\n\t" | |
2575 "addw %4, %%cx \n\t" //2*xalpha += xInc&0xFF | |
19396 | 2576 "adc %3, %%"REG_d" \n\t" //xx+= xInc>>8 + carry |
18861 | 2577 |
19396 | 2578 "movzbl (%0, %%"REG_d"), %%edi \n\t" //src[xx] |
2579 "movzbl 1(%0, %%"REG_d"), %%esi \n\t" //src[xx+1] | |
18861 | 2580 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx] |
2581 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha | |
2582 "shll $16, %%edi \n\t" | |
2583 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha) | |
2584 "mov %1, %%"REG_D" \n\t" | |
2585 "shrl $9, %%esi \n\t" | |
2586 "movw %%si, 2(%%"REG_D", %%"REG_a", 2)\n\t" | |
2587 "addw %4, %%cx \n\t" //2*xalpha += xInc&0xFF | |
19396 | 2588 "adc %3, %%"REG_d" \n\t" //xx+= xInc>>8 + carry |
18861 | 2589 |
2590 | |
2591 "add $2, %%"REG_a" \n\t" | |
2592 "cmp %2, %%"REG_a" \n\t" | |
2593 " jb 1b \n\t" | |
2594 | |
2595 | |
2596 :: "r" (src), "m" (dst), "m" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask) | |
19396 | 2597 : "%"REG_a, "%"REG_d, "%ecx", "%"REG_D, "%esi" |
18861 | 2598 ); |
2599 #ifdef HAVE_MMX2 | |
2600 } //if MMX2 can't be used | |
2601 #endif | |
2602 #else | |
2603 int i; | |
2604 unsigned int xpos=0; | |
2605 for(i=0;i<dstWidth;i++) | |
2606 { | |
2607 register unsigned int xx=xpos>>16; | |
2608 register unsigned int xalpha=(xpos&0xFFFF)>>9; | |
2609 dst[i]= (src[xx]<<7) + (src[xx+1] - src[xx])*xalpha; | |
2610 xpos+=xInc; | |
2611 } | |
2612 #endif | |
2613 } | |
2614 } | |
2615 | |
2616 inline static void RENAME(hcscale)(uint16_t *dst, long dstWidth, uint8_t *src1, uint8_t *src2, | |
2617 int srcW, int xInc, int flags, int canMMX2BeUsed, int16_t *hChrFilter, | |
2618 int16_t *hChrFilterPos, int hChrFilterSize, void *funnyUVCode, | |
2619 int srcFormat, uint8_t *formatConvBuffer, int16_t *mmx2Filter, | |
2620 int32_t *mmx2FilterPos) | |
2621 { | |
2622 if(srcFormat==IMGFMT_YUY2) | |
2623 { | |
2624 RENAME(yuy2ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2625 src1= formatConvBuffer; | |
2626 src2= formatConvBuffer+2048; | |
2627 } | |
2628 else if(srcFormat==IMGFMT_UYVY) | |
2629 { | |
2630 RENAME(uyvyToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2631 src1= formatConvBuffer; | |
2632 src2= formatConvBuffer+2048; | |
2633 } | |
2634 else if(srcFormat==IMGFMT_BGR32) | |
2635 { | |
2636 RENAME(bgr32ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2637 src1= formatConvBuffer; | |
2638 src2= formatConvBuffer+2048; | |
2639 } | |
2640 else if(srcFormat==IMGFMT_BGR24) | |
2641 { | |
2642 RENAME(bgr24ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2643 src1= formatConvBuffer; | |
2644 src2= formatConvBuffer+2048; | |
2645 } | |
2646 else if(srcFormat==IMGFMT_BGR16) | |
2647 { | |
2648 RENAME(bgr16ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2649 src1= formatConvBuffer; | |
2650 src2= formatConvBuffer+2048; | |
2651 } | |
2652 else if(srcFormat==IMGFMT_BGR15) | |
2653 { | |
2654 RENAME(bgr15ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2655 src1= formatConvBuffer; | |
2656 src2= formatConvBuffer+2048; | |
2657 } | |
2658 else if(srcFormat==IMGFMT_RGB32) | |
2659 { | |
2660 RENAME(rgb32ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2661 src1= formatConvBuffer; | |
2662 src2= formatConvBuffer+2048; | |
2663 } | |
2664 else if(srcFormat==IMGFMT_RGB24) | |
2665 { | |
2666 RENAME(rgb24ToUV)(formatConvBuffer, formatConvBuffer+2048, src1, src2, srcW); | |
2667 src1= formatConvBuffer; | |
2668 src2= formatConvBuffer+2048; | |
2669 } | |
2670 else if(isGray(srcFormat)) | |
2671 { | |
2672 return; | |
2673 } | |
2674 | |
2675 #ifdef HAVE_MMX | |
2676 // use the new MMX scaler if the mmx2 can't be used (its faster than the x86asm one) | |
2677 if(!(flags&SWS_FAST_BILINEAR) || (!canMMX2BeUsed)) | |
2678 #else | |
2679 if(!(flags&SWS_FAST_BILINEAR)) | |
2680 #endif | |
2681 { | |
2682 RENAME(hScale)(dst , dstWidth, src1, srcW, xInc, hChrFilter, hChrFilterPos, hChrFilterSize); | |
2683 RENAME(hScale)(dst+2048, dstWidth, src2, srcW, xInc, hChrFilter, hChrFilterPos, hChrFilterSize); | |
2684 } | |
2685 else // Fast Bilinear upscale / crap downscale | |
2686 { | |
2687 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
2688 #ifdef HAVE_MMX2 | |
2689 int i; | |
19396 | 2690 #if defined(PIC) |
2691 uint64_t ebxsave __attribute__((aligned(8))); | |
2692 #endif | |
18861 | 2693 if(canMMX2BeUsed) |
2694 { | |
2695 asm volatile( | |
19396 | 2696 #if defined(PIC) |
2697 "mov %%"REG_b", %6 \n\t" | |
2698 #endif | |
18861 | 2699 "pxor %%mm7, %%mm7 \n\t" |
2700 "mov %0, %%"REG_c" \n\t" | |
2701 "mov %1, %%"REG_D" \n\t" | |
2702 "mov %2, %%"REG_d" \n\t" | |
2703 "mov %3, %%"REG_b" \n\t" | |
2704 "xor %%"REG_a", %%"REG_a" \n\t" // i | |
2705 PREFETCH" (%%"REG_c") \n\t" | |
2706 PREFETCH" 32(%%"REG_c") \n\t" | |
2707 PREFETCH" 64(%%"REG_c") \n\t" | |
2708 | |
2709 #ifdef ARCH_X86_64 | |
2710 | |
2711 #define FUNNY_UV_CODE \ | |
2712 "movl (%%"REG_b"), %%esi \n\t"\ | |
2713 "call *%4 \n\t"\ | |
2714 "movl (%%"REG_b", %%"REG_a"), %%esi\n\t"\ | |
2715 "add %%"REG_S", %%"REG_c" \n\t"\ | |
2716 "add %%"REG_a", %%"REG_D" \n\t"\ | |
2717 "xor %%"REG_a", %%"REG_a" \n\t"\ | |
2718 | |
2719 #else | |
2720 | |
2721 #define FUNNY_UV_CODE \ | |
2722 "movl (%%"REG_b"), %%esi \n\t"\ | |
2723 "call *%4 \n\t"\ | |
2724 "addl (%%"REG_b", %%"REG_a"), %%"REG_c"\n\t"\ | |
2725 "add %%"REG_a", %%"REG_D" \n\t"\ | |
2726 "xor %%"REG_a", %%"REG_a" \n\t"\ | |
2727 | |
2728 #endif | |
2729 | |
2730 FUNNY_UV_CODE | |
2731 FUNNY_UV_CODE | |
2732 FUNNY_UV_CODE | |
2733 FUNNY_UV_CODE | |
2734 "xor %%"REG_a", %%"REG_a" \n\t" // i | |
2735 "mov %5, %%"REG_c" \n\t" // src | |
2736 "mov %1, %%"REG_D" \n\t" // buf1 | |
2737 "add $4096, %%"REG_D" \n\t" | |
2738 PREFETCH" (%%"REG_c") \n\t" | |
2739 PREFETCH" 32(%%"REG_c") \n\t" | |
2740 PREFETCH" 64(%%"REG_c") \n\t" | |
2741 | |
2742 FUNNY_UV_CODE | |
2743 FUNNY_UV_CODE | |
2744 FUNNY_UV_CODE | |
2745 FUNNY_UV_CODE | |
2746 | |
19396 | 2747 #if defined(PIC) |
2748 "mov %6, %%"REG_b" \n\t" | |
2749 #endif | |
18861 | 2750 :: "m" (src1), "m" (dst), "m" (mmx2Filter), "m" (mmx2FilterPos), |
2751 "m" (funnyUVCode), "m" (src2) | |
19396 | 2752 #if defined(PIC) |
2753 ,"m" (ebxsave) | |
2754 #endif | |
19400
0310c3310360
Fix compilation with -no-PIC and without -fomit-frame-pointer (used by
uau
parents:
19396
diff
changeset
|
2755 : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D |
19396 | 2756 #if !defined(PIC) |
2757 ,"%"REG_b | |
2758 #endif | |
18861 | 2759 ); |
2760 for(i=dstWidth-1; (i*xInc)>>16 >=srcW-1; i--) | |
2761 { | |
2762 // printf("%d %d %d\n", dstWidth, i, srcW); | |
2763 dst[i] = src1[srcW-1]*128; | |
2764 dst[i+2048] = src2[srcW-1]*128; | |
2765 } | |
2766 } | |
2767 else | |
2768 { | |
2769 #endif | |
2770 long xInc_shr16 = (long) (xInc >> 16); | |
2771 uint16_t xInc_mask = xInc & 0xffff; | |
2772 asm volatile( | |
2773 "xor %%"REG_a", %%"REG_a" \n\t" // i | |
19396 | 2774 "xor %%"REG_d", %%"REG_d" \n\t" // xx |
18861 | 2775 "xorl %%ecx, %%ecx \n\t" // 2*xalpha |
19372
6334c14b38eb
Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
diego
parents:
19181
diff
changeset
|
2776 ASMALIGN(4) |
18861 | 2777 "1: \n\t" |
2778 "mov %0, %%"REG_S" \n\t" | |
19396 | 2779 "movzbl (%%"REG_S", %%"REG_d"), %%edi \n\t" //src[xx] |
2780 "movzbl 1(%%"REG_S", %%"REG_d"), %%esi \n\t" //src[xx+1] | |
18861 | 2781 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx] |
2782 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha | |
2783 "shll $16, %%edi \n\t" | |
2784 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha) | |
2785 "mov %1, %%"REG_D" \n\t" | |
2786 "shrl $9, %%esi \n\t" | |
2787 "movw %%si, (%%"REG_D", %%"REG_a", 2)\n\t" | |
2788 | |
19396 | 2789 "movzbl (%5, %%"REG_d"), %%edi \n\t" //src[xx] |
2790 "movzbl 1(%5, %%"REG_d"), %%esi \n\t" //src[xx+1] | |
18861 | 2791 "subl %%edi, %%esi \n\t" //src[xx+1] - src[xx] |
2792 "imull %%ecx, %%esi \n\t" //(src[xx+1] - src[xx])*2*xalpha | |
2793 "shll $16, %%edi \n\t" | |
2794 "addl %%edi, %%esi \n\t" //src[xx+1]*2*xalpha + src[xx]*(1-2*xalpha) | |
2795 "mov %1, %%"REG_D" \n\t" | |
2796 "shrl $9, %%esi \n\t" | |
2797 "movw %%si, 4096(%%"REG_D", %%"REG_a", 2)\n\t" | |
2798 | |
2799 "addw %4, %%cx \n\t" //2*xalpha += xInc&0xFF | |
19396 | 2800 "adc %3, %%"REG_d" \n\t" //xx+= xInc>>8 + carry |
18861 | 2801 "add $1, %%"REG_a" \n\t" |
2802 "cmp %2, %%"REG_a" \n\t" | |
2803 " jb 1b \n\t" | |
2804 | |
2805 /* GCC-3.3 makes MPlayer crash on IA-32 machines when using "g" operand here, | |
2806 which is needed to support GCC-4.0 */ | |
2807 #if defined(ARCH_X86_64) && ((__GNUC__ > 3) || ( __GNUC__ == 3 && __GNUC_MINOR__ >= 4)) | |
2808 :: "m" (src1), "m" (dst), "g" ((long)dstWidth), "m" (xInc_shr16), "m" (xInc_mask), | |
2809 #else | |
2810 :: "m" (src1), "m" (dst), "m" ((long)dstWidth), "m" (xInc_shr16), "m" (xInc_mask), | |
2811 #endif | |
2812 "r" (src2) | |
19396 | 2813 : "%"REG_a, "%"REG_d, "%ecx", "%"REG_D, "%esi" |
18861 | 2814 ); |
2815 #ifdef HAVE_MMX2 | |
2816 } //if MMX2 can't be used | |
2817 #endif | |
2818 #else | |
2819 int i; | |
2820 unsigned int xpos=0; | |
2821 for(i=0;i<dstWidth;i++) | |
2822 { | |
2823 register unsigned int xx=xpos>>16; | |
2824 register unsigned int xalpha=(xpos&0xFFFF)>>9; | |
2825 dst[i]=(src1[xx]*(xalpha^127)+src1[xx+1]*xalpha); | |
2826 dst[i+2048]=(src2[xx]*(xalpha^127)+src2[xx+1]*xalpha); | |
2827 /* slower | |
2828 dst[i]= (src1[xx]<<7) + (src1[xx+1] - src1[xx])*xalpha; | |
2829 dst[i+2048]=(src2[xx]<<7) + (src2[xx+1] - src2[xx])*xalpha; | |
2830 */ | |
2831 xpos+=xInc; | |
2832 } | |
2833 #endif | |
2834 } | |
2835 } | |
2836 | |
2837 static int RENAME(swScale)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
2838 int srcSliceH, uint8_t* dst[], int dstStride[]){ | |
2839 | |
2840 /* load a few things into local vars to make the code more readable? and faster */ | |
2841 const int srcW= c->srcW; | |
2842 const int dstW= c->dstW; | |
2843 const int dstH= c->dstH; | |
2844 const int chrDstW= c->chrDstW; | |
2845 const int chrSrcW= c->chrSrcW; | |
2846 const int lumXInc= c->lumXInc; | |
2847 const int chrXInc= c->chrXInc; | |
2848 const int dstFormat= c->dstFormat; | |
2849 const int srcFormat= c->srcFormat; | |
2850 const int flags= c->flags; | |
2851 const int canMMX2BeUsed= c->canMMX2BeUsed; | |
2852 int16_t *vLumFilterPos= c->vLumFilterPos; | |
2853 int16_t *vChrFilterPos= c->vChrFilterPos; | |
2854 int16_t *hLumFilterPos= c->hLumFilterPos; | |
2855 int16_t *hChrFilterPos= c->hChrFilterPos; | |
2856 int16_t *vLumFilter= c->vLumFilter; | |
2857 int16_t *vChrFilter= c->vChrFilter; | |
2858 int16_t *hLumFilter= c->hLumFilter; | |
2859 int16_t *hChrFilter= c->hChrFilter; | |
2860 int32_t *lumMmxFilter= c->lumMmxFilter; | |
2861 int32_t *chrMmxFilter= c->chrMmxFilter; | |
2862 const int vLumFilterSize= c->vLumFilterSize; | |
2863 const int vChrFilterSize= c->vChrFilterSize; | |
2864 const int hLumFilterSize= c->hLumFilterSize; | |
2865 const int hChrFilterSize= c->hChrFilterSize; | |
2866 int16_t **lumPixBuf= c->lumPixBuf; | |
2867 int16_t **chrPixBuf= c->chrPixBuf; | |
2868 const int vLumBufSize= c->vLumBufSize; | |
2869 const int vChrBufSize= c->vChrBufSize; | |
2870 uint8_t *funnyYCode= c->funnyYCode; | |
2871 uint8_t *funnyUVCode= c->funnyUVCode; | |
2872 uint8_t *formatConvBuffer= c->formatConvBuffer; | |
2873 const int chrSrcSliceY= srcSliceY >> c->chrSrcVSubSample; | |
2874 const int chrSrcSliceH= -((-srcSliceH) >> c->chrSrcVSubSample); | |
2875 int lastDstY; | |
2876 | |
2877 /* vars whch will change and which we need to storw back in the context */ | |
2878 int dstY= c->dstY; | |
2879 int lumBufIndex= c->lumBufIndex; | |
2880 int chrBufIndex= c->chrBufIndex; | |
2881 int lastInLumBuf= c->lastInLumBuf; | |
2882 int lastInChrBuf= c->lastInChrBuf; | |
2883 | |
2884 if(isPacked(c->srcFormat)){ | |
2885 src[0]= | |
2886 src[1]= | |
2887 src[2]= src[0]; | |
2888 srcStride[0]= | |
2889 srcStride[1]= | |
2890 srcStride[2]= srcStride[0]; | |
2891 } | |
2892 srcStride[1]<<= c->vChrDrop; | |
2893 srcStride[2]<<= c->vChrDrop; | |
2894 | |
2895 // printf("swscale %X %X %X -> %X %X %X\n", (int)src[0], (int)src[1], (int)src[2], | |
2896 // (int)dst[0], (int)dst[1], (int)dst[2]); | |
2897 | |
2898 #if 0 //self test FIXME move to a vfilter or something | |
2899 { | |
2900 static volatile int i=0; | |
2901 i++; | |
2902 if(srcFormat==IMGFMT_YV12 && i==1 && srcSliceH>= c->srcH) | |
2903 selfTest(src, srcStride, c->srcW, c->srcH); | |
2904 i--; | |
2905 } | |
2906 #endif | |
2907 | |
2908 //printf("sws Strides:%d %d %d -> %d %d %d\n", srcStride[0],srcStride[1],srcStride[2], | |
2909 //dstStride[0],dstStride[1],dstStride[2]); | |
2910 | |
2911 if(dstStride[0]%8 !=0 || dstStride[1]%8 !=0 || dstStride[2]%8 !=0) | |
2912 { | |
2913 static int firstTime=1; //FIXME move this into the context perhaps | |
2914 if(flags & SWS_PRINT_INFO && firstTime) | |
2915 { | |
2916 MSG_WARN("SwScaler: Warning: dstStride is not aligned!\n" | |
2917 "SwScaler: ->cannot do aligned memory acesses anymore\n"); | |
2918 firstTime=0; | |
2919 } | |
2920 } | |
2921 | |
2922 /* Note the user might start scaling the picture in the middle so this will not get executed | |
2923 this is not really intended but works currently, so ppl might do it */ | |
2924 if(srcSliceY ==0){ | |
2925 lumBufIndex=0; | |
2926 chrBufIndex=0; | |
2927 dstY=0; | |
2928 lastInLumBuf= -1; | |
2929 lastInChrBuf= -1; | |
2930 } | |
2931 | |
2932 lastDstY= dstY; | |
2933 | |
2934 for(;dstY < dstH; dstY++){ | |
2935 unsigned char *dest =dst[0]+dstStride[0]*dstY; | |
2936 const int chrDstY= dstY>>c->chrDstVSubSample; | |
2937 unsigned char *uDest=dst[1]+dstStride[1]*chrDstY; | |
2938 unsigned char *vDest=dst[2]+dstStride[2]*chrDstY; | |
2939 | |
2940 const int firstLumSrcY= vLumFilterPos[dstY]; //First line needed as input | |
2941 const int firstChrSrcY= vChrFilterPos[chrDstY]; //First line needed as input | |
2942 const int lastLumSrcY= firstLumSrcY + vLumFilterSize -1; // Last line needed as input | |
2943 const int lastChrSrcY= firstChrSrcY + vChrFilterSize -1; // Last line needed as input | |
2944 | |
2945 //printf("dstY:%d dstH:%d firstLumSrcY:%d lastInLumBuf:%d vLumBufSize: %d vChrBufSize: %d slice: %d %d vLumFilterSize: %d firstChrSrcY: %d vChrFilterSize: %d c->chrSrcVSubSample: %d\n", | |
2946 // dstY, dstH, firstLumSrcY, lastInLumBuf, vLumBufSize, vChrBufSize, srcSliceY, srcSliceH, vLumFilterSize, firstChrSrcY, vChrFilterSize, c->chrSrcVSubSample); | |
2947 //handle holes (FAST_BILINEAR & weird filters) | |
2948 if(firstLumSrcY > lastInLumBuf) lastInLumBuf= firstLumSrcY-1; | |
2949 if(firstChrSrcY > lastInChrBuf) lastInChrBuf= firstChrSrcY-1; | |
2950 //printf("%d %d %d\n", firstChrSrcY, lastInChrBuf, vChrBufSize); | |
2951 ASSERT(firstLumSrcY >= lastInLumBuf - vLumBufSize + 1) | |
2952 ASSERT(firstChrSrcY >= lastInChrBuf - vChrBufSize + 1) | |
2953 | |
2954 // Do we have enough lines in this slice to output the dstY line | |
2955 if(lastLumSrcY < srcSliceY + srcSliceH && lastChrSrcY < -((-srcSliceY - srcSliceH)>>c->chrSrcVSubSample)) | |
2956 { | |
2957 //Do horizontal scaling | |
2958 while(lastInLumBuf < lastLumSrcY) | |
2959 { | |
2960 uint8_t *s= src[0]+(lastInLumBuf + 1 - srcSliceY)*srcStride[0]; | |
2961 lumBufIndex++; | |
2962 // printf("%d %d %d %d\n", lumBufIndex, vLumBufSize, lastInLumBuf, lastLumSrcY); | |
2963 ASSERT(lumBufIndex < 2*vLumBufSize) | |
2964 ASSERT(lastInLumBuf + 1 - srcSliceY < srcSliceH) | |
2965 ASSERT(lastInLumBuf + 1 - srcSliceY >= 0) | |
2966 // printf("%d %d\n", lumBufIndex, vLumBufSize); | |
2967 RENAME(hyscale)(lumPixBuf[ lumBufIndex ], dstW, s, srcW, lumXInc, | |
2968 flags, canMMX2BeUsed, hLumFilter, hLumFilterPos, hLumFilterSize, | |
2969 funnyYCode, c->srcFormat, formatConvBuffer, | |
2970 c->lumMmx2Filter, c->lumMmx2FilterPos); | |
2971 lastInLumBuf++; | |
2972 } | |
2973 while(lastInChrBuf < lastChrSrcY) | |
2974 { | |
2975 uint8_t *src1= src[1]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[1]; | |
2976 uint8_t *src2= src[2]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[2]; | |
2977 chrBufIndex++; | |
2978 ASSERT(chrBufIndex < 2*vChrBufSize) | |
2979 ASSERT(lastInChrBuf + 1 - chrSrcSliceY < (chrSrcSliceH)) | |
2980 ASSERT(lastInChrBuf + 1 - chrSrcSliceY >= 0) | |
2981 //FIXME replace parameters through context struct (some at least) | |
2982 | |
2983 if(!(isGray(srcFormat) || isGray(dstFormat))) | |
2984 RENAME(hcscale)(chrPixBuf[ chrBufIndex ], chrDstW, src1, src2, chrSrcW, chrXInc, | |
2985 flags, canMMX2BeUsed, hChrFilter, hChrFilterPos, hChrFilterSize, | |
2986 funnyUVCode, c->srcFormat, formatConvBuffer, | |
2987 c->chrMmx2Filter, c->chrMmx2FilterPos); | |
2988 lastInChrBuf++; | |
2989 } | |
2990 //wrap buf index around to stay inside the ring buffer | |
2991 if(lumBufIndex >= vLumBufSize ) lumBufIndex-= vLumBufSize; | |
2992 if(chrBufIndex >= vChrBufSize ) chrBufIndex-= vChrBufSize; | |
2993 } | |
2994 else // not enough lines left in this slice -> load the rest in the buffer | |
2995 { | |
2996 /* printf("%d %d Last:%d %d LastInBuf:%d %d Index:%d %d Y:%d FSize: %d %d BSize: %d %d\n", | |
2997 firstChrSrcY,firstLumSrcY,lastChrSrcY,lastLumSrcY, | |
2998 lastInChrBuf,lastInLumBuf,chrBufIndex,lumBufIndex,dstY,vChrFilterSize,vLumFilterSize, | |
2999 vChrBufSize, vLumBufSize);*/ | |
3000 | |
3001 //Do horizontal scaling | |
3002 while(lastInLumBuf+1 < srcSliceY + srcSliceH) | |
3003 { | |
3004 uint8_t *s= src[0]+(lastInLumBuf + 1 - srcSliceY)*srcStride[0]; | |
3005 lumBufIndex++; | |
3006 ASSERT(lumBufIndex < 2*vLumBufSize) | |
3007 ASSERT(lastInLumBuf + 1 - srcSliceY < srcSliceH) | |
3008 ASSERT(lastInLumBuf + 1 - srcSliceY >= 0) | |
3009 RENAME(hyscale)(lumPixBuf[ lumBufIndex ], dstW, s, srcW, lumXInc, | |
3010 flags, canMMX2BeUsed, hLumFilter, hLumFilterPos, hLumFilterSize, | |
3011 funnyYCode, c->srcFormat, formatConvBuffer, | |
3012 c->lumMmx2Filter, c->lumMmx2FilterPos); | |
3013 lastInLumBuf++; | |
3014 } | |
3015 while(lastInChrBuf+1 < (chrSrcSliceY + chrSrcSliceH)) | |
3016 { | |
3017 uint8_t *src1= src[1]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[1]; | |
3018 uint8_t *src2= src[2]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[2]; | |
3019 chrBufIndex++; | |
3020 ASSERT(chrBufIndex < 2*vChrBufSize) | |
3021 ASSERT(lastInChrBuf + 1 - chrSrcSliceY < chrSrcSliceH) | |
3022 ASSERT(lastInChrBuf + 1 - chrSrcSliceY >= 0) | |
3023 | |
3024 if(!(isGray(srcFormat) || isGray(dstFormat))) | |
3025 RENAME(hcscale)(chrPixBuf[ chrBufIndex ], chrDstW, src1, src2, chrSrcW, chrXInc, | |
3026 flags, canMMX2BeUsed, hChrFilter, hChrFilterPos, hChrFilterSize, | |
3027 funnyUVCode, c->srcFormat, formatConvBuffer, | |
3028 c->chrMmx2Filter, c->chrMmx2FilterPos); | |
3029 lastInChrBuf++; | |
3030 } | |
3031 //wrap buf index around to stay inside the ring buffer | |
3032 if(lumBufIndex >= vLumBufSize ) lumBufIndex-= vLumBufSize; | |
3033 if(chrBufIndex >= vChrBufSize ) chrBufIndex-= vChrBufSize; | |
3034 break; //we can't output a dstY line so let's try with the next slice | |
3035 } | |
3036 | |
3037 #ifdef HAVE_MMX | |
3038 b5Dither= dither8[dstY&1]; | |
3039 g6Dither= dither4[dstY&1]; | |
3040 g5Dither= dither8[dstY&1]; | |
3041 r5Dither= dither8[(dstY+1)&1]; | |
3042 #endif | |
3043 if(dstY < dstH-2) | |
3044 { | |
3045 int16_t **lumSrcPtr= lumPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize; | |
3046 int16_t **chrSrcPtr= chrPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize; | |
3047 #ifdef HAVE_MMX | |
3048 int i; | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3049 if(flags & SWS_ACCURATE_RND){ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3050 for(i=0; i<vLumFilterSize; i+=2){ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3051 lumMmxFilter[2*i+0]= lumSrcPtr[i ]; |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3052 lumMmxFilter[2*i+1]= lumSrcPtr[i+(vLumFilterSize>1)]; |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3053 lumMmxFilter[2*i+2]= |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3054 lumMmxFilter[2*i+3]= vLumFilter[dstY*vLumFilterSize + i ] |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3055 + (vLumFilterSize>1 ? vLumFilter[dstY*vLumFilterSize + i + 1]<<16 : 0); |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3056 } |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3057 for(i=0; i<vChrFilterSize; i+=2){ |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3058 chrMmxFilter[2*i+0]= chrSrcPtr[i ]; |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3059 chrMmxFilter[2*i+1]= chrSrcPtr[i+(vChrFilterSize>1)]; |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3060 chrMmxFilter[2*i+2]= |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3061 chrMmxFilter[2*i+3]= vChrFilter[chrDstY*vChrFilterSize + i ] |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3062 + (vChrFilterSize>1 ? vChrFilter[chrDstY*vChrFilterSize + i + 1]<<16 : 0); |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3063 } |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3064 }else{ |
18861 | 3065 for(i=0; i<vLumFilterSize; i++) |
3066 { | |
3067 lumMmxFilter[4*i+0]= (int32_t)lumSrcPtr[i]; | |
3068 lumMmxFilter[4*i+2]= | |
3069 lumMmxFilter[4*i+3]= | |
3070 ((uint16_t)vLumFilter[dstY*vLumFilterSize + i])*0x10001; | |
3071 } | |
3072 for(i=0; i<vChrFilterSize; i++) | |
3073 { | |
3074 chrMmxFilter[4*i+0]= (int32_t)chrSrcPtr[i]; | |
3075 chrMmxFilter[4*i+2]= | |
3076 chrMmxFilter[4*i+3]= | |
3077 ((uint16_t)vChrFilter[chrDstY*vChrFilterSize + i])*0x10001; | |
3078 } | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3079 } |
18861 | 3080 #endif |
3081 if(dstFormat == IMGFMT_NV12 || dstFormat == IMGFMT_NV21){ | |
3082 const int chrSkipMask= (1<<c->chrDstVSubSample)-1; | |
3083 if(dstY&chrSkipMask) uDest= NULL; //FIXME split functions in lumi / chromi | |
3084 RENAME(yuv2nv12X)(c, | |
3085 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize, | |
3086 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, | |
3087 dest, uDest, dstW, chrDstW, dstFormat); | |
3088 } | |
3089 else if(isPlanarYUV(dstFormat) || isGray(dstFormat)) //YV12 like | |
3090 { | |
3091 const int chrSkipMask= (1<<c->chrDstVSubSample)-1; | |
3092 if((dstY&chrSkipMask) || isGray(dstFormat)) uDest=vDest= NULL; //FIXME split functions in lumi / chromi | |
3093 if(vLumFilterSize == 1 && vChrFilterSize == 1) // Unscaled YV12 | |
3094 { | |
3095 int16_t *lumBuf = lumPixBuf[0]; | |
3096 int16_t *chrBuf= chrPixBuf[0]; | |
3097 RENAME(yuv2yuv1)(lumBuf, chrBuf, dest, uDest, vDest, dstW, chrDstW); | |
3098 } | |
3099 else //General YV12 | |
3100 { | |
3101 RENAME(yuv2yuvX)(c, | |
3102 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize, | |
3103 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, | |
3104 dest, uDest, vDest, dstW, chrDstW); | |
3105 } | |
3106 } | |
3107 else | |
3108 { | |
3109 ASSERT(lumSrcPtr + vLumFilterSize - 1 < lumPixBuf + vLumBufSize*2); | |
3110 ASSERT(chrSrcPtr + vChrFilterSize - 1 < chrPixBuf + vChrBufSize*2); | |
3111 if(vLumFilterSize == 1 && vChrFilterSize == 2) //Unscaled RGB | |
3112 { | |
3113 int chrAlpha= vChrFilter[2*dstY+1]; | |
3114 RENAME(yuv2packed1)(c, *lumSrcPtr, *chrSrcPtr, *(chrSrcPtr+1), | |
3115 dest, dstW, chrAlpha, dstFormat, flags, dstY); | |
3116 } | |
3117 else if(vLumFilterSize == 2 && vChrFilterSize == 2) //BiLinear Upscale RGB | |
3118 { | |
3119 int lumAlpha= vLumFilter[2*dstY+1]; | |
3120 int chrAlpha= vChrFilter[2*dstY+1]; | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3121 lumMmxFilter[2]= |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3122 lumMmxFilter[3]= vLumFilter[2*dstY ]*0x10001; |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3123 chrMmxFilter[2]= |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
18861
diff
changeset
|
3124 chrMmxFilter[3]= vChrFilter[2*chrDstY]*0x10001; |
18861 | 3125 RENAME(yuv2packed2)(c, *lumSrcPtr, *(lumSrcPtr+1), *chrSrcPtr, *(chrSrcPtr+1), |
3126 dest, dstW, lumAlpha, chrAlpha, dstY); | |
3127 } | |
3128 else //General RGB | |
3129 { | |
3130 RENAME(yuv2packedX)(c, | |
3131 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize, | |
3132 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, | |
3133 dest, dstW, dstY); | |
3134 } | |
3135 } | |
3136 } | |
3137 else // hmm looks like we can't use MMX here without overwriting this array's tail | |
3138 { | |
3139 int16_t **lumSrcPtr= lumPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize; | |
3140 int16_t **chrSrcPtr= chrPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize; | |
3141 if(dstFormat == IMGFMT_NV12 || dstFormat == IMGFMT_NV21){ | |
3142 const int chrSkipMask= (1<<c->chrDstVSubSample)-1; | |
3143 if(dstY&chrSkipMask) uDest= NULL; //FIXME split functions in lumi / chromi | |
3144 yuv2nv12XinC( | |
3145 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize, | |
3146 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, | |
3147 dest, uDest, dstW, chrDstW, dstFormat); | |
3148 } | |
3149 else if(isPlanarYUV(dstFormat) || isGray(dstFormat)) //YV12 | |
3150 { | |
3151 const int chrSkipMask= (1<<c->chrDstVSubSample)-1; | |
3152 if((dstY&chrSkipMask) || isGray(dstFormat)) uDest=vDest= NULL; //FIXME split functions in lumi / chromi | |
3153 yuv2yuvXinC( | |
3154 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize, | |
3155 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, | |
3156 dest, uDest, vDest, dstW, chrDstW); | |
3157 } | |
3158 else | |
3159 { | |
3160 ASSERT(lumSrcPtr + vLumFilterSize - 1 < lumPixBuf + vLumBufSize*2); | |
3161 ASSERT(chrSrcPtr + vChrFilterSize - 1 < chrPixBuf + vChrBufSize*2); | |
3162 yuv2packedXinC(c, | |
3163 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize, | |
3164 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize, | |
3165 dest, dstW, dstY); | |
3166 } | |
3167 } | |
3168 } | |
3169 | |
3170 #ifdef HAVE_MMX | |
3171 __asm __volatile(SFENCE:::"memory"); | |
3172 __asm __volatile(EMMS:::"memory"); | |
3173 #endif | |
3174 /* store changed local vars back in the context */ | |
3175 c->dstY= dstY; | |
3176 c->lumBufIndex= lumBufIndex; | |
3177 c->chrBufIndex= chrBufIndex; | |
3178 c->lastInLumBuf= lastInLumBuf; | |
3179 c->lastInChrBuf= lastInChrBuf; | |
3180 | |
3181 return dstY - lastDstY; | |
3182 } |