Mercurial > mplayer.hg
annotate libswscale/swscale.c @ 19449:c2c0e241e86f
Partial sync with message removal from DVD information output change.
author | diego |
---|---|
date | Sat, 19 Aug 2006 14:53:43 +0000 |
parents | ac69ba536915 |
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 /* | |
20 supported Input formats: YV12, I420/IYUV, YUY2, UYVY, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8/Y800, YVU9/IF09 | |
21 supported output formats: YV12, I420/IYUV, YUY2, UYVY, {BGR,RGB}{1,4,8,15,16,24,32}, Y8/Y800, YVU9/IF09 | |
22 {BGR,RGB}{1,4,8,15,16} support dithering | |
23 | |
24 unscaled special converters (YV12=I420=IYUV, Y800=Y8) | |
25 YV12 -> {BGR,RGB}{1,4,8,15,16,24,32} | |
26 x -> x | |
27 YUV9 -> YV12 | |
28 YUV9/YV12 -> Y800 | |
29 Y800 -> YUV9/YV12 | |
30 BGR24 -> BGR32 & RGB24 -> RGB32 | |
31 BGR32 -> BGR24 & RGB32 -> RGB24 | |
32 BGR15 -> BGR16 | |
33 */ | |
34 | |
35 /* | |
36 tested special converters (most are tested actually but i didnt write it down ...) | |
37 YV12 -> BGR16 | |
38 YV12 -> YV12 | |
39 BGR15 -> BGR16 | |
40 BGR16 -> BGR16 | |
41 YVU9 -> YV12 | |
42 | |
43 untested special converters | |
44 YV12/I420 -> BGR15/BGR24/BGR32 (its the yuv2rgb stuff, so it should be ok) | |
45 YV12/I420 -> YV12/I420 | |
46 YUY2/BGR15/BGR24/BGR32/RGB24/RGB32 -> same format | |
47 BGR24 -> BGR32 & RGB24 -> RGB32 | |
48 BGR32 -> BGR24 & RGB32 -> RGB24 | |
49 BGR24 -> YV12 | |
50 */ | |
51 | |
52 #include <inttypes.h> | |
53 #include <string.h> | |
54 #include <math.h> | |
55 #include <stdio.h> | |
56 #include <unistd.h> | |
57 #include "config.h" | |
58 #include <assert.h> | |
59 #ifdef HAVE_MALLOC_H | |
60 #include <malloc.h> | |
61 #else | |
62 #include <stdlib.h> | |
63 #endif | |
64 #ifdef HAVE_SYS_MMAN_H | |
65 #include <sys/mman.h> | |
66 #if defined(MAP_ANON) && !defined(MAP_ANONYMOUS) | |
67 #define MAP_ANONYMOUS MAP_ANON | |
68 #endif | |
69 #endif | |
70 #include "swscale.h" | |
71 #include "swscale_internal.h" | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
72 #include "x86_cpu.h" |
18861 | 73 #include "bswap.h" |
19431
ac69ba536915
Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.
diego
parents:
19368
diff
changeset
|
74 #include "libmpcodecs/img_format.h" |
18861 | 75 #include "rgb2rgb.h" |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
76 #ifdef USE_FASTMEMCPY |
18861 | 77 #include "libvo/fastmemcpy.h" |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
78 #endif |
18861 | 79 |
80 #undef MOVNTQ | |
81 #undef PAVGB | |
82 | |
83 //#undef HAVE_MMX2 | |
84 //#define HAVE_3DNOW | |
85 //#undef HAVE_MMX | |
86 //#undef ARCH_X86 | |
87 //#define WORDS_BIGENDIAN | |
88 #define DITHER1XBPP | |
89 | |
90 #define FAST_BGR2YV12 // use 7 bit coeffs instead of 15bit | |
91 | |
92 #define RET 0xC3 //near return opcode for X86 | |
93 | |
94 #ifdef MP_DEBUG | |
95 #define ASSERT(x) assert(x); | |
96 #else | |
97 #define ASSERT(x) ; | |
98 #endif | |
99 | |
100 #ifdef M_PI | |
101 #define PI M_PI | |
102 #else | |
103 #define PI 3.14159265358979323846 | |
104 #endif | |
105 | |
106 //FIXME replace this with something faster | |
107 #define isPlanarYUV(x) ((x)==IMGFMT_YV12 || (x)==IMGFMT_YVU9 \ | |
108 || (x)==IMGFMT_NV12 || (x)==IMGFMT_NV21 \ | |
109 || (x)==IMGFMT_444P || (x)==IMGFMT_422P || (x)==IMGFMT_411P) | |
110 #define isYUV(x) ((x)==IMGFMT_UYVY || (x)==IMGFMT_YUY2 || isPlanarYUV(x)) | |
111 #define isGray(x) ((x)==IMGFMT_Y800) | |
112 #define isRGB(x) (((x)&IMGFMT_RGB_MASK)==IMGFMT_RGB) | |
113 #define isBGR(x) (((x)&IMGFMT_BGR_MASK)==IMGFMT_BGR) | |
114 #define isSupportedIn(x) ((x)==IMGFMT_YV12 || (x)==IMGFMT_YUY2 || (x)==IMGFMT_UYVY\ | |
115 || (x)==IMGFMT_BGR32|| (x)==IMGFMT_BGR24|| (x)==IMGFMT_BGR16|| (x)==IMGFMT_BGR15\ | |
116 || (x)==IMGFMT_RGB32|| (x)==IMGFMT_RGB24\ | |
117 || (x)==IMGFMT_Y800 || (x)==IMGFMT_YVU9\ | |
118 || (x)==IMGFMT_444P || (x)==IMGFMT_422P || (x)==IMGFMT_411P) | |
119 #define isSupportedOut(x) ((x)==IMGFMT_YV12 || (x)==IMGFMT_YUY2 || (x)==IMGFMT_UYVY\ | |
120 || (x)==IMGFMT_444P || (x)==IMGFMT_422P || (x)==IMGFMT_411P\ | |
121 || isRGB(x) || isBGR(x)\ | |
122 || (x)==IMGFMT_NV12 || (x)==IMGFMT_NV21\ | |
123 || (x)==IMGFMT_Y800 || (x)==IMGFMT_YVU9) | |
124 #define isPacked(x) ((x)==IMGFMT_YUY2 || (x)==IMGFMT_UYVY ||isRGB(x) || isBGR(x)) | |
125 | |
126 #define RGB2YUV_SHIFT 16 | |
127 #define BY ((int)( 0.098*(1<<RGB2YUV_SHIFT)+0.5)) | |
128 #define BV ((int)(-0.071*(1<<RGB2YUV_SHIFT)+0.5)) | |
129 #define BU ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5)) | |
130 #define GY ((int)( 0.504*(1<<RGB2YUV_SHIFT)+0.5)) | |
131 #define GV ((int)(-0.368*(1<<RGB2YUV_SHIFT)+0.5)) | |
132 #define GU ((int)(-0.291*(1<<RGB2YUV_SHIFT)+0.5)) | |
133 #define RY ((int)( 0.257*(1<<RGB2YUV_SHIFT)+0.5)) | |
134 #define RV ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5)) | |
135 #define RU ((int)(-0.148*(1<<RGB2YUV_SHIFT)+0.5)) | |
136 | |
137 extern const int32_t Inverse_Table_6_9[8][4]; | |
138 | |
139 /* | |
140 NOTES | |
141 Special versions: fast Y 1:1 scaling (no interpolation in y direction) | |
142 | |
143 TODO | |
144 more intelligent missalignment avoidance for the horizontal scaler | |
145 write special vertical cubic upscale version | |
146 Optimize C code (yv12 / minmax) | |
147 add support for packed pixel yuv input & output | |
148 add support for Y8 output | |
149 optimize bgr24 & bgr32 | |
150 add BGR4 output support | |
151 write special BGR->BGR scaler | |
152 */ | |
153 | |
154 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
155 static uint64_t attribute_used __attribute__((aligned(8))) bF8= 0xF8F8F8F8F8F8F8F8LL; | |
156 static uint64_t attribute_used __attribute__((aligned(8))) bFC= 0xFCFCFCFCFCFCFCFCLL; | |
157 static uint64_t __attribute__((aligned(8))) w10= 0x0010001000100010LL; | |
158 static uint64_t attribute_used __attribute__((aligned(8))) w02= 0x0002000200020002LL; | |
159 static uint64_t attribute_used __attribute__((aligned(8))) bm00001111=0x00000000FFFFFFFFLL; | |
160 static uint64_t attribute_used __attribute__((aligned(8))) bm00000111=0x0000000000FFFFFFLL; | |
161 static uint64_t attribute_used __attribute__((aligned(8))) bm11111000=0xFFFFFFFFFF000000LL; | |
162 static uint64_t attribute_used __attribute__((aligned(8))) bm01010101=0x00FF00FF00FF00FFLL; | |
163 | |
164 static volatile uint64_t attribute_used __attribute__((aligned(8))) b5Dither; | |
165 static volatile uint64_t attribute_used __attribute__((aligned(8))) g5Dither; | |
166 static volatile uint64_t attribute_used __attribute__((aligned(8))) g6Dither; | |
167 static volatile uint64_t attribute_used __attribute__((aligned(8))) r5Dither; | |
168 | |
169 static uint64_t __attribute__((aligned(8))) dither4[2]={ | |
170 0x0103010301030103LL, | |
171 0x0200020002000200LL,}; | |
172 | |
173 static uint64_t __attribute__((aligned(8))) dither8[2]={ | |
174 0x0602060206020602LL, | |
175 0x0004000400040004LL,}; | |
176 | |
177 static uint64_t __attribute__((aligned(8))) b16Mask= 0x001F001F001F001FLL; | |
178 static uint64_t attribute_used __attribute__((aligned(8))) g16Mask= 0x07E007E007E007E0LL; | |
179 static uint64_t attribute_used __attribute__((aligned(8))) r16Mask= 0xF800F800F800F800LL; | |
180 static uint64_t __attribute__((aligned(8))) b15Mask= 0x001F001F001F001FLL; | |
181 static uint64_t attribute_used __attribute__((aligned(8))) g15Mask= 0x03E003E003E003E0LL; | |
182 static uint64_t attribute_used __attribute__((aligned(8))) r15Mask= 0x7C007C007C007C00LL; | |
183 | |
184 static uint64_t attribute_used __attribute__((aligned(8))) M24A= 0x00FF0000FF0000FFLL; | |
185 static uint64_t attribute_used __attribute__((aligned(8))) M24B= 0xFF0000FF0000FF00LL; | |
186 static uint64_t attribute_used __attribute__((aligned(8))) M24C= 0x0000FF0000FF0000LL; | |
187 | |
188 #ifdef FAST_BGR2YV12 | |
189 static const uint64_t bgr2YCoeff attribute_used __attribute__((aligned(8))) = 0x000000210041000DULL; | |
190 static const uint64_t bgr2UCoeff attribute_used __attribute__((aligned(8))) = 0x0000FFEEFFDC0038ULL; | |
191 static const uint64_t bgr2VCoeff attribute_used __attribute__((aligned(8))) = 0x00000038FFD2FFF8ULL; | |
192 #else | |
193 static const uint64_t bgr2YCoeff attribute_used __attribute__((aligned(8))) = 0x000020E540830C8BULL; | |
194 static const uint64_t bgr2UCoeff attribute_used __attribute__((aligned(8))) = 0x0000ED0FDAC23831ULL; | |
195 static const uint64_t bgr2VCoeff attribute_used __attribute__((aligned(8))) = 0x00003831D0E6F6EAULL; | |
19206 | 196 #endif /* FAST_BGR2YV12 */ |
18861 | 197 static const uint64_t bgr2YOffset attribute_used __attribute__((aligned(8))) = 0x1010101010101010ULL; |
198 static const uint64_t bgr2UVOffset attribute_used __attribute__((aligned(8)))= 0x8080808080808080ULL; | |
199 static const uint64_t w1111 attribute_used __attribute__((aligned(8))) = 0x0001000100010001ULL; | |
19206 | 200 #endif /* defined(ARCH_X86) || defined(ARCH_X86_64) */ |
18861 | 201 |
202 // clipping helper table for C implementations: | |
203 static unsigned char clip_table[768]; | |
204 | |
205 static SwsVector *sws_getConvVec(SwsVector *a, SwsVector *b); | |
206 | |
207 extern const uint8_t dither_2x2_4[2][8]; | |
208 extern const uint8_t dither_2x2_8[2][8]; | |
209 extern const uint8_t dither_8x8_32[8][8]; | |
210 extern const uint8_t dither_8x8_73[8][8]; | |
211 extern const uint8_t dither_8x8_220[8][8]; | |
212 | |
19270
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
213 /* Used for ffmpeg --> MPlayer format name conversion */ |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
214 static const int fmt_name[PIX_FMT_NB] = { |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
215 [PIX_FMT_YUV420P] = IMGFMT_I420, ///< Planar YUV 4:2:0 (1 Cr & Cb sample per 2x2 Y samples) |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
216 [PIX_FMT_YUV422] = IMGFMT_Y422, |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
217 [PIX_FMT_RGB24] = IMGFMT_RGB24, ///< Packed pixel, 3 bytes per pixel, RGBRGB... |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
218 [PIX_FMT_BGR24] = IMGFMT_BGR24, ///< Packed pixel, 3 bytes per pixel, BGRBGR... |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
219 [PIX_FMT_YUV422P] = IMGFMT_422P, ///< Planar YUV 4:2:2 (1 Cr & Cb sample per 2x1 Y samples) |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
220 [PIX_FMT_YUV444P] = IMGFMT_444P, ///< Planar YUV 4:4:4 (1 Cr & Cb sample per 1x1 Y samples) |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
221 [PIX_FMT_RGBA32] = IMGFMT_RGB32, ///< Packed pixel, 4 bytes per pixel, BGRABGRA..., stored in cpu endianness |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
222 [PIX_FMT_YUV410P] = IMGFMT_YVU9, ///< Planar YUV 4:1:0 (1 Cr & Cb sample per 4x4 Y samples) |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
223 [PIX_FMT_YUV411P] = IMGFMT_411P, ///< Planar YUV 4:1:1 (1 Cr & Cb sample per 4x1 Y samples) |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
224 [PIX_FMT_RGB565] = IMGFMT_RGB16, ///< always stored in cpu endianness |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
225 [PIX_FMT_RGB555] = IMGFMT_RGB15, ///< always stored in cpu endianness, most significant bit to 1 |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
226 [PIX_FMT_UYVY422] = IMGFMT_UYVY, ///< Packed pixel, Cb Y0 Cr Y1 |
19336 | 227 [PIX_FMT_GRAY8] = IMGFMT_Y800, ///< Gray jpeg |
19270
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
228 }; |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
229 |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
230 char *sws_format_name(int format) |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
231 { |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
232 static char fmt_name[64]; |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
233 char *res; |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
234 static int buffer; |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
235 |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
236 res = fmt_name + buffer * 32; |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
237 buffer = 1 - buffer; |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
238 snprintf(res, 32, "0x%x (%c%c%c%c)", format, |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
239 format >> 24, (format >> 16) & 0xFF, |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
240 (format >> 8) & 0xFF, |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
241 format & 0xFF); |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
242 |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
243 return res; |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
244 } |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
245 |
18861 | 246 #if defined(ARCH_X86) || defined(ARCH_X86_64) |
247 void in_asm_used_var_warning_killer() | |
248 { | |
249 volatile int i= bF8+bFC+w10+ | |
250 bm00001111+bm00000111+bm11111000+b16Mask+g16Mask+r16Mask+b15Mask+g15Mask+r15Mask+ | |
251 M24A+M24B+M24C+w02 + b5Dither+g5Dither+r5Dither+g6Dither+dither4[0]+dither8[0]+bm01010101; | |
252 if(i) i=0; | |
253 } | |
254 #endif | |
255 | |
256 static inline void yuv2yuvXinC(int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize, | |
257 int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize, | |
258 uint8_t *dest, uint8_t *uDest, uint8_t *vDest, int dstW, int chrDstW) | |
259 { | |
260 //FIXME Optimize (just quickly writen not opti..) | |
261 int i; | |
262 for(i=0; i<dstW; i++) | |
263 { | |
264 int val=1<<18; | |
265 int j; | |
266 for(j=0; j<lumFilterSize; j++) | |
267 val += lumSrc[j][i] * lumFilter[j]; | |
268 | |
19181 | 269 dest[i]= FFMIN(FFMAX(val>>19, 0), 255); |
18861 | 270 } |
271 | |
272 if(uDest != NULL) | |
273 for(i=0; i<chrDstW; i++) | |
274 { | |
275 int u=1<<18; | |
276 int v=1<<18; | |
277 int j; | |
278 for(j=0; j<chrFilterSize; j++) | |
279 { | |
280 u += chrSrc[j][i] * chrFilter[j]; | |
281 v += chrSrc[j][i + 2048] * chrFilter[j]; | |
282 } | |
283 | |
19181 | 284 uDest[i]= FFMIN(FFMAX(u>>19, 0), 255); |
285 vDest[i]= FFMIN(FFMAX(v>>19, 0), 255); | |
18861 | 286 } |
287 } | |
288 | |
289 static inline void yuv2nv12XinC(int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize, | |
290 int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize, | |
291 uint8_t *dest, uint8_t *uDest, int dstW, int chrDstW, int dstFormat) | |
292 { | |
293 //FIXME Optimize (just quickly writen not opti..) | |
294 int i; | |
295 for(i=0; i<dstW; i++) | |
296 { | |
297 int val=1<<18; | |
298 int j; | |
299 for(j=0; j<lumFilterSize; j++) | |
300 val += lumSrc[j][i] * lumFilter[j]; | |
301 | |
19181 | 302 dest[i]= FFMIN(FFMAX(val>>19, 0), 255); |
18861 | 303 } |
304 | |
305 if(uDest == NULL) | |
306 return; | |
307 | |
308 if(dstFormat == IMGFMT_NV12) | |
309 for(i=0; i<chrDstW; i++) | |
310 { | |
311 int u=1<<18; | |
312 int v=1<<18; | |
313 int j; | |
314 for(j=0; j<chrFilterSize; j++) | |
315 { | |
316 u += chrSrc[j][i] * chrFilter[j]; | |
317 v += chrSrc[j][i + 2048] * chrFilter[j]; | |
318 } | |
319 | |
19181 | 320 uDest[2*i]= FFMIN(FFMAX(u>>19, 0), 255); |
321 uDest[2*i+1]= FFMIN(FFMAX(v>>19, 0), 255); | |
18861 | 322 } |
323 else | |
324 for(i=0; i<chrDstW; i++) | |
325 { | |
326 int u=1<<18; | |
327 int v=1<<18; | |
328 int j; | |
329 for(j=0; j<chrFilterSize; j++) | |
330 { | |
331 u += chrSrc[j][i] * chrFilter[j]; | |
332 v += chrSrc[j][i + 2048] * chrFilter[j]; | |
333 } | |
334 | |
19181 | 335 uDest[2*i]= FFMIN(FFMAX(v>>19, 0), 255); |
336 uDest[2*i+1]= FFMIN(FFMAX(u>>19, 0), 255); | |
18861 | 337 } |
338 } | |
339 | |
340 #define YSCALE_YUV_2_PACKEDX_C(type) \ | |
341 for(i=0; i<(dstW>>1); i++){\ | |
342 int j;\ | |
343 int Y1=1<<18;\ | |
344 int Y2=1<<18;\ | |
345 int U=1<<18;\ | |
346 int V=1<<18;\ | |
347 type *r, *b, *g;\ | |
348 const int i2= 2*i;\ | |
349 \ | |
350 for(j=0; j<lumFilterSize; j++)\ | |
351 {\ | |
352 Y1 += lumSrc[j][i2] * lumFilter[j];\ | |
353 Y2 += lumSrc[j][i2+1] * lumFilter[j];\ | |
354 }\ | |
355 for(j=0; j<chrFilterSize; j++)\ | |
356 {\ | |
357 U += chrSrc[j][i] * chrFilter[j];\ | |
358 V += chrSrc[j][i+2048] * chrFilter[j];\ | |
359 }\ | |
360 Y1>>=19;\ | |
361 Y2>>=19;\ | |
362 U >>=19;\ | |
363 V >>=19;\ | |
364 if((Y1|Y2|U|V)&256)\ | |
365 {\ | |
366 if(Y1>255) Y1=255;\ | |
367 else if(Y1<0)Y1=0;\ | |
368 if(Y2>255) Y2=255;\ | |
369 else if(Y2<0)Y2=0;\ | |
370 if(U>255) U=255;\ | |
371 else if(U<0) U=0;\ | |
372 if(V>255) V=255;\ | |
373 else if(V<0) V=0;\ | |
374 } | |
375 | |
376 #define YSCALE_YUV_2_RGBX_C(type) \ | |
377 YSCALE_YUV_2_PACKEDX_C(type)\ | |
378 r = c->table_rV[V];\ | |
379 g = c->table_gU[U] + c->table_gV[V];\ | |
380 b = c->table_bU[U];\ | |
381 | |
382 #define YSCALE_YUV_2_PACKED2_C \ | |
383 for(i=0; i<(dstW>>1); i++){\ | |
384 const int i2= 2*i;\ | |
385 int Y1= (buf0[i2 ]*yalpha1+buf1[i2 ]*yalpha)>>19;\ | |
386 int Y2= (buf0[i2+1]*yalpha1+buf1[i2+1]*yalpha)>>19;\ | |
387 int U= (uvbuf0[i ]*uvalpha1+uvbuf1[i ]*uvalpha)>>19;\ | |
388 int V= (uvbuf0[i+2048]*uvalpha1+uvbuf1[i+2048]*uvalpha)>>19;\ | |
389 | |
390 #define YSCALE_YUV_2_RGB2_C(type) \ | |
391 YSCALE_YUV_2_PACKED2_C\ | |
392 type *r, *b, *g;\ | |
393 r = c->table_rV[V];\ | |
394 g = c->table_gU[U] + c->table_gV[V];\ | |
395 b = c->table_bU[U];\ | |
396 | |
397 #define YSCALE_YUV_2_PACKED1_C \ | |
398 for(i=0; i<(dstW>>1); i++){\ | |
399 const int i2= 2*i;\ | |
400 int Y1= buf0[i2 ]>>7;\ | |
401 int Y2= buf0[i2+1]>>7;\ | |
402 int U= (uvbuf1[i ])>>7;\ | |
403 int V= (uvbuf1[i+2048])>>7;\ | |
404 | |
405 #define YSCALE_YUV_2_RGB1_C(type) \ | |
406 YSCALE_YUV_2_PACKED1_C\ | |
407 type *r, *b, *g;\ | |
408 r = c->table_rV[V];\ | |
409 g = c->table_gU[U] + c->table_gV[V];\ | |
410 b = c->table_bU[U];\ | |
411 | |
412 #define YSCALE_YUV_2_PACKED1B_C \ | |
413 for(i=0; i<(dstW>>1); i++){\ | |
414 const int i2= 2*i;\ | |
415 int Y1= buf0[i2 ]>>7;\ | |
416 int Y2= buf0[i2+1]>>7;\ | |
417 int U= (uvbuf0[i ] + uvbuf1[i ])>>8;\ | |
418 int V= (uvbuf0[i+2048] + uvbuf1[i+2048])>>8;\ | |
419 | |
420 #define YSCALE_YUV_2_RGB1B_C(type) \ | |
421 YSCALE_YUV_2_PACKED1B_C\ | |
422 type *r, *b, *g;\ | |
423 r = c->table_rV[V];\ | |
424 g = c->table_gU[U] + c->table_gV[V];\ | |
425 b = c->table_bU[U];\ | |
426 | |
427 #define YSCALE_YUV_2_ANYRGB_C(func, func2)\ | |
428 switch(c->dstFormat)\ | |
429 {\ | |
430 case IMGFMT_BGR32:\ | |
431 case IMGFMT_RGB32:\ | |
432 func(uint32_t)\ | |
433 ((uint32_t*)dest)[i2+0]= r[Y1] + g[Y1] + b[Y1];\ | |
434 ((uint32_t*)dest)[i2+1]= r[Y2] + g[Y2] + b[Y2];\ | |
435 } \ | |
436 break;\ | |
437 case IMGFMT_RGB24:\ | |
438 func(uint8_t)\ | |
439 ((uint8_t*)dest)[0]= r[Y1];\ | |
440 ((uint8_t*)dest)[1]= g[Y1];\ | |
441 ((uint8_t*)dest)[2]= b[Y1];\ | |
442 ((uint8_t*)dest)[3]= r[Y2];\ | |
443 ((uint8_t*)dest)[4]= g[Y2];\ | |
444 ((uint8_t*)dest)[5]= b[Y2];\ | |
445 dest+=6;\ | |
446 }\ | |
447 break;\ | |
448 case IMGFMT_BGR24:\ | |
449 func(uint8_t)\ | |
450 ((uint8_t*)dest)[0]= b[Y1];\ | |
451 ((uint8_t*)dest)[1]= g[Y1];\ | |
452 ((uint8_t*)dest)[2]= r[Y1];\ | |
453 ((uint8_t*)dest)[3]= b[Y2];\ | |
454 ((uint8_t*)dest)[4]= g[Y2];\ | |
455 ((uint8_t*)dest)[5]= r[Y2];\ | |
456 dest+=6;\ | |
457 }\ | |
458 break;\ | |
459 case IMGFMT_RGB16:\ | |
460 case IMGFMT_BGR16:\ | |
461 {\ | |
462 const int dr1= dither_2x2_8[y&1 ][0];\ | |
463 const int dg1= dither_2x2_4[y&1 ][0];\ | |
464 const int db1= dither_2x2_8[(y&1)^1][0];\ | |
465 const int dr2= dither_2x2_8[y&1 ][1];\ | |
466 const int dg2= dither_2x2_4[y&1 ][1];\ | |
467 const int db2= dither_2x2_8[(y&1)^1][1];\ | |
468 func(uint16_t)\ | |
469 ((uint16_t*)dest)[i2+0]= r[Y1+dr1] + g[Y1+dg1] + b[Y1+db1];\ | |
470 ((uint16_t*)dest)[i2+1]= r[Y2+dr2] + g[Y2+dg2] + b[Y2+db2];\ | |
471 }\ | |
472 }\ | |
473 break;\ | |
474 case IMGFMT_RGB15:\ | |
475 case IMGFMT_BGR15:\ | |
476 {\ | |
477 const int dr1= dither_2x2_8[y&1 ][0];\ | |
478 const int dg1= dither_2x2_8[y&1 ][1];\ | |
479 const int db1= dither_2x2_8[(y&1)^1][0];\ | |
480 const int dr2= dither_2x2_8[y&1 ][1];\ | |
481 const int dg2= dither_2x2_8[y&1 ][0];\ | |
482 const int db2= dither_2x2_8[(y&1)^1][1];\ | |
483 func(uint16_t)\ | |
484 ((uint16_t*)dest)[i2+0]= r[Y1+dr1] + g[Y1+dg1] + b[Y1+db1];\ | |
485 ((uint16_t*)dest)[i2+1]= r[Y2+dr2] + g[Y2+dg2] + b[Y2+db2];\ | |
486 }\ | |
487 }\ | |
488 break;\ | |
489 case IMGFMT_RGB8:\ | |
490 case IMGFMT_BGR8:\ | |
491 {\ | |
492 const uint8_t * const d64= dither_8x8_73[y&7];\ | |
493 const uint8_t * const d32= dither_8x8_32[y&7];\ | |
494 func(uint8_t)\ | |
495 ((uint8_t*)dest)[i2+0]= r[Y1+d32[(i2+0)&7]] + g[Y1+d32[(i2+0)&7]] + b[Y1+d64[(i2+0)&7]];\ | |
496 ((uint8_t*)dest)[i2+1]= r[Y2+d32[(i2+1)&7]] + g[Y2+d32[(i2+1)&7]] + b[Y2+d64[(i2+1)&7]];\ | |
497 }\ | |
498 }\ | |
499 break;\ | |
500 case IMGFMT_RGB4:\ | |
501 case IMGFMT_BGR4:\ | |
502 {\ | |
503 const uint8_t * const d64= dither_8x8_73 [y&7];\ | |
504 const uint8_t * const d128=dither_8x8_220[y&7];\ | |
505 func(uint8_t)\ | |
506 ((uint8_t*)dest)[i]= r[Y1+d128[(i2+0)&7]] + g[Y1+d64[(i2+0)&7]] + b[Y1+d128[(i2+0)&7]]\ | |
507 + ((r[Y2+d128[(i2+1)&7]] + g[Y2+d64[(i2+1)&7]] + b[Y2+d128[(i2+1)&7]])<<4);\ | |
508 }\ | |
509 }\ | |
510 break;\ | |
511 case IMGFMT_RG4B:\ | |
512 case IMGFMT_BG4B:\ | |
513 {\ | |
514 const uint8_t * const d64= dither_8x8_73 [y&7];\ | |
515 const uint8_t * const d128=dither_8x8_220[y&7];\ | |
516 func(uint8_t)\ | |
517 ((uint8_t*)dest)[i2+0]= r[Y1+d128[(i2+0)&7]] + g[Y1+d64[(i2+0)&7]] + b[Y1+d128[(i2+0)&7]];\ | |
518 ((uint8_t*)dest)[i2+1]= r[Y2+d128[(i2+1)&7]] + g[Y2+d64[(i2+1)&7]] + b[Y2+d128[(i2+1)&7]];\ | |
519 }\ | |
520 }\ | |
521 break;\ | |
522 case IMGFMT_RGB1:\ | |
523 case IMGFMT_BGR1:\ | |
524 {\ | |
525 const uint8_t * const d128=dither_8x8_220[y&7];\ | |
526 uint8_t *g= c->table_gU[128] + c->table_gV[128];\ | |
527 for(i=0; i<dstW-7; i+=8){\ | |
528 int acc;\ | |
529 acc = g[((buf0[i ]*yalpha1+buf1[i ]*yalpha)>>19) + d128[0]];\ | |
530 acc+= acc + g[((buf0[i+1]*yalpha1+buf1[i+1]*yalpha)>>19) + d128[1]];\ | |
531 acc+= acc + g[((buf0[i+2]*yalpha1+buf1[i+2]*yalpha)>>19) + d128[2]];\ | |
532 acc+= acc + g[((buf0[i+3]*yalpha1+buf1[i+3]*yalpha)>>19) + d128[3]];\ | |
533 acc+= acc + g[((buf0[i+4]*yalpha1+buf1[i+4]*yalpha)>>19) + d128[4]];\ | |
534 acc+= acc + g[((buf0[i+5]*yalpha1+buf1[i+5]*yalpha)>>19) + d128[5]];\ | |
535 acc+= acc + g[((buf0[i+6]*yalpha1+buf1[i+6]*yalpha)>>19) + d128[6]];\ | |
536 acc+= acc + g[((buf0[i+7]*yalpha1+buf1[i+7]*yalpha)>>19) + d128[7]];\ | |
537 ((uint8_t*)dest)[0]= acc;\ | |
538 dest++;\ | |
539 }\ | |
540 \ | |
541 /*\ | |
542 ((uint8_t*)dest)-= dstW>>4;\ | |
543 {\ | |
544 int acc=0;\ | |
545 int left=0;\ | |
546 static int top[1024];\ | |
547 static int last_new[1024][1024];\ | |
548 static int last_in3[1024][1024];\ | |
549 static int drift[1024][1024];\ | |
550 int topLeft=0;\ | |
551 int shift=0;\ | |
552 int count=0;\ | |
553 const uint8_t * const d128=dither_8x8_220[y&7];\ | |
554 int error_new=0;\ | |
555 int error_in3=0;\ | |
556 int f=0;\ | |
557 \ | |
558 for(i=dstW>>1; i<dstW; i++){\ | |
559 int in= ((buf0[i ]*yalpha1+buf1[i ]*yalpha)>>19);\ | |
560 int in2 = (76309 * (in - 16) + 32768) >> 16;\ | |
561 int in3 = (in2 < 0) ? 0 : ((in2 > 255) ? 255 : in2);\ | |
562 int old= (left*7 + topLeft + top[i]*5 + top[i+1]*3)/20 + in3\ | |
563 + (last_new[y][i] - in3)*f/256;\ | |
564 int new= old> 128 ? 255 : 0;\ | |
565 \ | |
566 error_new+= ABS(last_new[y][i] - new);\ | |
567 error_in3+= ABS(last_in3[y][i] - in3);\ | |
568 f= error_new - error_in3*4;\ | |
569 if(f<0) f=0;\ | |
570 if(f>256) f=256;\ | |
571 \ | |
572 topLeft= top[i];\ | |
573 left= top[i]= old - new;\ | |
574 last_new[y][i]= new;\ | |
575 last_in3[y][i]= in3;\ | |
576 \ | |
577 acc+= acc + (new&1);\ | |
578 if((i&7)==6){\ | |
579 ((uint8_t*)dest)[0]= acc;\ | |
580 ((uint8_t*)dest)++;\ | |
581 }\ | |
582 }\ | |
583 }\ | |
584 */\ | |
585 }\ | |
586 break;\ | |
587 case IMGFMT_YUY2:\ | |
588 func2\ | |
589 ((uint8_t*)dest)[2*i2+0]= Y1;\ | |
590 ((uint8_t*)dest)[2*i2+1]= U;\ | |
591 ((uint8_t*)dest)[2*i2+2]= Y2;\ | |
592 ((uint8_t*)dest)[2*i2+3]= V;\ | |
593 } \ | |
594 break;\ | |
595 case IMGFMT_UYVY:\ | |
596 func2\ | |
597 ((uint8_t*)dest)[2*i2+0]= U;\ | |
598 ((uint8_t*)dest)[2*i2+1]= Y1;\ | |
599 ((uint8_t*)dest)[2*i2+2]= V;\ | |
600 ((uint8_t*)dest)[2*i2+3]= Y2;\ | |
601 } \ | |
602 break;\ | |
603 }\ | |
604 | |
605 | |
606 static inline void yuv2packedXinC(SwsContext *c, int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize, | |
607 int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize, | |
608 uint8_t *dest, int dstW, int y) | |
609 { | |
610 int i; | |
611 switch(c->dstFormat) | |
612 { | |
613 case IMGFMT_RGB32: | |
614 case IMGFMT_BGR32: | |
615 YSCALE_YUV_2_RGBX_C(uint32_t) | |
616 ((uint32_t*)dest)[i2+0]= r[Y1] + g[Y1] + b[Y1]; | |
617 ((uint32_t*)dest)[i2+1]= r[Y2] + g[Y2] + b[Y2]; | |
618 } | |
619 break; | |
620 case IMGFMT_RGB24: | |
621 YSCALE_YUV_2_RGBX_C(uint8_t) | |
622 ((uint8_t*)dest)[0]= r[Y1]; | |
623 ((uint8_t*)dest)[1]= g[Y1]; | |
624 ((uint8_t*)dest)[2]= b[Y1]; | |
625 ((uint8_t*)dest)[3]= r[Y2]; | |
626 ((uint8_t*)dest)[4]= g[Y2]; | |
627 ((uint8_t*)dest)[5]= b[Y2]; | |
628 dest+=6; | |
629 } | |
630 break; | |
631 case IMGFMT_BGR24: | |
632 YSCALE_YUV_2_RGBX_C(uint8_t) | |
633 ((uint8_t*)dest)[0]= b[Y1]; | |
634 ((uint8_t*)dest)[1]= g[Y1]; | |
635 ((uint8_t*)dest)[2]= r[Y1]; | |
636 ((uint8_t*)dest)[3]= b[Y2]; | |
637 ((uint8_t*)dest)[4]= g[Y2]; | |
638 ((uint8_t*)dest)[5]= r[Y2]; | |
639 dest+=6; | |
640 } | |
641 break; | |
642 case IMGFMT_RGB16: | |
643 case IMGFMT_BGR16: | |
644 { | |
645 const int dr1= dither_2x2_8[y&1 ][0]; | |
646 const int dg1= dither_2x2_4[y&1 ][0]; | |
647 const int db1= dither_2x2_8[(y&1)^1][0]; | |
648 const int dr2= dither_2x2_8[y&1 ][1]; | |
649 const int dg2= dither_2x2_4[y&1 ][1]; | |
650 const int db2= dither_2x2_8[(y&1)^1][1]; | |
651 YSCALE_YUV_2_RGBX_C(uint16_t) | |
652 ((uint16_t*)dest)[i2+0]= r[Y1+dr1] + g[Y1+dg1] + b[Y1+db1]; | |
653 ((uint16_t*)dest)[i2+1]= r[Y2+dr2] + g[Y2+dg2] + b[Y2+db2]; | |
654 } | |
655 } | |
656 break; | |
657 case IMGFMT_RGB15: | |
658 case IMGFMT_BGR15: | |
659 { | |
660 const int dr1= dither_2x2_8[y&1 ][0]; | |
661 const int dg1= dither_2x2_8[y&1 ][1]; | |
662 const int db1= dither_2x2_8[(y&1)^1][0]; | |
663 const int dr2= dither_2x2_8[y&1 ][1]; | |
664 const int dg2= dither_2x2_8[y&1 ][0]; | |
665 const int db2= dither_2x2_8[(y&1)^1][1]; | |
666 YSCALE_YUV_2_RGBX_C(uint16_t) | |
667 ((uint16_t*)dest)[i2+0]= r[Y1+dr1] + g[Y1+dg1] + b[Y1+db1]; | |
668 ((uint16_t*)dest)[i2+1]= r[Y2+dr2] + g[Y2+dg2] + b[Y2+db2]; | |
669 } | |
670 } | |
671 break; | |
672 case IMGFMT_RGB8: | |
673 case IMGFMT_BGR8: | |
674 { | |
675 const uint8_t * const d64= dither_8x8_73[y&7]; | |
676 const uint8_t * const d32= dither_8x8_32[y&7]; | |
677 YSCALE_YUV_2_RGBX_C(uint8_t) | |
678 ((uint8_t*)dest)[i2+0]= r[Y1+d32[(i2+0)&7]] + g[Y1+d32[(i2+0)&7]] + b[Y1+d64[(i2+0)&7]]; | |
679 ((uint8_t*)dest)[i2+1]= r[Y2+d32[(i2+1)&7]] + g[Y2+d32[(i2+1)&7]] + b[Y2+d64[(i2+1)&7]]; | |
680 } | |
681 } | |
682 break; | |
683 case IMGFMT_RGB4: | |
684 case IMGFMT_BGR4: | |
685 { | |
686 const uint8_t * const d64= dither_8x8_73 [y&7]; | |
687 const uint8_t * const d128=dither_8x8_220[y&7]; | |
688 YSCALE_YUV_2_RGBX_C(uint8_t) | |
689 ((uint8_t*)dest)[i]= r[Y1+d128[(i2+0)&7]] + g[Y1+d64[(i2+0)&7]] + b[Y1+d128[(i2+0)&7]] | |
690 +((r[Y2+d128[(i2+1)&7]] + g[Y2+d64[(i2+1)&7]] + b[Y2+d128[(i2+1)&7]])<<4); | |
691 } | |
692 } | |
693 break; | |
694 case IMGFMT_RG4B: | |
695 case IMGFMT_BG4B: | |
696 { | |
697 const uint8_t * const d64= dither_8x8_73 [y&7]; | |
698 const uint8_t * const d128=dither_8x8_220[y&7]; | |
699 YSCALE_YUV_2_RGBX_C(uint8_t) | |
700 ((uint8_t*)dest)[i2+0]= r[Y1+d128[(i2+0)&7]] + g[Y1+d64[(i2+0)&7]] + b[Y1+d128[(i2+0)&7]]; | |
701 ((uint8_t*)dest)[i2+1]= r[Y2+d128[(i2+1)&7]] + g[Y2+d64[(i2+1)&7]] + b[Y2+d128[(i2+1)&7]]; | |
702 } | |
703 } | |
704 break; | |
705 case IMGFMT_RGB1: | |
706 case IMGFMT_BGR1: | |
707 { | |
708 const uint8_t * const d128=dither_8x8_220[y&7]; | |
709 uint8_t *g= c->table_gU[128] + c->table_gV[128]; | |
710 int acc=0; | |
711 for(i=0; i<dstW-1; i+=2){ | |
712 int j; | |
713 int Y1=1<<18; | |
714 int Y2=1<<18; | |
715 | |
716 for(j=0; j<lumFilterSize; j++) | |
717 { | |
718 Y1 += lumSrc[j][i] * lumFilter[j]; | |
719 Y2 += lumSrc[j][i+1] * lumFilter[j]; | |
720 } | |
721 Y1>>=19; | |
722 Y2>>=19; | |
723 if((Y1|Y2)&256) | |
724 { | |
725 if(Y1>255) Y1=255; | |
726 else if(Y1<0)Y1=0; | |
727 if(Y2>255) Y2=255; | |
728 else if(Y2<0)Y2=0; | |
729 } | |
730 acc+= acc + g[Y1+d128[(i+0)&7]]; | |
731 acc+= acc + g[Y2+d128[(i+1)&7]]; | |
732 if((i&7)==6){ | |
733 ((uint8_t*)dest)[0]= acc; | |
734 dest++; | |
735 } | |
736 } | |
737 } | |
738 break; | |
739 case IMGFMT_YUY2: | |
740 YSCALE_YUV_2_PACKEDX_C(void) | |
741 ((uint8_t*)dest)[2*i2+0]= Y1; | |
742 ((uint8_t*)dest)[2*i2+1]= U; | |
743 ((uint8_t*)dest)[2*i2+2]= Y2; | |
744 ((uint8_t*)dest)[2*i2+3]= V; | |
745 } | |
746 break; | |
747 case IMGFMT_UYVY: | |
748 YSCALE_YUV_2_PACKEDX_C(void) | |
749 ((uint8_t*)dest)[2*i2+0]= U; | |
750 ((uint8_t*)dest)[2*i2+1]= Y1; | |
751 ((uint8_t*)dest)[2*i2+2]= V; | |
752 ((uint8_t*)dest)[2*i2+3]= Y2; | |
753 } | |
754 break; | |
755 } | |
756 } | |
757 | |
758 | |
759 //Note: we have C, X86, MMX, MMX2, 3DNOW version therse no 3DNOW+MMX2 one | |
760 //Plain C versions | |
761 #if !defined (HAVE_MMX) || defined (RUNTIME_CPUDETECT) | |
762 #define COMPILE_C | |
763 #endif | |
764 | |
765 #ifdef ARCH_POWERPC | |
766 #if defined (HAVE_ALTIVEC) || defined (RUNTIME_CPUDETECT) | |
767 #define COMPILE_ALTIVEC | |
768 #endif //HAVE_ALTIVEC | |
769 #endif //ARCH_POWERPC | |
770 | |
771 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
772 | |
773 #if (defined (HAVE_MMX) && !defined (HAVE_3DNOW) && !defined (HAVE_MMX2)) || defined (RUNTIME_CPUDETECT) | |
774 #define COMPILE_MMX | |
775 #endif | |
776 | |
777 #if defined (HAVE_MMX2) || defined (RUNTIME_CPUDETECT) | |
778 #define COMPILE_MMX2 | |
779 #endif | |
780 | |
781 #if (defined (HAVE_3DNOW) && !defined (HAVE_MMX2)) || defined (RUNTIME_CPUDETECT) | |
782 #define COMPILE_3DNOW | |
783 #endif | |
784 #endif //ARCH_X86 || ARCH_X86_64 | |
785 | |
786 #undef HAVE_MMX | |
787 #undef HAVE_MMX2 | |
788 #undef HAVE_3DNOW | |
789 | |
790 #ifdef COMPILE_C | |
791 #undef HAVE_MMX | |
792 #undef HAVE_MMX2 | |
793 #undef HAVE_3DNOW | |
794 #undef HAVE_ALTIVEC | |
795 #define RENAME(a) a ## _C | |
796 #include "swscale_template.c" | |
797 #endif | |
798 | |
799 #ifdef ARCH_POWERPC | |
800 #ifdef COMPILE_ALTIVEC | |
801 #undef RENAME | |
802 #define HAVE_ALTIVEC | |
803 #define RENAME(a) a ## _altivec | |
804 #include "swscale_template.c" | |
805 #endif | |
806 #endif //ARCH_POWERPC | |
807 | |
808 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
809 | |
810 //X86 versions | |
811 /* | |
812 #undef RENAME | |
813 #undef HAVE_MMX | |
814 #undef HAVE_MMX2 | |
815 #undef HAVE_3DNOW | |
816 #define ARCH_X86 | |
817 #define RENAME(a) a ## _X86 | |
818 #include "swscale_template.c" | |
819 */ | |
820 //MMX versions | |
821 #ifdef COMPILE_MMX | |
822 #undef RENAME | |
823 #define HAVE_MMX | |
824 #undef HAVE_MMX2 | |
825 #undef HAVE_3DNOW | |
826 #define RENAME(a) a ## _MMX | |
827 #include "swscale_template.c" | |
828 #endif | |
829 | |
830 //MMX2 versions | |
831 #ifdef COMPILE_MMX2 | |
832 #undef RENAME | |
833 #define HAVE_MMX | |
834 #define HAVE_MMX2 | |
835 #undef HAVE_3DNOW | |
836 #define RENAME(a) a ## _MMX2 | |
837 #include "swscale_template.c" | |
838 #endif | |
839 | |
840 //3DNOW versions | |
841 #ifdef COMPILE_3DNOW | |
842 #undef RENAME | |
843 #define HAVE_MMX | |
844 #undef HAVE_MMX2 | |
845 #define HAVE_3DNOW | |
846 #define RENAME(a) a ## _3DNow | |
847 #include "swscale_template.c" | |
848 #endif | |
849 | |
850 #endif //ARCH_X86 || ARCH_X86_64 | |
851 | |
852 // minor note: the HAVE_xyz is messed up after that line so don't use it | |
853 | |
854 static double getSplineCoeff(double a, double b, double c, double d, double dist) | |
855 { | |
856 // printf("%f %f %f %f %f\n", a,b,c,d,dist); | |
857 if(dist<=1.0) return ((d*dist + c)*dist + b)*dist +a; | |
858 else return getSplineCoeff( 0.0, | |
859 b+ 2.0*c + 3.0*d, | |
860 c + 3.0*d, | |
861 -b- 3.0*c - 6.0*d, | |
862 dist-1.0); | |
863 } | |
864 | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
865 static inline int initFilter(int16_t **outFilter, int16_t **filterPos, int *outFilterSize, int xInc, |
18861 | 866 int srcW, int dstW, int filterAlign, int one, int flags, |
867 SwsVector *srcFilter, SwsVector *dstFilter, double param[2]) | |
868 { | |
869 int i; | |
870 int filterSize; | |
871 int filter2Size; | |
872 int minFilterSize; | |
873 double *filter=NULL; | |
874 double *filter2=NULL; | |
875 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
876 if(flags & SWS_CPU_CAPS_MMX) | |
877 asm volatile("emms\n\t"::: "memory"); //FIXME this shouldnt be required but it IS (even for non mmx versions) | |
878 #endif | |
879 | |
880 // Note the +1 is for the MMXscaler which reads over the end | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
881 *filterPos = av_malloc((dstW+1)*sizeof(int16_t)); |
18861 | 882 |
883 if(ABS(xInc - 0x10000) <10) // unscaled | |
884 { | |
885 int i; | |
886 filterSize= 1; | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
887 filter= av_malloc(dstW*sizeof(double)*filterSize); |
18861 | 888 for(i=0; i<dstW*filterSize; i++) filter[i]=0; |
889 | |
890 for(i=0; i<dstW; i++) | |
891 { | |
892 filter[i*filterSize]=1; | |
893 (*filterPos)[i]=i; | |
894 } | |
895 | |
896 } | |
897 else if(flags&SWS_POINT) // lame looking point sampling mode | |
898 { | |
899 int i; | |
900 int xDstInSrc; | |
901 filterSize= 1; | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
902 filter= av_malloc(dstW*sizeof(double)*filterSize); |
18861 | 903 |
904 xDstInSrc= xInc/2 - 0x8000; | |
905 for(i=0; i<dstW; i++) | |
906 { | |
907 int xx= (xDstInSrc - ((filterSize-1)<<15) + (1<<15))>>16; | |
908 | |
909 (*filterPos)[i]= xx; | |
910 filter[i]= 1.0; | |
911 xDstInSrc+= xInc; | |
912 } | |
913 } | |
914 else if((xInc <= (1<<16) && (flags&SWS_AREA)) || (flags&SWS_FAST_BILINEAR)) // bilinear upscale | |
915 { | |
916 int i; | |
917 int xDstInSrc; | |
918 if (flags&SWS_BICUBIC) filterSize= 4; | |
919 else if(flags&SWS_X ) filterSize= 4; | |
920 else filterSize= 2; // SWS_BILINEAR / SWS_AREA | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
921 filter= av_malloc(dstW*sizeof(double)*filterSize); |
18861 | 922 |
923 xDstInSrc= xInc/2 - 0x8000; | |
924 for(i=0; i<dstW; i++) | |
925 { | |
926 int xx= (xDstInSrc - ((filterSize-1)<<15) + (1<<15))>>16; | |
927 int j; | |
928 | |
929 (*filterPos)[i]= xx; | |
930 //Bilinear upscale / linear interpolate / Area averaging | |
931 for(j=0; j<filterSize; j++) | |
932 { | |
933 double d= ABS((xx<<16) - xDstInSrc)/(double)(1<<16); | |
934 double coeff= 1.0 - d; | |
935 if(coeff<0) coeff=0; | |
936 filter[i*filterSize + j]= coeff; | |
937 xx++; | |
938 } | |
939 xDstInSrc+= xInc; | |
940 } | |
941 } | |
942 else | |
943 { | |
944 double xDstInSrc; | |
945 double sizeFactor, filterSizeInSrc; | |
946 const double xInc1= (double)xInc / (double)(1<<16); | |
947 | |
948 if (flags&SWS_BICUBIC) sizeFactor= 4.0; | |
949 else if(flags&SWS_X) sizeFactor= 8.0; | |
950 else if(flags&SWS_AREA) sizeFactor= 1.0; //downscale only, for upscale it is bilinear | |
951 else if(flags&SWS_GAUSS) sizeFactor= 8.0; // infinite ;) | |
952 else if(flags&SWS_LANCZOS) sizeFactor= param[0] != SWS_PARAM_DEFAULT ? 2.0*param[0] : 6.0; | |
953 else if(flags&SWS_SINC) sizeFactor= 20.0; // infinite ;) | |
954 else if(flags&SWS_SPLINE) sizeFactor= 20.0; // infinite ;) | |
955 else if(flags&SWS_BILINEAR) sizeFactor= 2.0; | |
956 else { | |
957 sizeFactor= 0.0; //GCC warning killer | |
958 ASSERT(0) | |
959 } | |
960 | |
961 if(xInc1 <= 1.0) filterSizeInSrc= sizeFactor; // upscale | |
962 else filterSizeInSrc= sizeFactor*srcW / (double)dstW; | |
963 | |
964 filterSize= (int)ceil(1 + filterSizeInSrc); // will be reduced later if possible | |
965 if(filterSize > srcW-2) filterSize=srcW-2; | |
966 | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
967 filter= av_malloc(dstW*sizeof(double)*filterSize); |
18861 | 968 |
969 xDstInSrc= xInc1 / 2.0 - 0.5; | |
970 for(i=0; i<dstW; i++) | |
971 { | |
972 int xx= (int)(xDstInSrc - (filterSize-1)*0.5 + 0.5); | |
973 int j; | |
974 (*filterPos)[i]= xx; | |
975 for(j=0; j<filterSize; j++) | |
976 { | |
977 double d= ABS(xx - xDstInSrc)/filterSizeInSrc*sizeFactor; | |
978 double coeff; | |
979 if(flags & SWS_BICUBIC) | |
980 { | |
981 double B= param[0] != SWS_PARAM_DEFAULT ? param[0] : 0.0; | |
982 double C= param[1] != SWS_PARAM_DEFAULT ? param[1] : 0.6; | |
983 | |
984 if(d<1.0) | |
985 coeff = (12-9*B-6*C)*d*d*d + (-18+12*B+6*C)*d*d + 6-2*B; | |
986 else if(d<2.0) | |
987 coeff = (-B-6*C)*d*d*d + (6*B+30*C)*d*d + (-12*B-48*C)*d +8*B+24*C; | |
988 else | |
989 coeff=0.0; | |
990 } | |
991 /* else if(flags & SWS_X) | |
992 { | |
993 double p= param ? param*0.01 : 0.3; | |
994 coeff = d ? sin(d*PI)/(d*PI) : 1.0; | |
995 coeff*= pow(2.0, - p*d*d); | |
996 }*/ | |
997 else if(flags & SWS_X) | |
998 { | |
999 double A= param[0] != SWS_PARAM_DEFAULT ? param[0] : 1.0; | |
1000 | |
1001 if(d<1.0) | |
1002 coeff = cos(d*PI); | |
1003 else | |
1004 coeff=-1.0; | |
1005 if(coeff<0.0) coeff= -pow(-coeff, A); | |
1006 else coeff= pow( coeff, A); | |
1007 coeff= coeff*0.5 + 0.5; | |
1008 } | |
1009 else if(flags & SWS_AREA) | |
1010 { | |
1011 double srcPixelSize= 1.0/xInc1; | |
1012 if(d + srcPixelSize/2 < 0.5) coeff= 1.0; | |
1013 else if(d - srcPixelSize/2 < 0.5) coeff= (0.5-d)/srcPixelSize + 0.5; | |
1014 else coeff=0.0; | |
1015 } | |
1016 else if(flags & SWS_GAUSS) | |
1017 { | |
1018 double p= param[0] != SWS_PARAM_DEFAULT ? param[0] : 3.0; | |
1019 coeff = pow(2.0, - p*d*d); | |
1020 } | |
1021 else if(flags & SWS_SINC) | |
1022 { | |
1023 coeff = d ? sin(d*PI)/(d*PI) : 1.0; | |
1024 } | |
1025 else if(flags & SWS_LANCZOS) | |
1026 { | |
1027 double p= param[0] != SWS_PARAM_DEFAULT ? param[0] : 3.0; | |
1028 coeff = d ? sin(d*PI)*sin(d*PI/p)/(d*d*PI*PI/p) : 1.0; | |
1029 if(d>p) coeff=0; | |
1030 } | |
1031 else if(flags & SWS_BILINEAR) | |
1032 { | |
1033 coeff= 1.0 - d; | |
1034 if(coeff<0) coeff=0; | |
1035 } | |
1036 else if(flags & SWS_SPLINE) | |
1037 { | |
1038 double p=-2.196152422706632; | |
1039 coeff = getSplineCoeff(1.0, 0.0, p, -p-1.0, d); | |
1040 } | |
1041 else { | |
1042 coeff= 0.0; //GCC warning killer | |
1043 ASSERT(0) | |
1044 } | |
1045 | |
1046 filter[i*filterSize + j]= coeff; | |
1047 xx++; | |
1048 } | |
1049 xDstInSrc+= xInc1; | |
1050 } | |
1051 } | |
1052 | |
1053 /* apply src & dst Filter to filter -> filter2 | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
1054 av_free(filter); |
18861 | 1055 */ |
1056 ASSERT(filterSize>0) | |
1057 filter2Size= filterSize; | |
1058 if(srcFilter) filter2Size+= srcFilter->length - 1; | |
1059 if(dstFilter) filter2Size+= dstFilter->length - 1; | |
1060 ASSERT(filter2Size>0) | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
1061 filter2= av_malloc(filter2Size*dstW*sizeof(double)); |
18861 | 1062 |
1063 for(i=0; i<dstW; i++) | |
1064 { | |
1065 int j; | |
1066 SwsVector scaleFilter; | |
1067 SwsVector *outVec; | |
1068 | |
1069 scaleFilter.coeff= filter + i*filterSize; | |
1070 scaleFilter.length= filterSize; | |
1071 | |
1072 if(srcFilter) outVec= sws_getConvVec(srcFilter, &scaleFilter); | |
1073 else outVec= &scaleFilter; | |
1074 | |
1075 ASSERT(outVec->length == filter2Size) | |
1076 //FIXME dstFilter | |
1077 | |
1078 for(j=0; j<outVec->length; j++) | |
1079 { | |
1080 filter2[i*filter2Size + j]= outVec->coeff[j]; | |
1081 } | |
1082 | |
1083 (*filterPos)[i]+= (filterSize-1)/2 - (filter2Size-1)/2; | |
1084 | |
1085 if(outVec != &scaleFilter) sws_freeVec(outVec); | |
1086 } | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
1087 av_free(filter); filter=NULL; |
18861 | 1088 |
1089 /* try to reduce the filter-size (step1 find size and shift left) */ | |
1090 // Assume its near normalized (*0.5 or *2.0 is ok but * 0.001 is not) | |
1091 minFilterSize= 0; | |
1092 for(i=dstW-1; i>=0; i--) | |
1093 { | |
1094 int min= filter2Size; | |
1095 int j; | |
1096 double cutOff=0.0; | |
1097 | |
1098 /* get rid off near zero elements on the left by shifting left */ | |
1099 for(j=0; j<filter2Size; j++) | |
1100 { | |
1101 int k; | |
1102 cutOff += ABS(filter2[i*filter2Size]); | |
1103 | |
1104 if(cutOff > SWS_MAX_REDUCE_CUTOFF) break; | |
1105 | |
1106 /* preserve Monotonicity because the core can't handle the filter otherwise */ | |
1107 if(i<dstW-1 && (*filterPos)[i] >= (*filterPos)[i+1]) break; | |
1108 | |
1109 // Move filter coeffs left | |
1110 for(k=1; k<filter2Size; k++) | |
1111 filter2[i*filter2Size + k - 1]= filter2[i*filter2Size + k]; | |
1112 filter2[i*filter2Size + k - 1]= 0.0; | |
1113 (*filterPos)[i]++; | |
1114 } | |
1115 | |
1116 cutOff=0.0; | |
1117 /* count near zeros on the right */ | |
1118 for(j=filter2Size-1; j>0; j--) | |
1119 { | |
1120 cutOff += ABS(filter2[i*filter2Size + j]); | |
1121 | |
1122 if(cutOff > SWS_MAX_REDUCE_CUTOFF) break; | |
1123 min--; | |
1124 } | |
1125 | |
1126 if(min>minFilterSize) minFilterSize= min; | |
1127 } | |
1128 | |
1129 if (flags & SWS_CPU_CAPS_ALTIVEC) { | |
1130 // we can handle the special case 4, | |
1131 // so we don't want to go to the full 8 | |
1132 if (minFilterSize < 5) | |
1133 filterAlign = 4; | |
1134 | |
1135 // we really don't want to waste our time | |
1136 // doing useless computation, so fall-back on | |
1137 // the scalar C code for very small filter. | |
1138 // vectorizing is worth it only if you have | |
1139 // decent-sized vector. | |
1140 if (minFilterSize < 3) | |
1141 filterAlign = 1; | |
1142 } | |
1143 | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
1144 if (flags & SWS_CPU_CAPS_MMX) { |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
1145 // special case for unscaled vertical filtering |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
1146 if(minFilterSize == 1 && filterAlign == 2) |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
1147 filterAlign= 1; |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
1148 } |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
1149 |
18861 | 1150 ASSERT(minFilterSize > 0) |
1151 filterSize= (minFilterSize +(filterAlign-1)) & (~(filterAlign-1)); | |
1152 ASSERT(filterSize > 0) | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
1153 filter= av_malloc(filterSize*dstW*sizeof(double)); |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
1154 if(filterSize >= MAX_FILTER_SIZE) |
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
1155 return -1; |
18861 | 1156 *outFilterSize= filterSize; |
1157 | |
1158 if(flags&SWS_PRINT_INFO) | |
1159 MSG_V("SwScaler: reducing / aligning filtersize %d -> %d\n", filter2Size, filterSize); | |
1160 /* try to reduce the filter-size (step2 reduce it) */ | |
1161 for(i=0; i<dstW; i++) | |
1162 { | |
1163 int j; | |
1164 | |
1165 for(j=0; j<filterSize; j++) | |
1166 { | |
1167 if(j>=filter2Size) filter[i*filterSize + j]= 0.0; | |
1168 else filter[i*filterSize + j]= filter2[i*filter2Size + j]; | |
1169 } | |
1170 } | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
1171 av_free(filter2); filter2=NULL; |
18861 | 1172 |
1173 | |
1174 //FIXME try to align filterpos if possible | |
1175 | |
1176 //fix borders | |
1177 for(i=0; i<dstW; i++) | |
1178 { | |
1179 int j; | |
1180 if((*filterPos)[i] < 0) | |
1181 { | |
1182 // Move filter coeffs left to compensate for filterPos | |
1183 for(j=1; j<filterSize; j++) | |
1184 { | |
19181 | 1185 int left= FFMAX(j + (*filterPos)[i], 0); |
18861 | 1186 filter[i*filterSize + left] += filter[i*filterSize + j]; |
1187 filter[i*filterSize + j]=0; | |
1188 } | |
1189 (*filterPos)[i]= 0; | |
1190 } | |
1191 | |
1192 if((*filterPos)[i] + filterSize > srcW) | |
1193 { | |
1194 int shift= (*filterPos)[i] + filterSize - srcW; | |
1195 // Move filter coeffs right to compensate for filterPos | |
1196 for(j=filterSize-2; j>=0; j--) | |
1197 { | |
19181 | 1198 int right= FFMIN(j + shift, filterSize-1); |
18861 | 1199 filter[i*filterSize +right] += filter[i*filterSize +j]; |
1200 filter[i*filterSize +j]=0; | |
1201 } | |
1202 (*filterPos)[i]= srcW - filterSize; | |
1203 } | |
1204 } | |
1205 | |
1206 // Note the +1 is for the MMXscaler which reads over the end | |
1207 /* align at 16 for AltiVec (needed by hScale_altivec_real) */ | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
1208 *outFilter= av_malloc(*outFilterSize*(dstW+1)*sizeof(int16_t)); |
18861 | 1209 memset(*outFilter, 0, *outFilterSize*(dstW+1)*sizeof(int16_t)); |
1210 | |
1211 /* Normalize & Store in outFilter */ | |
1212 for(i=0; i<dstW; i++) | |
1213 { | |
1214 int j; | |
1215 double error=0; | |
1216 double sum=0; | |
1217 double scale= one; | |
1218 | |
1219 for(j=0; j<filterSize; j++) | |
1220 { | |
1221 sum+= filter[i*filterSize + j]; | |
1222 } | |
1223 scale/= sum; | |
1224 for(j=0; j<*outFilterSize; j++) | |
1225 { | |
1226 double v= filter[i*filterSize + j]*scale + error; | |
1227 int intV= floor(v + 0.5); | |
1228 (*outFilter)[i*(*outFilterSize) + j]= intV; | |
1229 error = v - intV; | |
1230 } | |
1231 } | |
1232 | |
1233 (*filterPos)[dstW]= (*filterPos)[dstW-1]; // the MMX scaler will read over the end | |
1234 for(i=0; i<*outFilterSize; i++) | |
1235 { | |
1236 int j= dstW*(*outFilterSize); | |
1237 (*outFilter)[j + i]= (*outFilter)[j + i - (*outFilterSize)]; | |
1238 } | |
1239 | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
1240 av_free(filter); |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
1241 return 0; |
18861 | 1242 } |
1243 | |
19368
eb51949c73eb
Use COMPILE_MMX2 instead of HAVE_MMX2 to determine whether to compile
uau
parents:
19336
diff
changeset
|
1244 #ifdef COMPILE_MMX2 |
18861 | 1245 static void initMMX2HScaler(int dstW, int xInc, uint8_t *funnyCode, int16_t *filter, int32_t *filterPos, int numSplits) |
1246 { | |
1247 uint8_t *fragmentA; | |
1248 long imm8OfPShufW1A; | |
1249 long imm8OfPShufW2A; | |
1250 long fragmentLengthA; | |
1251 uint8_t *fragmentB; | |
1252 long imm8OfPShufW1B; | |
1253 long imm8OfPShufW2B; | |
1254 long fragmentLengthB; | |
1255 int fragmentPos; | |
1256 | |
1257 int xpos, i; | |
1258 | |
1259 // create an optimized horizontal scaling routine | |
1260 | |
1261 //code fragment | |
1262 | |
1263 asm volatile( | |
1264 "jmp 9f \n\t" | |
1265 // Begin | |
1266 "0: \n\t" | |
1267 "movq (%%"REG_d", %%"REG_a"), %%mm3\n\t" | |
1268 "movd (%%"REG_c", %%"REG_S"), %%mm0\n\t" | |
1269 "movd 1(%%"REG_c", %%"REG_S"), %%mm1\n\t" | |
1270 "punpcklbw %%mm7, %%mm1 \n\t" | |
1271 "punpcklbw %%mm7, %%mm0 \n\t" | |
1272 "pshufw $0xFF, %%mm1, %%mm1 \n\t" | |
1273 "1: \n\t" | |
1274 "pshufw $0xFF, %%mm0, %%mm0 \n\t" | |
1275 "2: \n\t" | |
1276 "psubw %%mm1, %%mm0 \n\t" | |
1277 "movl 8(%%"REG_b", %%"REG_a"), %%esi\n\t" | |
1278 "pmullw %%mm3, %%mm0 \n\t" | |
1279 "psllw $7, %%mm1 \n\t" | |
1280 "paddw %%mm1, %%mm0 \n\t" | |
1281 | |
1282 "movq %%mm0, (%%"REG_D", %%"REG_a")\n\t" | |
1283 | |
1284 "add $8, %%"REG_a" \n\t" | |
1285 // End | |
1286 "9: \n\t" | |
1287 // "int $3\n\t" | |
1288 "lea 0b, %0 \n\t" | |
1289 "lea 1b, %1 \n\t" | |
1290 "lea 2b, %2 \n\t" | |
1291 "dec %1 \n\t" | |
1292 "dec %2 \n\t" | |
1293 "sub %0, %1 \n\t" | |
1294 "sub %0, %2 \n\t" | |
1295 "lea 9b, %3 \n\t" | |
1296 "sub %0, %3 \n\t" | |
1297 | |
1298 | |
1299 :"=r" (fragmentA), "=r" (imm8OfPShufW1A), "=r" (imm8OfPShufW2A), | |
1300 "=r" (fragmentLengthA) | |
1301 ); | |
1302 | |
1303 asm volatile( | |
1304 "jmp 9f \n\t" | |
1305 // Begin | |
1306 "0: \n\t" | |
1307 "movq (%%"REG_d", %%"REG_a"), %%mm3\n\t" | |
1308 "movd (%%"REG_c", %%"REG_S"), %%mm0\n\t" | |
1309 "punpcklbw %%mm7, %%mm0 \n\t" | |
1310 "pshufw $0xFF, %%mm0, %%mm1 \n\t" | |
1311 "1: \n\t" | |
1312 "pshufw $0xFF, %%mm0, %%mm0 \n\t" | |
1313 "2: \n\t" | |
1314 "psubw %%mm1, %%mm0 \n\t" | |
1315 "movl 8(%%"REG_b", %%"REG_a"), %%esi\n\t" | |
1316 "pmullw %%mm3, %%mm0 \n\t" | |
1317 "psllw $7, %%mm1 \n\t" | |
1318 "paddw %%mm1, %%mm0 \n\t" | |
1319 | |
1320 "movq %%mm0, (%%"REG_D", %%"REG_a")\n\t" | |
1321 | |
1322 "add $8, %%"REG_a" \n\t" | |
1323 // End | |
1324 "9: \n\t" | |
1325 // "int $3\n\t" | |
1326 "lea 0b, %0 \n\t" | |
1327 "lea 1b, %1 \n\t" | |
1328 "lea 2b, %2 \n\t" | |
1329 "dec %1 \n\t" | |
1330 "dec %2 \n\t" | |
1331 "sub %0, %1 \n\t" | |
1332 "sub %0, %2 \n\t" | |
1333 "lea 9b, %3 \n\t" | |
1334 "sub %0, %3 \n\t" | |
1335 | |
1336 | |
1337 :"=r" (fragmentB), "=r" (imm8OfPShufW1B), "=r" (imm8OfPShufW2B), | |
1338 "=r" (fragmentLengthB) | |
1339 ); | |
1340 | |
1341 xpos= 0; //lumXInc/2 - 0x8000; // difference between pixel centers | |
1342 fragmentPos=0; | |
1343 | |
1344 for(i=0; i<dstW/numSplits; i++) | |
1345 { | |
1346 int xx=xpos>>16; | |
1347 | |
1348 if((i&3) == 0) | |
1349 { | |
1350 int a=0; | |
1351 int b=((xpos+xInc)>>16) - xx; | |
1352 int c=((xpos+xInc*2)>>16) - xx; | |
1353 int d=((xpos+xInc*3)>>16) - xx; | |
1354 | |
1355 filter[i ] = (( xpos & 0xFFFF) ^ 0xFFFF)>>9; | |
1356 filter[i+1] = (((xpos+xInc ) & 0xFFFF) ^ 0xFFFF)>>9; | |
1357 filter[i+2] = (((xpos+xInc*2) & 0xFFFF) ^ 0xFFFF)>>9; | |
1358 filter[i+3] = (((xpos+xInc*3) & 0xFFFF) ^ 0xFFFF)>>9; | |
1359 filterPos[i/2]= xx; | |
1360 | |
1361 if(d+1<4) | |
1362 { | |
1363 int maxShift= 3-(d+1); | |
1364 int shift=0; | |
1365 | |
1366 memcpy(funnyCode + fragmentPos, fragmentB, fragmentLengthB); | |
1367 | |
1368 funnyCode[fragmentPos + imm8OfPShufW1B]= | |
1369 (a+1) | ((b+1)<<2) | ((c+1)<<4) | ((d+1)<<6); | |
1370 funnyCode[fragmentPos + imm8OfPShufW2B]= | |
1371 a | (b<<2) | (c<<4) | (d<<6); | |
1372 | |
1373 if(i+3>=dstW) shift=maxShift; //avoid overread | |
1374 else if((filterPos[i/2]&3) <= maxShift) shift=filterPos[i/2]&3; //Align | |
1375 | |
1376 if(shift && i>=shift) | |
1377 { | |
1378 funnyCode[fragmentPos + imm8OfPShufW1B]+= 0x55*shift; | |
1379 funnyCode[fragmentPos + imm8OfPShufW2B]+= 0x55*shift; | |
1380 filterPos[i/2]-=shift; | |
1381 } | |
1382 | |
1383 fragmentPos+= fragmentLengthB; | |
1384 } | |
1385 else | |
1386 { | |
1387 int maxShift= 3-d; | |
1388 int shift=0; | |
1389 | |
1390 memcpy(funnyCode + fragmentPos, fragmentA, fragmentLengthA); | |
1391 | |
1392 funnyCode[fragmentPos + imm8OfPShufW1A]= | |
1393 funnyCode[fragmentPos + imm8OfPShufW2A]= | |
1394 a | (b<<2) | (c<<4) | (d<<6); | |
1395 | |
1396 if(i+4>=dstW) shift=maxShift; //avoid overread | |
1397 else if((filterPos[i/2]&3) <= maxShift) shift=filterPos[i/2]&3; //partial align | |
1398 | |
1399 if(shift && i>=shift) | |
1400 { | |
1401 funnyCode[fragmentPos + imm8OfPShufW1A]+= 0x55*shift; | |
1402 funnyCode[fragmentPos + imm8OfPShufW2A]+= 0x55*shift; | |
1403 filterPos[i/2]-=shift; | |
1404 } | |
1405 | |
1406 fragmentPos+= fragmentLengthA; | |
1407 } | |
1408 | |
1409 funnyCode[fragmentPos]= RET; | |
1410 } | |
1411 xpos+=xInc; | |
1412 } | |
1413 filterPos[i/2]= xpos>>16; // needed to jump to the next part | |
1414 } | |
19368
eb51949c73eb
Use COMPILE_MMX2 instead of HAVE_MMX2 to determine whether to compile
uau
parents:
19336
diff
changeset
|
1415 #endif /* COMPILE_MMX2 */ |
18861 | 1416 |
1417 static void globalInit(void){ | |
1418 // generating tables: | |
1419 int i; | |
1420 for(i=0; i<768; i++){ | |
19181 | 1421 int c= FFMIN(FFMAX(i-256, 0), 255); |
18861 | 1422 clip_table[i]=c; |
1423 } | |
1424 } | |
1425 | |
1426 static SwsFunc getSwsFunc(int flags){ | |
1427 | |
1428 #ifdef RUNTIME_CPUDETECT | |
1429 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
1430 // ordered per speed fasterst first | |
1431 if(flags & SWS_CPU_CAPS_MMX2) | |
1432 return swScale_MMX2; | |
1433 else if(flags & SWS_CPU_CAPS_3DNOW) | |
1434 return swScale_3DNow; | |
1435 else if(flags & SWS_CPU_CAPS_MMX) | |
1436 return swScale_MMX; | |
1437 else | |
1438 return swScale_C; | |
1439 | |
1440 #else | |
1441 #ifdef ARCH_POWERPC | |
1442 if(flags & SWS_CPU_CAPS_ALTIVEC) | |
1443 return swScale_altivec; | |
1444 else | |
1445 return swScale_C; | |
1446 #endif | |
1447 return swScale_C; | |
19206 | 1448 #endif /* defined(ARCH_X86) || defined(ARCH_X86_64) */ |
18861 | 1449 #else //RUNTIME_CPUDETECT |
1450 #ifdef HAVE_MMX2 | |
1451 return swScale_MMX2; | |
1452 #elif defined (HAVE_3DNOW) | |
1453 return swScale_3DNow; | |
1454 #elif defined (HAVE_MMX) | |
1455 return swScale_MMX; | |
1456 #elif defined (HAVE_ALTIVEC) | |
1457 return swScale_altivec; | |
1458 #else | |
1459 return swScale_C; | |
1460 #endif | |
1461 #endif //!RUNTIME_CPUDETECT | |
1462 } | |
1463 | |
1464 static int PlanarToNV12Wrapper(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
1465 int srcSliceH, uint8_t* dstParam[], int dstStride[]){ | |
1466 uint8_t *dst=dstParam[0] + dstStride[0]*srcSliceY; | |
1467 /* Copy Y plane */ | |
1468 if(dstStride[0]==srcStride[0] && srcStride[0] > 0) | |
1469 memcpy(dst, src[0], srcSliceH*dstStride[0]); | |
1470 else | |
1471 { | |
1472 int i; | |
1473 uint8_t *srcPtr= src[0]; | |
1474 uint8_t *dstPtr= dst; | |
1475 for(i=0; i<srcSliceH; i++) | |
1476 { | |
1477 memcpy(dstPtr, srcPtr, c->srcW); | |
1478 srcPtr+= srcStride[0]; | |
1479 dstPtr+= dstStride[0]; | |
1480 } | |
1481 } | |
1482 dst = dstParam[1] + dstStride[1]*srcSliceY/2; | |
1483 if (c->dstFormat == IMGFMT_NV12) | |
1484 interleaveBytes( src[1],src[2],dst,c->srcW/2,srcSliceH/2,srcStride[1],srcStride[2],dstStride[0] ); | |
1485 else | |
1486 interleaveBytes( src[2],src[1],dst,c->srcW/2,srcSliceH/2,srcStride[2],srcStride[1],dstStride[0] ); | |
1487 | |
1488 return srcSliceH; | |
1489 } | |
1490 | |
1491 static int PlanarToYuy2Wrapper(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
1492 int srcSliceH, uint8_t* dstParam[], int dstStride[]){ | |
1493 uint8_t *dst=dstParam[0] + dstStride[0]*srcSliceY; | |
1494 | |
1495 yv12toyuy2( src[0],src[1],src[2],dst,c->srcW,srcSliceH,srcStride[0],srcStride[1],dstStride[0] ); | |
1496 | |
1497 return srcSliceH; | |
1498 } | |
1499 | |
1500 static int PlanarToUyvyWrapper(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
1501 int srcSliceH, uint8_t* dstParam[], int dstStride[]){ | |
1502 uint8_t *dst=dstParam[0] + dstStride[0]*srcSliceY; | |
1503 | |
1504 yv12touyvy( src[0],src[1],src[2],dst,c->srcW,srcSliceH,srcStride[0],srcStride[1],dstStride[0] ); | |
1505 | |
1506 return srcSliceH; | |
1507 } | |
1508 | |
1509 /* {RGB,BGR}{15,16,24,32} -> {RGB,BGR}{15,16,24,32} */ | |
1510 static int rgb2rgbWrapper(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
1511 int srcSliceH, uint8_t* dst[], int dstStride[]){ | |
1512 const int srcFormat= c->srcFormat; | |
1513 const int dstFormat= c->dstFormat; | |
1514 const int srcBpp= ((srcFormat&0xFF) + 7)>>3; | |
1515 const int dstBpp= ((dstFormat&0xFF) + 7)>>3; | |
1516 const int srcId= (srcFormat&0xFF)>>2; // 1:0, 4:1, 8:2, 15:3, 16:4, 24:6, 32:8 | |
1517 const int dstId= (dstFormat&0xFF)>>2; | |
1518 void (*conv)(const uint8_t *src, uint8_t *dst, long src_size)=NULL; | |
1519 | |
1520 /* BGR -> BGR */ | |
1521 if( (isBGR(srcFormat) && isBGR(dstFormat)) | |
1522 || (isRGB(srcFormat) && isRGB(dstFormat))){ | |
1523 switch(srcId | (dstId<<4)){ | |
1524 case 0x34: conv= rgb16to15; break; | |
1525 case 0x36: conv= rgb24to15; break; | |
1526 case 0x38: conv= rgb32to15; break; | |
1527 case 0x43: conv= rgb15to16; break; | |
1528 case 0x46: conv= rgb24to16; break; | |
1529 case 0x48: conv= rgb32to16; break; | |
1530 case 0x63: conv= rgb15to24; break; | |
1531 case 0x64: conv= rgb16to24; break; | |
1532 case 0x68: conv= rgb32to24; break; | |
1533 case 0x83: conv= rgb15to32; break; | |
1534 case 0x84: conv= rgb16to32; break; | |
1535 case 0x86: conv= rgb24to32; break; | |
1536 default: MSG_ERR("swScaler: internal error %s -> %s converter\n", | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
1537 sws_format_name(srcFormat), sws_format_name(dstFormat)); break; |
18861 | 1538 } |
1539 }else if( (isBGR(srcFormat) && isRGB(dstFormat)) | |
1540 || (isRGB(srcFormat) && isBGR(dstFormat))){ | |
1541 switch(srcId | (dstId<<4)){ | |
1542 case 0x33: conv= rgb15tobgr15; break; | |
1543 case 0x34: conv= rgb16tobgr15; break; | |
1544 case 0x36: conv= rgb24tobgr15; break; | |
1545 case 0x38: conv= rgb32tobgr15; break; | |
1546 case 0x43: conv= rgb15tobgr16; break; | |
1547 case 0x44: conv= rgb16tobgr16; break; | |
1548 case 0x46: conv= rgb24tobgr16; break; | |
1549 case 0x48: conv= rgb32tobgr16; break; | |
1550 case 0x63: conv= rgb15tobgr24; break; | |
1551 case 0x64: conv= rgb16tobgr24; break; | |
1552 case 0x66: conv= rgb24tobgr24; break; | |
1553 case 0x68: conv= rgb32tobgr24; break; | |
1554 case 0x83: conv= rgb15tobgr32; break; | |
1555 case 0x84: conv= rgb16tobgr32; break; | |
1556 case 0x86: conv= rgb24tobgr32; break; | |
1557 case 0x88: conv= rgb32tobgr32; break; | |
1558 default: MSG_ERR("swScaler: internal error %s -> %s converter\n", | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
1559 sws_format_name(srcFormat), sws_format_name(dstFormat)); break; |
18861 | 1560 } |
1561 }else{ | |
1562 MSG_ERR("swScaler: internal error %s -> %s converter\n", | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
1563 sws_format_name(srcFormat), sws_format_name(dstFormat)); |
18861 | 1564 } |
1565 | |
1566 if(dstStride[0]*srcBpp == srcStride[0]*dstBpp) | |
1567 conv(src[0], dst[0] + dstStride[0]*srcSliceY, srcSliceH*srcStride[0]); | |
1568 else | |
1569 { | |
1570 int i; | |
1571 uint8_t *srcPtr= src[0]; | |
1572 uint8_t *dstPtr= dst[0] + dstStride[0]*srcSliceY; | |
1573 | |
1574 for(i=0; i<srcSliceH; i++) | |
1575 { | |
1576 conv(srcPtr, dstPtr, c->srcW*srcBpp); | |
1577 srcPtr+= srcStride[0]; | |
1578 dstPtr+= dstStride[0]; | |
1579 } | |
1580 } | |
1581 return srcSliceH; | |
1582 } | |
1583 | |
1584 static int bgr24toyv12Wrapper(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
1585 int srcSliceH, uint8_t* dst[], int dstStride[]){ | |
1586 | |
1587 rgb24toyv12( | |
1588 src[0], | |
1589 dst[0]+ srcSliceY *dstStride[0], | |
1590 dst[1]+(srcSliceY>>1)*dstStride[1], | |
1591 dst[2]+(srcSliceY>>1)*dstStride[2], | |
1592 c->srcW, srcSliceH, | |
1593 dstStride[0], dstStride[1], srcStride[0]); | |
1594 return srcSliceH; | |
1595 } | |
1596 | |
1597 static int yvu9toyv12Wrapper(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
1598 int srcSliceH, uint8_t* dst[], int dstStride[]){ | |
1599 int i; | |
1600 | |
1601 /* copy Y */ | |
1602 if(srcStride[0]==dstStride[0] && srcStride[0] > 0) | |
1603 memcpy(dst[0]+ srcSliceY*dstStride[0], src[0], srcStride[0]*srcSliceH); | |
1604 else{ | |
1605 uint8_t *srcPtr= src[0]; | |
1606 uint8_t *dstPtr= dst[0] + dstStride[0]*srcSliceY; | |
1607 | |
1608 for(i=0; i<srcSliceH; i++) | |
1609 { | |
1610 memcpy(dstPtr, srcPtr, c->srcW); | |
1611 srcPtr+= srcStride[0]; | |
1612 dstPtr+= dstStride[0]; | |
1613 } | |
1614 } | |
1615 | |
1616 if(c->dstFormat==IMGFMT_YV12){ | |
1617 planar2x(src[1], dst[1], c->chrSrcW, c->chrSrcH, srcStride[1], dstStride[1]); | |
1618 planar2x(src[2], dst[2], c->chrSrcW, c->chrSrcH, srcStride[2], dstStride[2]); | |
1619 }else{ | |
1620 planar2x(src[1], dst[2], c->chrSrcW, c->chrSrcH, srcStride[1], dstStride[2]); | |
1621 planar2x(src[2], dst[1], c->chrSrcW, c->chrSrcH, srcStride[2], dstStride[1]); | |
1622 } | |
1623 return srcSliceH; | |
1624 } | |
1625 | |
1626 /** | |
1627 * bring pointers in YUV order instead of YVU | |
1628 */ | |
1629 static inline void sws_orderYUV(int format, uint8_t * sortedP[], int sortedStride[], uint8_t * p[], int stride[]){ | |
1630 if(format == IMGFMT_YV12 || format == IMGFMT_YVU9 | |
1631 || format == IMGFMT_444P || format == IMGFMT_422P || format == IMGFMT_411P){ | |
1632 sortedP[0]= p[0]; | |
1633 sortedP[1]= p[2]; | |
1634 sortedP[2]= p[1]; | |
1635 sortedStride[0]= stride[0]; | |
1636 sortedStride[1]= stride[2]; | |
1637 sortedStride[2]= stride[1]; | |
1638 } | |
1639 else if(isPacked(format) || isGray(format) || format == IMGFMT_Y8) | |
1640 { | |
1641 sortedP[0]= p[0]; | |
1642 sortedP[1]= | |
1643 sortedP[2]= NULL; | |
1644 sortedStride[0]= stride[0]; | |
1645 sortedStride[1]= | |
1646 sortedStride[2]= 0; | |
1647 } | |
1648 else if(format == IMGFMT_I420 || format == IMGFMT_IYUV) | |
1649 { | |
1650 sortedP[0]= p[0]; | |
1651 sortedP[1]= p[1]; | |
1652 sortedP[2]= p[2]; | |
1653 sortedStride[0]= stride[0]; | |
1654 sortedStride[1]= stride[1]; | |
1655 sortedStride[2]= stride[2]; | |
1656 } | |
1657 else if(format == IMGFMT_NV12 || format == IMGFMT_NV21) | |
1658 { | |
1659 sortedP[0]= p[0]; | |
1660 sortedP[1]= p[1]; | |
1661 sortedP[2]= NULL; | |
1662 sortedStride[0]= stride[0]; | |
1663 sortedStride[1]= stride[1]; | |
1664 sortedStride[2]= 0; | |
1665 }else{ | |
1666 MSG_ERR("internal error in orderYUV\n"); | |
1667 } | |
1668 } | |
1669 | |
1670 /* unscaled copy like stuff (assumes nearly identical formats) */ | |
1671 static int simpleCopy(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
1672 int srcSliceH, uint8_t* dst[], int dstStride[]){ | |
1673 | |
1674 if(isPacked(c->srcFormat)) | |
1675 { | |
1676 if(dstStride[0]==srcStride[0] && srcStride[0] > 0) | |
1677 memcpy(dst[0] + dstStride[0]*srcSliceY, src[0], srcSliceH*dstStride[0]); | |
1678 else | |
1679 { | |
1680 int i; | |
1681 uint8_t *srcPtr= src[0]; | |
1682 uint8_t *dstPtr= dst[0] + dstStride[0]*srcSliceY; | |
1683 int length=0; | |
1684 | |
1685 /* universal length finder */ | |
1686 while(length+c->srcW <= ABS(dstStride[0]) | |
1687 && length+c->srcW <= ABS(srcStride[0])) length+= c->srcW; | |
1688 ASSERT(length!=0); | |
1689 | |
1690 for(i=0; i<srcSliceH; i++) | |
1691 { | |
1692 memcpy(dstPtr, srcPtr, length); | |
1693 srcPtr+= srcStride[0]; | |
1694 dstPtr+= dstStride[0]; | |
1695 } | |
1696 } | |
1697 } | |
1698 else | |
1699 { /* Planar YUV or gray */ | |
1700 int plane; | |
1701 for(plane=0; plane<3; plane++) | |
1702 { | |
1703 int length= plane==0 ? c->srcW : -((-c->srcW )>>c->chrDstHSubSample); | |
1704 int y= plane==0 ? srcSliceY: -((-srcSliceY)>>c->chrDstVSubSample); | |
1705 int height= plane==0 ? srcSliceH: -((-srcSliceH)>>c->chrDstVSubSample); | |
1706 | |
1707 if((isGray(c->srcFormat) || isGray(c->dstFormat)) && plane>0) | |
1708 { | |
1709 if(!isGray(c->dstFormat)) | |
1710 memset(dst[plane], 128, dstStride[plane]*height); | |
1711 } | |
1712 else | |
1713 { | |
1714 if(dstStride[plane]==srcStride[plane] && srcStride[plane] > 0) | |
1715 memcpy(dst[plane] + dstStride[plane]*y, src[plane], height*dstStride[plane]); | |
1716 else | |
1717 { | |
1718 int i; | |
1719 uint8_t *srcPtr= src[plane]; | |
1720 uint8_t *dstPtr= dst[plane] + dstStride[plane]*y; | |
1721 for(i=0; i<height; i++) | |
1722 { | |
1723 memcpy(dstPtr, srcPtr, length); | |
1724 srcPtr+= srcStride[plane]; | |
1725 dstPtr+= dstStride[plane]; | |
1726 } | |
1727 } | |
1728 } | |
1729 } | |
1730 } | |
1731 return srcSliceH; | |
1732 } | |
1733 | |
1734 static int remove_dup_fourcc(int fourcc) | |
1735 { | |
1736 switch(fourcc) | |
1737 { | |
1738 case IMGFMT_I420: | |
1739 case IMGFMT_IYUV: return IMGFMT_YV12; | |
1740 case IMGFMT_Y8 : return IMGFMT_Y800; | |
1741 case IMGFMT_IF09: return IMGFMT_YVU9; | |
1742 default: return fourcc; | |
1743 } | |
1744 } | |
1745 | |
1746 static void getSubSampleFactors(int *h, int *v, int format){ | |
1747 switch(format){ | |
1748 case IMGFMT_UYVY: | |
1749 case IMGFMT_YUY2: | |
1750 *h=1; | |
1751 *v=0; | |
1752 break; | |
1753 case IMGFMT_YV12: | |
1754 case IMGFMT_Y800: //FIXME remove after different subsamplings are fully implemented | |
1755 case IMGFMT_NV12: | |
1756 case IMGFMT_NV21: | |
1757 *h=1; | |
1758 *v=1; | |
1759 break; | |
1760 case IMGFMT_YVU9: | |
1761 *h=2; | |
1762 *v=2; | |
1763 break; | |
1764 case IMGFMT_444P: | |
1765 *h=0; | |
1766 *v=0; | |
1767 break; | |
1768 case IMGFMT_422P: | |
1769 *h=1; | |
1770 *v=0; | |
1771 break; | |
1772 case IMGFMT_411P: | |
1773 *h=2; | |
1774 *v=0; | |
1775 break; | |
1776 default: | |
1777 *h=0; | |
1778 *v=0; | |
1779 break; | |
1780 } | |
1781 } | |
1782 | |
1783 static uint16_t roundToInt16(int64_t f){ | |
1784 int r= (f + (1<<15))>>16; | |
1785 if(r<-0x7FFF) return 0x8000; | |
1786 else if(r> 0x7FFF) return 0x7FFF; | |
1787 else return r; | |
1788 } | |
1789 | |
1790 /** | |
1791 * @param inv_table the yuv2rgb coeffs, normally Inverse_Table_6_9[x] | |
1792 * @param fullRange if 1 then the luma range is 0..255 if 0 its 16..235 | |
1793 * @return -1 if not supported | |
1794 */ | |
1795 int sws_setColorspaceDetails(SwsContext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, int contrast, int saturation){ | |
1796 int64_t crv = inv_table[0]; | |
1797 int64_t cbu = inv_table[1]; | |
1798 int64_t cgu = -inv_table[2]; | |
1799 int64_t cgv = -inv_table[3]; | |
1800 int64_t cy = 1<<16; | |
1801 int64_t oy = 0; | |
1802 | |
1803 if(isYUV(c->dstFormat) || isGray(c->dstFormat)) return -1; | |
1804 memcpy(c->srcColorspaceTable, inv_table, sizeof(int)*4); | |
1805 memcpy(c->dstColorspaceTable, table, sizeof(int)*4); | |
1806 | |
1807 c->brightness= brightness; | |
1808 c->contrast = contrast; | |
1809 c->saturation= saturation; | |
1810 c->srcRange = srcRange; | |
1811 c->dstRange = dstRange; | |
1812 | |
1813 c->uOffset= 0x0400040004000400LL; | |
1814 c->vOffset= 0x0400040004000400LL; | |
1815 | |
1816 if(!srcRange){ | |
1817 cy= (cy*255) / 219; | |
1818 oy= 16<<16; | |
1819 } | |
1820 | |
1821 cy = (cy *contrast )>>16; | |
1822 crv= (crv*contrast * saturation)>>32; | |
1823 cbu= (cbu*contrast * saturation)>>32; | |
1824 cgu= (cgu*contrast * saturation)>>32; | |
1825 cgv= (cgv*contrast * saturation)>>32; | |
1826 | |
1827 oy -= 256*brightness; | |
1828 | |
1829 c->yCoeff= roundToInt16(cy *8192) * 0x0001000100010001ULL; | |
1830 c->vrCoeff= roundToInt16(crv*8192) * 0x0001000100010001ULL; | |
1831 c->ubCoeff= roundToInt16(cbu*8192) * 0x0001000100010001ULL; | |
1832 c->vgCoeff= roundToInt16(cgv*8192) * 0x0001000100010001ULL; | |
1833 c->ugCoeff= roundToInt16(cgu*8192) * 0x0001000100010001ULL; | |
1834 c->yOffset= roundToInt16(oy * 8) * 0x0001000100010001ULL; | |
1835 | |
1836 yuv2rgb_c_init_tables(c, inv_table, srcRange, brightness, contrast, saturation); | |
1837 //FIXME factorize | |
1838 | |
1839 #ifdef COMPILE_ALTIVEC | |
1840 if (c->flags & SWS_CPU_CAPS_ALTIVEC) | |
1841 yuv2rgb_altivec_init_tables (c, inv_table, brightness, contrast, saturation); | |
1842 #endif | |
1843 return 0; | |
1844 } | |
1845 | |
1846 /** | |
1847 * @return -1 if not supported | |
1848 */ | |
1849 int sws_getColorspaceDetails(SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation){ | |
1850 if(isYUV(c->dstFormat) || isGray(c->dstFormat)) return -1; | |
1851 | |
1852 *inv_table = c->srcColorspaceTable; | |
1853 *table = c->dstColorspaceTable; | |
1854 *srcRange = c->srcRange; | |
1855 *dstRange = c->dstRange; | |
1856 *brightness= c->brightness; | |
1857 *contrast = c->contrast; | |
1858 *saturation= c->saturation; | |
1859 | |
1860 return 0; | |
1861 } | |
1862 | |
1863 SwsContext *sws_getContext(int srcW, int srcH, int origSrcFormat, int dstW, int dstH, int origDstFormat, int flags, | |
1864 SwsFilter *srcFilter, SwsFilter *dstFilter, double *param){ | |
1865 | |
1866 SwsContext *c; | |
1867 int i; | |
1868 int usesVFilter, usesHFilter; | |
1869 int unscaled, needsDither; | |
1870 int srcFormat, dstFormat; | |
1871 SwsFilter dummyFilter= {NULL, NULL, NULL, NULL}; | |
1872 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
1873 if(flags & SWS_CPU_CAPS_MMX) | |
1874 asm volatile("emms\n\t"::: "memory"); | |
1875 #endif | |
1876 | |
1877 #ifndef RUNTIME_CPUDETECT //ensure that the flags match the compiled variant if cpudetect is off | |
1878 flags &= ~(SWS_CPU_CAPS_MMX|SWS_CPU_CAPS_MMX2|SWS_CPU_CAPS_3DNOW|SWS_CPU_CAPS_ALTIVEC); | |
1879 #ifdef HAVE_MMX2 | |
1880 flags |= SWS_CPU_CAPS_MMX|SWS_CPU_CAPS_MMX2; | |
1881 #elif defined (HAVE_3DNOW) | |
1882 flags |= SWS_CPU_CAPS_MMX|SWS_CPU_CAPS_3DNOW; | |
1883 #elif defined (HAVE_MMX) | |
1884 flags |= SWS_CPU_CAPS_MMX; | |
1885 #elif defined (HAVE_ALTIVEC) | |
1886 flags |= SWS_CPU_CAPS_ALTIVEC; | |
1887 #endif | |
19206 | 1888 #endif /* RUNTIME_CPUDETECT */ |
18861 | 1889 if(clip_table[512] != 255) globalInit(); |
1890 if(rgb15to16 == NULL) sws_rgb2rgb_init(flags); | |
1891 | |
1892 /* avoid duplicate Formats, so we don't need to check to much */ | |
19270
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
1893 if (origSrcFormat < PIX_FMT_NB) { |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
1894 origSrcFormat = fmt_name[origSrcFormat]; |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
1895 } |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
1896 if (origDstFormat < PIX_FMT_NB) { |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
1897 origDstFormat = fmt_name[origDstFormat]; |
7d39b911f0bd
Add support for ffmpeg's pixel format names in libswscale
lucabe
parents:
19206
diff
changeset
|
1898 } |
18861 | 1899 srcFormat = remove_dup_fourcc(origSrcFormat); |
1900 dstFormat = remove_dup_fourcc(origDstFormat); | |
1901 | |
1902 unscaled = (srcW == dstW && srcH == dstH); | |
1903 needsDither= (isBGR(dstFormat) || isRGB(dstFormat)) | |
1904 && (dstFormat&0xFF)<24 | |
1905 && ((dstFormat&0xFF)<(srcFormat&0xFF) || (!(isRGB(srcFormat) || isBGR(srcFormat)))); | |
1906 | |
1907 if(!isSupportedIn(srcFormat)) | |
1908 { | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
1909 MSG_ERR("swScaler: %s is not supported as input format\n", sws_format_name(srcFormat)); |
18861 | 1910 return NULL; |
1911 } | |
1912 if(!isSupportedOut(dstFormat)) | |
1913 { | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
1914 MSG_ERR("swScaler: %s is not supported as output format\n", sws_format_name(dstFormat)); |
18861 | 1915 return NULL; |
1916 } | |
1917 | |
1918 /* sanity check */ | |
1919 if(srcW<4 || srcH<1 || dstW<8 || dstH<1) //FIXME check if these are enough and try to lowwer them after fixing the relevant parts of the code | |
1920 { | |
1921 MSG_ERR("swScaler: %dx%d -> %dx%d is invalid scaling dimension\n", | |
1922 srcW, srcH, dstW, dstH); | |
1923 return NULL; | |
1924 } | |
1925 | |
1926 if(!dstFilter) dstFilter= &dummyFilter; | |
1927 if(!srcFilter) srcFilter= &dummyFilter; | |
1928 | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
1929 c= av_malloc(sizeof(SwsContext)); |
18861 | 1930 memset(c, 0, sizeof(SwsContext)); |
1931 | |
1932 c->srcW= srcW; | |
1933 c->srcH= srcH; | |
1934 c->dstW= dstW; | |
1935 c->dstH= dstH; | |
1936 c->lumXInc= ((srcW<<16) + (dstW>>1))/dstW; | |
1937 c->lumYInc= ((srcH<<16) + (dstH>>1))/dstH; | |
1938 c->flags= flags; | |
1939 c->dstFormat= dstFormat; | |
1940 c->srcFormat= srcFormat; | |
1941 c->origDstFormat= origDstFormat; | |
1942 c->origSrcFormat= origSrcFormat; | |
1943 c->vRounder= 4* 0x0001000100010001ULL; | |
1944 | |
1945 usesHFilter= usesVFilter= 0; | |
1946 if(dstFilter->lumV!=NULL && dstFilter->lumV->length>1) usesVFilter=1; | |
1947 if(dstFilter->lumH!=NULL && dstFilter->lumH->length>1) usesHFilter=1; | |
1948 if(dstFilter->chrV!=NULL && dstFilter->chrV->length>1) usesVFilter=1; | |
1949 if(dstFilter->chrH!=NULL && dstFilter->chrH->length>1) usesHFilter=1; | |
1950 if(srcFilter->lumV!=NULL && srcFilter->lumV->length>1) usesVFilter=1; | |
1951 if(srcFilter->lumH!=NULL && srcFilter->lumH->length>1) usesHFilter=1; | |
1952 if(srcFilter->chrV!=NULL && srcFilter->chrV->length>1) usesVFilter=1; | |
1953 if(srcFilter->chrH!=NULL && srcFilter->chrH->length>1) usesHFilter=1; | |
1954 | |
1955 getSubSampleFactors(&c->chrSrcHSubSample, &c->chrSrcVSubSample, srcFormat); | |
1956 getSubSampleFactors(&c->chrDstHSubSample, &c->chrDstVSubSample, dstFormat); | |
1957 | |
1958 // reuse chroma for 2 pixles rgb/bgr unless user wants full chroma interpolation | |
1959 if((isBGR(dstFormat) || isRGB(dstFormat)) && !(flags&SWS_FULL_CHR_H_INT)) c->chrDstHSubSample=1; | |
1960 | |
1961 // drop some chroma lines if the user wants it | |
1962 c->vChrDrop= (flags&SWS_SRC_V_CHR_DROP_MASK)>>SWS_SRC_V_CHR_DROP_SHIFT; | |
1963 c->chrSrcVSubSample+= c->vChrDrop; | |
1964 | |
1965 // drop every 2. pixel for chroma calculation unless user wants full chroma | |
1966 if((isBGR(srcFormat) || isRGB(srcFormat)) && !(flags&SWS_FULL_CHR_H_INP)) | |
1967 c->chrSrcHSubSample=1; | |
1968 | |
1969 if(param){ | |
1970 c->param[0] = param[0]; | |
1971 c->param[1] = param[1]; | |
1972 }else{ | |
1973 c->param[0] = | |
1974 c->param[1] = SWS_PARAM_DEFAULT; | |
1975 } | |
1976 | |
1977 c->chrIntHSubSample= c->chrDstHSubSample; | |
1978 c->chrIntVSubSample= c->chrSrcVSubSample; | |
1979 | |
1980 // note the -((-x)>>y) is so that we allways round toward +inf | |
1981 c->chrSrcW= -((-srcW) >> c->chrSrcHSubSample); | |
1982 c->chrSrcH= -((-srcH) >> c->chrSrcVSubSample); | |
1983 c->chrDstW= -((-dstW) >> c->chrDstHSubSample); | |
1984 c->chrDstH= -((-dstH) >> c->chrDstVSubSample); | |
1985 | |
1986 sws_setColorspaceDetails(c, Inverse_Table_6_9[SWS_CS_DEFAULT], 0, Inverse_Table_6_9[SWS_CS_DEFAULT] /* FIXME*/, 0, 0, 1<<16, 1<<16); | |
1987 | |
1988 /* unscaled special Cases */ | |
1989 if(unscaled && !usesHFilter && !usesVFilter) | |
1990 { | |
1991 /* yv12_to_nv12 */ | |
1992 if(srcFormat == IMGFMT_YV12 && (dstFormat == IMGFMT_NV12 || dstFormat == IMGFMT_NV21)) | |
1993 { | |
1994 c->swScale= PlanarToNV12Wrapper; | |
1995 } | |
1996 /* yuv2bgr */ | |
1997 if((srcFormat==IMGFMT_YV12 || srcFormat==IMGFMT_422P) && (isBGR(dstFormat) || isRGB(dstFormat))) | |
1998 { | |
1999 c->swScale= yuv2rgb_get_func_ptr(c); | |
2000 } | |
2001 | |
2002 if( srcFormat==IMGFMT_YVU9 && dstFormat==IMGFMT_YV12 ) | |
2003 { | |
2004 c->swScale= yvu9toyv12Wrapper; | |
2005 } | |
2006 | |
2007 /* bgr24toYV12 */ | |
2008 if(srcFormat==IMGFMT_BGR24 && dstFormat==IMGFMT_YV12) | |
2009 c->swScale= bgr24toyv12Wrapper; | |
2010 | |
2011 /* rgb/bgr -> rgb/bgr (no dither needed forms) */ | |
2012 if( (isBGR(srcFormat) || isRGB(srcFormat)) | |
2013 && (isBGR(dstFormat) || isRGB(dstFormat)) | |
2014 && !needsDither) | |
2015 c->swScale= rgb2rgbWrapper; | |
2016 | |
2017 /* LQ converters if -sws 0 or -sws 4*/ | |
2018 if(c->flags&(SWS_FAST_BILINEAR|SWS_POINT)){ | |
2019 /* rgb/bgr -> rgb/bgr (dither needed forms) */ | |
2020 if( (isBGR(srcFormat) || isRGB(srcFormat)) | |
2021 && (isBGR(dstFormat) || isRGB(dstFormat)) | |
2022 && needsDither) | |
2023 c->swScale= rgb2rgbWrapper; | |
2024 | |
2025 /* yv12_to_yuy2 */ | |
2026 if(srcFormat == IMGFMT_YV12 && | |
2027 (dstFormat == IMGFMT_YUY2 || dstFormat == IMGFMT_UYVY)) | |
2028 { | |
2029 if (dstFormat == IMGFMT_YUY2) | |
2030 c->swScale= PlanarToYuy2Wrapper; | |
2031 else | |
2032 c->swScale= PlanarToUyvyWrapper; | |
2033 } | |
2034 } | |
2035 | |
2036 #ifdef COMPILE_ALTIVEC | |
2037 if ((c->flags & SWS_CPU_CAPS_ALTIVEC) && | |
2038 ((srcFormat == IMGFMT_YV12 && | |
2039 (dstFormat == IMGFMT_YUY2 || dstFormat == IMGFMT_UYVY)))) { | |
2040 // unscaled YV12 -> packed YUV, we want speed | |
2041 if (dstFormat == IMGFMT_YUY2) | |
2042 c->swScale= yv12toyuy2_unscaled_altivec; | |
2043 else | |
2044 c->swScale= yv12touyvy_unscaled_altivec; | |
2045 } | |
2046 #endif | |
2047 | |
2048 /* simple copy */ | |
2049 if( srcFormat == dstFormat | |
2050 || (isPlanarYUV(srcFormat) && isGray(dstFormat)) | |
2051 || (isPlanarYUV(dstFormat) && isGray(srcFormat)) | |
2052 ) | |
2053 { | |
2054 c->swScale= simpleCopy; | |
2055 } | |
2056 | |
2057 if(c->swScale){ | |
2058 if(flags&SWS_PRINT_INFO) | |
2059 MSG_INFO("SwScaler: using unscaled %s -> %s special converter\n", | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2060 sws_format_name(srcFormat), sws_format_name(dstFormat)); |
18861 | 2061 return c; |
2062 } | |
2063 } | |
2064 | |
2065 if(flags & SWS_CPU_CAPS_MMX2) | |
2066 { | |
2067 c->canMMX2BeUsed= (dstW >=srcW && (dstW&31)==0 && (srcW&15)==0) ? 1 : 0; | |
2068 if(!c->canMMX2BeUsed && dstW >=srcW && (srcW&15)==0 && (flags&SWS_FAST_BILINEAR)) | |
2069 { | |
2070 if(flags&SWS_PRINT_INFO) | |
2071 MSG_INFO("SwScaler: output Width is not a multiple of 32 -> no MMX2 scaler\n"); | |
2072 } | |
2073 if(usesHFilter) c->canMMX2BeUsed=0; | |
2074 } | |
2075 else | |
2076 c->canMMX2BeUsed=0; | |
2077 | |
2078 c->chrXInc= ((c->chrSrcW<<16) + (c->chrDstW>>1))/c->chrDstW; | |
2079 c->chrYInc= ((c->chrSrcH<<16) + (c->chrDstH>>1))/c->chrDstH; | |
2080 | |
2081 // match pixel 0 of the src to pixel 0 of dst and match pixel n-2 of src to pixel n-2 of dst | |
2082 // but only for the FAST_BILINEAR mode otherwise do correct scaling | |
2083 // n-2 is the last chrominance sample available | |
2084 // this is not perfect, but noone shuld notice the difference, the more correct variant | |
2085 // would be like the vertical one, but that would require some special code for the | |
2086 // first and last pixel | |
2087 if(flags&SWS_FAST_BILINEAR) | |
2088 { | |
2089 if(c->canMMX2BeUsed) | |
2090 { | |
2091 c->lumXInc+= 20; | |
2092 c->chrXInc+= 20; | |
2093 } | |
2094 //we don't use the x86asm scaler if mmx is available | |
2095 else if(flags & SWS_CPU_CAPS_MMX) | |
2096 { | |
2097 c->lumXInc = ((srcW-2)<<16)/(dstW-2) - 20; | |
2098 c->chrXInc = ((c->chrSrcW-2)<<16)/(c->chrDstW-2) - 20; | |
2099 } | |
2100 } | |
2101 | |
2102 /* precalculate horizontal scaler filter coefficients */ | |
2103 { | |
2104 const int filterAlign= | |
2105 (flags & SWS_CPU_CAPS_MMX) ? 4 : | |
2106 (flags & SWS_CPU_CAPS_ALTIVEC) ? 8 : | |
2107 1; | |
2108 | |
2109 initFilter(&c->hLumFilter, &c->hLumFilterPos, &c->hLumFilterSize, c->lumXInc, | |
2110 srcW , dstW, filterAlign, 1<<14, | |
2111 (flags&SWS_BICUBLIN) ? (flags|SWS_BICUBIC) : flags, | |
2112 srcFilter->lumH, dstFilter->lumH, c->param); | |
2113 initFilter(&c->hChrFilter, &c->hChrFilterPos, &c->hChrFilterSize, c->chrXInc, | |
2114 c->chrSrcW, c->chrDstW, filterAlign, 1<<14, | |
2115 (flags&SWS_BICUBLIN) ? (flags|SWS_BILINEAR) : flags, | |
2116 srcFilter->chrH, dstFilter->chrH, c->param); | |
2117 | |
19333
4f5e2e0529b1
Do not assemble MMX, MMX2 or 3DNOW code unconditionally on X86 and X86_64.
diego
parents:
19270
diff
changeset
|
2118 #define MAX_FUNNY_CODE_SIZE 10000 |
19368
eb51949c73eb
Use COMPILE_MMX2 instead of HAVE_MMX2 to determine whether to compile
uau
parents:
19336
diff
changeset
|
2119 #if defined(COMPILE_MMX2) |
18861 | 2120 // can't downscale !!! |
2121 if(c->canMMX2BeUsed && (flags & SWS_FAST_BILINEAR)) | |
2122 { | |
2123 #ifdef MAP_ANONYMOUS | |
2124 c->funnyYCode = (uint8_t*)mmap(NULL, MAX_FUNNY_CODE_SIZE, PROT_EXEC | PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, 0, 0); | |
2125 c->funnyUVCode = (uint8_t*)mmap(NULL, MAX_FUNNY_CODE_SIZE, PROT_EXEC | PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, 0, 0); | |
2126 #else | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2127 c->funnyYCode = av_malloc(MAX_FUNNY_CODE_SIZE); |
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2128 c->funnyUVCode = av_malloc(MAX_FUNNY_CODE_SIZE); |
18861 | 2129 #endif |
2130 | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2131 c->lumMmx2Filter = av_malloc((dstW /8+8)*sizeof(int16_t)); |
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2132 c->chrMmx2Filter = av_malloc((c->chrDstW /4+8)*sizeof(int16_t)); |
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2133 c->lumMmx2FilterPos= av_malloc((dstW /2/8+8)*sizeof(int32_t)); |
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2134 c->chrMmx2FilterPos= av_malloc((c->chrDstW/2/4+8)*sizeof(int32_t)); |
18861 | 2135 |
2136 initMMX2HScaler( dstW, c->lumXInc, c->funnyYCode , c->lumMmx2Filter, c->lumMmx2FilterPos, 8); | |
2137 initMMX2HScaler(c->chrDstW, c->chrXInc, c->funnyUVCode, c->chrMmx2Filter, c->chrMmx2FilterPos, 4); | |
2138 } | |
19368
eb51949c73eb
Use COMPILE_MMX2 instead of HAVE_MMX2 to determine whether to compile
uau
parents:
19336
diff
changeset
|
2139 #endif /* defined(COMPILE_MMX2) */ |
18861 | 2140 } // Init Horizontal stuff |
2141 | |
2142 | |
2143 | |
2144 /* precalculate vertical scaler filter coefficients */ | |
2145 { | |
2146 const int filterAlign= | |
19172
bae6c99a99cc
vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents:
19169
diff
changeset
|
2147 (flags & SWS_CPU_CAPS_MMX) && (flags & SWS_ACCURATE_RND) ? 2 : |
18861 | 2148 (flags & SWS_CPU_CAPS_ALTIVEC) ? 8 : |
2149 1; | |
2150 | |
2151 initFilter(&c->vLumFilter, &c->vLumFilterPos, &c->vLumFilterSize, c->lumYInc, | |
2152 srcH , dstH, filterAlign, (1<<12)-4, | |
2153 (flags&SWS_BICUBLIN) ? (flags|SWS_BICUBIC) : flags, | |
2154 srcFilter->lumV, dstFilter->lumV, c->param); | |
2155 initFilter(&c->vChrFilter, &c->vChrFilterPos, &c->vChrFilterSize, c->chrYInc, | |
2156 c->chrSrcH, c->chrDstH, filterAlign, (1<<12)-4, | |
2157 (flags&SWS_BICUBLIN) ? (flags|SWS_BILINEAR) : flags, | |
2158 srcFilter->chrV, dstFilter->chrV, c->param); | |
2159 | |
2160 #ifdef HAVE_ALTIVEC | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2161 c->vYCoeffsBank = av_malloc(sizeof (vector signed short)*c->vLumFilterSize*c->dstH); |
19169
70ea0a8d3b4a
Fix typo introduced in the memalign->av_malloc conversion (there is no
pacman
parents:
19168
diff
changeset
|
2162 c->vCCoeffsBank = av_malloc(sizeof (vector signed short)*c->vChrFilterSize*c->chrDstH); |
18861 | 2163 |
2164 for (i=0;i<c->vLumFilterSize*c->dstH;i++) { | |
2165 int j; | |
2166 short *p = (short *)&c->vYCoeffsBank[i]; | |
2167 for (j=0;j<8;j++) | |
2168 p[j] = c->vLumFilter[i]; | |
2169 } | |
2170 | |
2171 for (i=0;i<c->vChrFilterSize*c->chrDstH;i++) { | |
2172 int j; | |
2173 short *p = (short *)&c->vCCoeffsBank[i]; | |
2174 for (j=0;j<8;j++) | |
2175 p[j] = c->vChrFilter[i]; | |
2176 } | |
2177 #endif | |
2178 } | |
2179 | |
2180 // Calculate Buffer Sizes so that they won't run out while handling these damn slices | |
2181 c->vLumBufSize= c->vLumFilterSize; | |
2182 c->vChrBufSize= c->vChrFilterSize; | |
2183 for(i=0; i<dstH; i++) | |
2184 { | |
2185 int chrI= i*c->chrDstH / dstH; | |
19181 | 2186 int nextSlice= FFMAX(c->vLumFilterPos[i ] + c->vLumFilterSize - 1, |
18861 | 2187 ((c->vChrFilterPos[chrI] + c->vChrFilterSize - 1)<<c->chrSrcVSubSample)); |
2188 | |
2189 nextSlice>>= c->chrSrcVSubSample; | |
2190 nextSlice<<= c->chrSrcVSubSample; | |
2191 if(c->vLumFilterPos[i ] + c->vLumBufSize < nextSlice) | |
2192 c->vLumBufSize= nextSlice - c->vLumFilterPos[i ]; | |
2193 if(c->vChrFilterPos[chrI] + c->vChrBufSize < (nextSlice>>c->chrSrcVSubSample)) | |
2194 c->vChrBufSize= (nextSlice>>c->chrSrcVSubSample) - c->vChrFilterPos[chrI]; | |
2195 } | |
2196 | |
2197 // allocate pixbufs (we use dynamic allocation because otherwise we would need to | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2198 c->lumPixBuf= av_malloc(c->vLumBufSize*2*sizeof(int16_t*)); |
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2199 c->chrPixBuf= av_malloc(c->vChrBufSize*2*sizeof(int16_t*)); |
18861 | 2200 //Note we need at least one pixel more at the end because of the mmx code (just in case someone wanna replace the 4000/8000) |
2201 /* align at 16 bytes for AltiVec */ | |
2202 for(i=0; i<c->vLumBufSize; i++) | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2203 c->lumPixBuf[i]= c->lumPixBuf[i+c->vLumBufSize]= av_malloc(4000); |
18861 | 2204 for(i=0; i<c->vChrBufSize; i++) |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2205 c->chrPixBuf[i]= c->chrPixBuf[i+c->vChrBufSize]= av_malloc(8000); |
18861 | 2206 |
2207 //try to avoid drawing green stuff between the right end and the stride end | |
2208 for(i=0; i<c->vLumBufSize; i++) memset(c->lumPixBuf[i], 0, 4000); | |
2209 for(i=0; i<c->vChrBufSize; i++) memset(c->chrPixBuf[i], 64, 8000); | |
2210 | |
2211 ASSERT(c->chrDstH <= dstH) | |
2212 | |
2213 if(flags&SWS_PRINT_INFO) | |
2214 { | |
2215 #ifdef DITHER1XBPP | |
2216 char *dither= " dithered"; | |
2217 #else | |
2218 char *dither= ""; | |
2219 #endif | |
2220 if(flags&SWS_FAST_BILINEAR) | |
2221 MSG_INFO("\nSwScaler: FAST_BILINEAR scaler, "); | |
2222 else if(flags&SWS_BILINEAR) | |
2223 MSG_INFO("\nSwScaler: BILINEAR scaler, "); | |
2224 else if(flags&SWS_BICUBIC) | |
2225 MSG_INFO("\nSwScaler: BICUBIC scaler, "); | |
2226 else if(flags&SWS_X) | |
2227 MSG_INFO("\nSwScaler: Experimental scaler, "); | |
2228 else if(flags&SWS_POINT) | |
2229 MSG_INFO("\nSwScaler: Nearest Neighbor / POINT scaler, "); | |
2230 else if(flags&SWS_AREA) | |
2231 MSG_INFO("\nSwScaler: Area Averageing scaler, "); | |
2232 else if(flags&SWS_BICUBLIN) | |
2233 MSG_INFO("\nSwScaler: luma BICUBIC / chroma BILINEAR scaler, "); | |
2234 else if(flags&SWS_GAUSS) | |
2235 MSG_INFO("\nSwScaler: Gaussian scaler, "); | |
2236 else if(flags&SWS_SINC) | |
2237 MSG_INFO("\nSwScaler: Sinc scaler, "); | |
2238 else if(flags&SWS_LANCZOS) | |
2239 MSG_INFO("\nSwScaler: Lanczos scaler, "); | |
2240 else if(flags&SWS_SPLINE) | |
2241 MSG_INFO("\nSwScaler: Bicubic spline scaler, "); | |
2242 else | |
2243 MSG_INFO("\nSwScaler: ehh flags invalid?! "); | |
2244 | |
2245 if(dstFormat==IMGFMT_BGR15 || dstFormat==IMGFMT_BGR16) | |
2246 MSG_INFO("from %s to%s %s ", | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2247 sws_format_name(srcFormat), dither, sws_format_name(dstFormat)); |
18861 | 2248 else |
2249 MSG_INFO("from %s to %s ", | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2250 sws_format_name(srcFormat), sws_format_name(dstFormat)); |
18861 | 2251 |
2252 if(flags & SWS_CPU_CAPS_MMX2) | |
2253 MSG_INFO("using MMX2\n"); | |
2254 else if(flags & SWS_CPU_CAPS_3DNOW) | |
2255 MSG_INFO("using 3DNOW\n"); | |
2256 else if(flags & SWS_CPU_CAPS_MMX) | |
2257 MSG_INFO("using MMX\n"); | |
2258 else if(flags & SWS_CPU_CAPS_ALTIVEC) | |
2259 MSG_INFO("using AltiVec\n"); | |
2260 else | |
2261 MSG_INFO("using C\n"); | |
2262 } | |
2263 | |
2264 if(flags & SWS_PRINT_INFO) | |
2265 { | |
2266 if(flags & SWS_CPU_CAPS_MMX) | |
2267 { | |
2268 if(c->canMMX2BeUsed && (flags&SWS_FAST_BILINEAR)) | |
2269 MSG_V("SwScaler: using FAST_BILINEAR MMX2 scaler for horizontal scaling\n"); | |
2270 else | |
2271 { | |
2272 if(c->hLumFilterSize==4) | |
2273 MSG_V("SwScaler: using 4-tap MMX scaler for horizontal luminance scaling\n"); | |
2274 else if(c->hLumFilterSize==8) | |
2275 MSG_V("SwScaler: using 8-tap MMX scaler for horizontal luminance scaling\n"); | |
2276 else | |
2277 MSG_V("SwScaler: using n-tap MMX scaler for horizontal luminance scaling\n"); | |
2278 | |
2279 if(c->hChrFilterSize==4) | |
2280 MSG_V("SwScaler: using 4-tap MMX scaler for horizontal chrominance scaling\n"); | |
2281 else if(c->hChrFilterSize==8) | |
2282 MSG_V("SwScaler: using 8-tap MMX scaler for horizontal chrominance scaling\n"); | |
2283 else | |
2284 MSG_V("SwScaler: using n-tap MMX scaler for horizontal chrominance scaling\n"); | |
2285 } | |
2286 } | |
2287 else | |
2288 { | |
2289 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
2290 MSG_V("SwScaler: using X86-Asm scaler for horizontal scaling\n"); | |
2291 #else | |
2292 if(flags & SWS_FAST_BILINEAR) | |
2293 MSG_V("SwScaler: using FAST_BILINEAR C scaler for horizontal scaling\n"); | |
2294 else | |
2295 MSG_V("SwScaler: using C scaler for horizontal scaling\n"); | |
2296 #endif | |
2297 } | |
2298 if(isPlanarYUV(dstFormat)) | |
2299 { | |
2300 if(c->vLumFilterSize==1) | |
2301 MSG_V("SwScaler: using 1-tap %s \"scaler\" for vertical scaling (YV12 like)\n", (flags & SWS_CPU_CAPS_MMX) ? "MMX" : "C"); | |
2302 else | |
2303 MSG_V("SwScaler: using n-tap %s scaler for vertical scaling (YV12 like)\n", (flags & SWS_CPU_CAPS_MMX) ? "MMX" : "C"); | |
2304 } | |
2305 else | |
2306 { | |
2307 if(c->vLumFilterSize==1 && c->vChrFilterSize==2) | |
2308 MSG_V("SwScaler: using 1-tap %s \"scaler\" for vertical luminance scaling (BGR)\n" | |
2309 "SwScaler: 2-tap scaler for vertical chrominance scaling (BGR)\n",(flags & SWS_CPU_CAPS_MMX) ? "MMX" : "C"); | |
2310 else if(c->vLumFilterSize==2 && c->vChrFilterSize==2) | |
2311 MSG_V("SwScaler: using 2-tap linear %s scaler for vertical scaling (BGR)\n", (flags & SWS_CPU_CAPS_MMX) ? "MMX" : "C"); | |
2312 else | |
2313 MSG_V("SwScaler: using n-tap %s scaler for vertical scaling (BGR)\n", (flags & SWS_CPU_CAPS_MMX) ? "MMX" : "C"); | |
2314 } | |
2315 | |
2316 if(dstFormat==IMGFMT_BGR24) | |
2317 MSG_V("SwScaler: using %s YV12->BGR24 Converter\n", | |
2318 (flags & SWS_CPU_CAPS_MMX2) ? "MMX2" : ((flags & SWS_CPU_CAPS_MMX) ? "MMX" : "C")); | |
2319 else if(dstFormat==IMGFMT_BGR32) | |
2320 MSG_V("SwScaler: using %s YV12->BGR32 Converter\n", (flags & SWS_CPU_CAPS_MMX) ? "MMX" : "C"); | |
2321 else if(dstFormat==IMGFMT_BGR16) | |
2322 MSG_V("SwScaler: using %s YV12->BGR16 Converter\n", (flags & SWS_CPU_CAPS_MMX) ? "MMX" : "C"); | |
2323 else if(dstFormat==IMGFMT_BGR15) | |
2324 MSG_V("SwScaler: using %s YV12->BGR15 Converter\n", (flags & SWS_CPU_CAPS_MMX) ? "MMX" : "C"); | |
2325 | |
2326 MSG_V("SwScaler: %dx%d -> %dx%d\n", srcW, srcH, dstW, dstH); | |
2327 } | |
2328 if(flags & SWS_PRINT_INFO) | |
2329 { | |
2330 MSG_DBG2("SwScaler:Lum srcW=%d srcH=%d dstW=%d dstH=%d xInc=%d yInc=%d\n", | |
2331 c->srcW, c->srcH, c->dstW, c->dstH, c->lumXInc, c->lumYInc); | |
2332 MSG_DBG2("SwScaler:Chr srcW=%d srcH=%d dstW=%d dstH=%d xInc=%d yInc=%d\n", | |
2333 c->chrSrcW, c->chrSrcH, c->chrDstW, c->chrDstH, c->chrXInc, c->chrYInc); | |
2334 } | |
2335 | |
2336 c->swScale= getSwsFunc(flags); | |
2337 return c; | |
2338 } | |
2339 | |
2340 /** | |
2341 * swscale warper, so we don't need to export the SwsContext. | |
2342 * assumes planar YUV to be in YUV order instead of YVU | |
2343 */ | |
2344 int sws_scale_ordered(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
2345 int srcSliceH, uint8_t* dst[], int dstStride[]){ | |
2346 if (c->sliceDir == 0 && srcSliceY != 0 && srcSliceY + srcSliceH != c->srcH) { | |
2347 MSG_ERR("swScaler: slices start in the middle!\n"); | |
2348 return 0; | |
2349 } | |
2350 if (c->sliceDir == 0) { | |
2351 if (srcSliceY == 0) c->sliceDir = 1; else c->sliceDir = -1; | |
2352 } | |
2353 | |
2354 // copy strides, so they can safely be modified | |
2355 if (c->sliceDir == 1) { | |
2356 // slices go from top to bottom | |
2357 int srcStride2[3]= {srcStride[0], srcStride[1], srcStride[2]}; | |
2358 int dstStride2[3]= {dstStride[0], dstStride[1], dstStride[2]}; | |
2359 return c->swScale(c, src, srcStride2, srcSliceY, srcSliceH, dst, dstStride2); | |
2360 } else { | |
2361 // slices go from bottom to top => we flip the image internally | |
2362 uint8_t* src2[3]= {src[0] + (srcSliceH-1)*srcStride[0], | |
2363 src[1] + ((srcSliceH>>c->chrSrcVSubSample)-1)*srcStride[1], | |
2364 src[2] + ((srcSliceH>>c->chrSrcVSubSample)-1)*srcStride[2] | |
2365 }; | |
2366 uint8_t* dst2[3]= {dst[0] + (c->dstH-1)*dstStride[0], | |
2367 dst[1] + ((c->dstH>>c->chrDstVSubSample)-1)*dstStride[1], | |
2368 dst[2] + ((c->dstH>>c->chrDstVSubSample)-1)*dstStride[2]}; | |
2369 int srcStride2[3]= {-srcStride[0], -srcStride[1], -srcStride[2]}; | |
2370 int dstStride2[3]= {-dstStride[0], -dstStride[1], -dstStride[2]}; | |
2371 | |
2372 return c->swScale(c, src2, srcStride2, c->srcH-srcSliceY-srcSliceH, srcSliceH, dst2, dstStride2); | |
2373 } | |
2374 } | |
2375 | |
2376 /** | |
2377 * swscale warper, so we don't need to export the SwsContext | |
2378 */ | |
2379 int sws_scale(SwsContext *c, uint8_t* srcParam[], int srcStrideParam[], int srcSliceY, | |
2380 int srcSliceH, uint8_t* dstParam[], int dstStrideParam[]){ | |
2381 int srcStride[3]; | |
2382 int dstStride[3]; | |
2383 uint8_t *src[3]; | |
2384 uint8_t *dst[3]; | |
2385 sws_orderYUV(c->origSrcFormat, src, srcStride, srcParam, srcStrideParam); | |
2386 sws_orderYUV(c->origDstFormat, dst, dstStride, dstParam, dstStrideParam); | |
2387 //printf("sws: slice %d %d\n", srcSliceY, srcSliceH); | |
2388 | |
2389 return c->swScale(c, src, srcStride, srcSliceY, srcSliceH, dst, dstStride); | |
2390 } | |
2391 | |
2392 SwsFilter *sws_getDefaultFilter(float lumaGBlur, float chromaGBlur, | |
2393 float lumaSharpen, float chromaSharpen, | |
2394 float chromaHShift, float chromaVShift, | |
2395 int verbose) | |
2396 { | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2397 SwsFilter *filter= av_malloc(sizeof(SwsFilter)); |
18861 | 2398 |
2399 if(lumaGBlur!=0.0){ | |
2400 filter->lumH= sws_getGaussianVec(lumaGBlur, 3.0); | |
2401 filter->lumV= sws_getGaussianVec(lumaGBlur, 3.0); | |
2402 }else{ | |
2403 filter->lumH= sws_getIdentityVec(); | |
2404 filter->lumV= sws_getIdentityVec(); | |
2405 } | |
2406 | |
2407 if(chromaGBlur!=0.0){ | |
2408 filter->chrH= sws_getGaussianVec(chromaGBlur, 3.0); | |
2409 filter->chrV= sws_getGaussianVec(chromaGBlur, 3.0); | |
2410 }else{ | |
2411 filter->chrH= sws_getIdentityVec(); | |
2412 filter->chrV= sws_getIdentityVec(); | |
2413 } | |
2414 | |
2415 if(chromaSharpen!=0.0){ | |
2416 SwsVector *id= sws_getIdentityVec(); | |
2417 sws_scaleVec(filter->chrH, -chromaSharpen); | |
2418 sws_scaleVec(filter->chrV, -chromaSharpen); | |
2419 sws_addVec(filter->chrH, id); | |
2420 sws_addVec(filter->chrV, id); | |
2421 sws_freeVec(id); | |
2422 } | |
2423 | |
2424 if(lumaSharpen!=0.0){ | |
2425 SwsVector *id= sws_getIdentityVec(); | |
2426 sws_scaleVec(filter->lumH, -lumaSharpen); | |
2427 sws_scaleVec(filter->lumV, -lumaSharpen); | |
2428 sws_addVec(filter->lumH, id); | |
2429 sws_addVec(filter->lumV, id); | |
2430 sws_freeVec(id); | |
2431 } | |
2432 | |
2433 if(chromaHShift != 0.0) | |
2434 sws_shiftVec(filter->chrH, (int)(chromaHShift+0.5)); | |
2435 | |
2436 if(chromaVShift != 0.0) | |
2437 sws_shiftVec(filter->chrV, (int)(chromaVShift+0.5)); | |
2438 | |
2439 sws_normalizeVec(filter->chrH, 1.0); | |
2440 sws_normalizeVec(filter->chrV, 1.0); | |
2441 sws_normalizeVec(filter->lumH, 1.0); | |
2442 sws_normalizeVec(filter->lumV, 1.0); | |
2443 | |
2444 if(verbose) sws_printVec(filter->chrH); | |
2445 if(verbose) sws_printVec(filter->lumH); | |
2446 | |
2447 return filter; | |
2448 } | |
2449 | |
2450 /** | |
2451 * returns a normalized gaussian curve used to filter stuff | |
2452 * quality=3 is high quality, lowwer is lowwer quality | |
2453 */ | |
2454 SwsVector *sws_getGaussianVec(double variance, double quality){ | |
2455 const int length= (int)(variance*quality + 0.5) | 1; | |
2456 int i; | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2457 double *coeff= av_malloc(length*sizeof(double)); |
18861 | 2458 double middle= (length-1)*0.5; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2459 SwsVector *vec= av_malloc(sizeof(SwsVector)); |
18861 | 2460 |
2461 vec->coeff= coeff; | |
2462 vec->length= length; | |
2463 | |
2464 for(i=0; i<length; i++) | |
2465 { | |
2466 double dist= i-middle; | |
2467 coeff[i]= exp( -dist*dist/(2*variance*variance) ) / sqrt(2*variance*PI); | |
2468 } | |
2469 | |
2470 sws_normalizeVec(vec, 1.0); | |
2471 | |
2472 return vec; | |
2473 } | |
2474 | |
2475 SwsVector *sws_getConstVec(double c, int length){ | |
2476 int i; | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2477 double *coeff= av_malloc(length*sizeof(double)); |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2478 SwsVector *vec= av_malloc(sizeof(SwsVector)); |
18861 | 2479 |
2480 vec->coeff= coeff; | |
2481 vec->length= length; | |
2482 | |
2483 for(i=0; i<length; i++) | |
2484 coeff[i]= c; | |
2485 | |
2486 return vec; | |
2487 } | |
2488 | |
2489 | |
2490 SwsVector *sws_getIdentityVec(void){ | |
2491 return sws_getConstVec(1.0, 1); | |
2492 } | |
2493 | |
2494 double sws_dcVec(SwsVector *a){ | |
2495 int i; | |
2496 double sum=0; | |
2497 | |
2498 for(i=0; i<a->length; i++) | |
2499 sum+= a->coeff[i]; | |
2500 | |
2501 return sum; | |
2502 } | |
2503 | |
2504 void sws_scaleVec(SwsVector *a, double scalar){ | |
2505 int i; | |
2506 | |
2507 for(i=0; i<a->length; i++) | |
2508 a->coeff[i]*= scalar; | |
2509 } | |
2510 | |
2511 void sws_normalizeVec(SwsVector *a, double height){ | |
2512 sws_scaleVec(a, height/sws_dcVec(a)); | |
2513 } | |
2514 | |
2515 static SwsVector *sws_getConvVec(SwsVector *a, SwsVector *b){ | |
2516 int length= a->length + b->length - 1; | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2517 double *coeff= av_malloc(length*sizeof(double)); |
18861 | 2518 int i, j; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2519 SwsVector *vec= av_malloc(sizeof(SwsVector)); |
18861 | 2520 |
2521 vec->coeff= coeff; | |
2522 vec->length= length; | |
2523 | |
2524 for(i=0; i<length; i++) coeff[i]= 0.0; | |
2525 | |
2526 for(i=0; i<a->length; i++) | |
2527 { | |
2528 for(j=0; j<b->length; j++) | |
2529 { | |
2530 coeff[i+j]+= a->coeff[i]*b->coeff[j]; | |
2531 } | |
2532 } | |
2533 | |
2534 return vec; | |
2535 } | |
2536 | |
2537 static SwsVector *sws_sumVec(SwsVector *a, SwsVector *b){ | |
19181 | 2538 int length= FFMAX(a->length, b->length); |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2539 double *coeff= av_malloc(length*sizeof(double)); |
18861 | 2540 int i; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2541 SwsVector *vec= av_malloc(sizeof(SwsVector)); |
18861 | 2542 |
2543 vec->coeff= coeff; | |
2544 vec->length= length; | |
2545 | |
2546 for(i=0; i<length; i++) coeff[i]= 0.0; | |
2547 | |
2548 for(i=0; i<a->length; i++) coeff[i + (length-1)/2 - (a->length-1)/2]+= a->coeff[i]; | |
2549 for(i=0; i<b->length; i++) coeff[i + (length-1)/2 - (b->length-1)/2]+= b->coeff[i]; | |
2550 | |
2551 return vec; | |
2552 } | |
2553 | |
2554 static SwsVector *sws_diffVec(SwsVector *a, SwsVector *b){ | |
19181 | 2555 int length= FFMAX(a->length, b->length); |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2556 double *coeff= av_malloc(length*sizeof(double)); |
18861 | 2557 int i; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2558 SwsVector *vec= av_malloc(sizeof(SwsVector)); |
18861 | 2559 |
2560 vec->coeff= coeff; | |
2561 vec->length= length; | |
2562 | |
2563 for(i=0; i<length; i++) coeff[i]= 0.0; | |
2564 | |
2565 for(i=0; i<a->length; i++) coeff[i + (length-1)/2 - (a->length-1)/2]+= a->coeff[i]; | |
2566 for(i=0; i<b->length; i++) coeff[i + (length-1)/2 - (b->length-1)/2]-= b->coeff[i]; | |
2567 | |
2568 return vec; | |
2569 } | |
2570 | |
2571 /* shift left / or right if "shift" is negative */ | |
2572 static SwsVector *sws_getShiftedVec(SwsVector *a, int shift){ | |
2573 int length= a->length + ABS(shift)*2; | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2574 double *coeff= av_malloc(length*sizeof(double)); |
18861 | 2575 int i; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2576 SwsVector *vec= av_malloc(sizeof(SwsVector)); |
18861 | 2577 |
2578 vec->coeff= coeff; | |
2579 vec->length= length; | |
2580 | |
2581 for(i=0; i<length; i++) coeff[i]= 0.0; | |
2582 | |
2583 for(i=0; i<a->length; i++) | |
2584 { | |
2585 coeff[i + (length-1)/2 - (a->length-1)/2 - shift]= a->coeff[i]; | |
2586 } | |
2587 | |
2588 return vec; | |
2589 } | |
2590 | |
2591 void sws_shiftVec(SwsVector *a, int shift){ | |
2592 SwsVector *shifted= sws_getShiftedVec(a, shift); | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2593 av_free(a->coeff); |
18861 | 2594 a->coeff= shifted->coeff; |
2595 a->length= shifted->length; | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2596 av_free(shifted); |
18861 | 2597 } |
2598 | |
2599 void sws_addVec(SwsVector *a, SwsVector *b){ | |
2600 SwsVector *sum= sws_sumVec(a, b); | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2601 av_free(a->coeff); |
18861 | 2602 a->coeff= sum->coeff; |
2603 a->length= sum->length; | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2604 av_free(sum); |
18861 | 2605 } |
2606 | |
2607 void sws_subVec(SwsVector *a, SwsVector *b){ | |
2608 SwsVector *diff= sws_diffVec(a, b); | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2609 av_free(a->coeff); |
18861 | 2610 a->coeff= diff->coeff; |
2611 a->length= diff->length; | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2612 av_free(diff); |
18861 | 2613 } |
2614 | |
2615 void sws_convVec(SwsVector *a, SwsVector *b){ | |
2616 SwsVector *conv= sws_getConvVec(a, b); | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2617 av_free(a->coeff); |
18861 | 2618 a->coeff= conv->coeff; |
2619 a->length= conv->length; | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2620 av_free(conv); |
18861 | 2621 } |
2622 | |
2623 SwsVector *sws_cloneVec(SwsVector *a){ | |
19168
624173ae90b9
Missing part of the malloc -> av_malloc patch: memalign must be replaced as well!
reimar
parents:
19143
diff
changeset
|
2624 double *coeff= av_malloc(a->length*sizeof(double)); |
18861 | 2625 int i; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2626 SwsVector *vec= av_malloc(sizeof(SwsVector)); |
18861 | 2627 |
2628 vec->coeff= coeff; | |
2629 vec->length= a->length; | |
2630 | |
2631 for(i=0; i<a->length; i++) coeff[i]= a->coeff[i]; | |
2632 | |
2633 return vec; | |
2634 } | |
2635 | |
2636 void sws_printVec(SwsVector *a){ | |
2637 int i; | |
2638 double max=0; | |
2639 double min=0; | |
2640 double range; | |
2641 | |
2642 for(i=0; i<a->length; i++) | |
2643 if(a->coeff[i]>max) max= a->coeff[i]; | |
2644 | |
2645 for(i=0; i<a->length; i++) | |
2646 if(a->coeff[i]<min) min= a->coeff[i]; | |
2647 | |
2648 range= max - min; | |
2649 | |
2650 for(i=0; i<a->length; i++) | |
2651 { | |
2652 int x= (int)((a->coeff[i]-min)*60.0/range +0.5); | |
2653 MSG_DBG2("%1.3f ", a->coeff[i]); | |
2654 for(;x>0; x--) MSG_DBG2(" "); | |
2655 MSG_DBG2("|\n"); | |
2656 } | |
2657 } | |
2658 | |
2659 void sws_freeVec(SwsVector *a){ | |
2660 if(!a) return; | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2661 av_free(a->coeff); |
18861 | 2662 a->coeff=NULL; |
2663 a->length=0; | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2664 av_free(a); |
18861 | 2665 } |
2666 | |
2667 void sws_freeFilter(SwsFilter *filter){ | |
2668 if(!filter) return; | |
2669 | |
2670 if(filter->lumH) sws_freeVec(filter->lumH); | |
2671 if(filter->lumV) sws_freeVec(filter->lumV); | |
2672 if(filter->chrH) sws_freeVec(filter->chrH); | |
2673 if(filter->chrV) sws_freeVec(filter->chrV); | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2674 av_free(filter); |
18861 | 2675 } |
2676 | |
2677 | |
2678 void sws_freeContext(SwsContext *c){ | |
2679 int i; | |
2680 if(!c) return; | |
2681 | |
2682 if(c->lumPixBuf) | |
2683 { | |
2684 for(i=0; i<c->vLumBufSize; i++) | |
2685 { | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2686 av_free(c->lumPixBuf[i]); |
18861 | 2687 c->lumPixBuf[i]=NULL; |
2688 } | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2689 av_free(c->lumPixBuf); |
18861 | 2690 c->lumPixBuf=NULL; |
2691 } | |
2692 | |
2693 if(c->chrPixBuf) | |
2694 { | |
2695 for(i=0; i<c->vChrBufSize; i++) | |
2696 { | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2697 av_free(c->chrPixBuf[i]); |
18861 | 2698 c->chrPixBuf[i]=NULL; |
2699 } | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2700 av_free(c->chrPixBuf); |
18861 | 2701 c->chrPixBuf=NULL; |
2702 } | |
2703 | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2704 av_free(c->vLumFilter); |
18861 | 2705 c->vLumFilter = NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2706 av_free(c->vChrFilter); |
18861 | 2707 c->vChrFilter = NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2708 av_free(c->hLumFilter); |
18861 | 2709 c->hLumFilter = NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2710 av_free(c->hChrFilter); |
18861 | 2711 c->hChrFilter = NULL; |
2712 #ifdef HAVE_ALTIVEC | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2713 av_free(c->vYCoeffsBank); |
18861 | 2714 c->vYCoeffsBank = NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2715 av_free(c->vCCoeffsBank); |
18861 | 2716 c->vCCoeffsBank = NULL; |
2717 #endif | |
2718 | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2719 av_free(c->vLumFilterPos); |
18861 | 2720 c->vLumFilterPos = NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2721 av_free(c->vChrFilterPos); |
18861 | 2722 c->vChrFilterPos = NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2723 av_free(c->hLumFilterPos); |
18861 | 2724 c->hLumFilterPos = NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2725 av_free(c->hChrFilterPos); |
18861 | 2726 c->hChrFilterPos = NULL; |
2727 | |
2728 #if defined(ARCH_X86) || defined(ARCH_X86_64) | |
2729 #ifdef MAP_ANONYMOUS | |
2730 if(c->funnyYCode) munmap(c->funnyYCode, MAX_FUNNY_CODE_SIZE); | |
2731 if(c->funnyUVCode) munmap(c->funnyUVCode, MAX_FUNNY_CODE_SIZE); | |
2732 #else | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2733 av_free(c->funnyYCode); |
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2734 av_free(c->funnyUVCode); |
18861 | 2735 #endif |
2736 c->funnyYCode=NULL; | |
2737 c->funnyUVCode=NULL; | |
19206 | 2738 #endif /* defined(ARCH_X86) || defined(ARCH_X86_64) */ |
18861 | 2739 |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2740 av_free(c->lumMmx2Filter); |
18861 | 2741 c->lumMmx2Filter=NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2742 av_free(c->chrMmx2Filter); |
18861 | 2743 c->chrMmx2Filter=NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2744 av_free(c->lumMmx2FilterPos); |
18861 | 2745 c->lumMmx2FilterPos=NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2746 av_free(c->chrMmx2FilterPos); |
18861 | 2747 c->chrMmx2FilterPos=NULL; |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2748 av_free(c->yuvTable); |
18861 | 2749 c->yuvTable=NULL; |
2750 | |
19143
c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
lucabe
parents:
18861
diff
changeset
|
2751 av_free(c); |
18861 | 2752 } |
2753 |