Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
1351 lines (1191 loc) · 41.9 KB

SDL_yuv_sw.c

File metadata and controls

1351 lines (1191 loc) · 41.9 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
Jul 10, 2006
Jul 10, 2006
24
/* This is the software implementation of the YUV texture support */
Apr 26, 2001
Apr 26, 2001
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* This code was derived from code carrying the following copyright notices:
* Copyright (c) 1995 The Regents of the University of California.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without written agreement is
* hereby granted, provided that the above copyright notice and the following
* two paragraphs appear in all copies of this software.
*
* IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
* OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
* CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
* ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
* Copyright (c) 1995 Erik Corry
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without written agreement is
* hereby granted, provided that the above copyright notice and the following
* two paragraphs appear in all copies of this software.
*
* IN NO EVENT SHALL ERIK CORRY BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
* SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF
* THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF ERIK CORRY HAS BEEN ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
* ERIK CORRY SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS"
* BASIS, AND ERIK CORRY HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT,
* UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
* Portions of this software Copyright (c) 1995 Brown University.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without written agreement
* is hereby granted, provided that the above copyright notice and the
* following two paragraphs appear in all copies of this software.
*
* IN NO EVENT SHALL BROWN UNIVERSITY BE LIABLE TO ANY PARTY FOR
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
* OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF BROWN
* UNIVERSITY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* BROWN UNIVERSITY SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS"
* BASIS, AND BROWN UNIVERSITY HAS NO OBLIGATION TO PROVIDE MAINTENANCE,
* SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*/
#include "SDL_video.h"
Nov 18, 2003
Nov 18, 2003
87
#include "SDL_cpuinfo.h"
Apr 26, 2001
Apr 26, 2001
88
89
90
91
#include "SDL_stretch_c.h"
#include "SDL_yuv_sw_c.h"
Jul 10, 2006
Jul 10, 2006
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
struct SDL_SW_YUVTexture
{
SDL_Texture *texture;
Uint32 target_format;
Uint8 *pixels;
int *colortab;
Uint32 *rgb_2_pix;
void (*Display1X) (int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod);
void (*Display2X) (int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod);
/* These are just so we don't have to allocate them separately */
Uint16 pitches[3];
Uint8 *planes[3];
/* This is a temporary surface in case we have to stretch copy */
SDL_Surface *stretch;
SDL_Surface *display;
Apr 26, 2001
Apr 26, 2001
116
117
118
119
};
/* The colorspace conversion functions */
Jul 14, 2007
Jul 14, 2007
120
#if (__GNUC__ > 2) && defined(__i386__) && __OPTIMIZE__ && SDL_ASSEMBLY_ROUTINES
Jul 10, 2006
Jul 10, 2006
121
extern void Color565DitherYV12MMX1X(int *colortab, Uint32 * rgb_2_pix,
Apr 26, 2001
Apr 26, 2001
122
123
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
Jul 10, 2006
Jul 10, 2006
124
125
126
127
128
129
130
131
132
133
134
135
int rows, int cols, int mod);
extern void ColorRGBDitherYV12MMX1X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod);
#endif
static void
Color16DitherYV12Mod1X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
136
{
Jul 10, 2006
Jul 10, 2006
137
138
139
unsigned short *row1;
unsigned short *row2;
unsigned char *lum2;
Apr 26, 2001
Apr 26, 2001
140
141
142
143
144
145
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
Jul 10, 2006
Jul 10, 2006
146
row1 = (unsigned short *) out;
Apr 26, 2001
Apr 26, 2001
147
148
149
150
151
152
row2 = row1 + cols + mod;
lum2 = lum + cols;
mod += cols + mod;
y = rows / 2;
Jul 10, 2006
Jul 10, 2006
153
while (y--) {
Apr 26, 2001
Apr 26, 2001
154
x = cols_2;
Jul 10, 2006
Jul 10, 2006
155
while (x--) {
Apr 26, 2001
Apr 26, 2001
156
157
register int L;
Jul 10, 2006
Jul 10, 2006
158
159
160
161
162
163
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
++cr;
++cb;
Apr 26, 2001
Apr 26, 2001
164
165
L = *lum++;
Jul 10, 2006
Jul 10, 2006
166
167
168
*row1++ = (unsigned short) (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
169
170
L = *lum++;
Jul 10, 2006
Jul 10, 2006
171
172
173
*row1++ = (unsigned short) (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
174
175
176
177
178
/* Now, do second row. */
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
179
180
181
*row2++ = (unsigned short) (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
182
183
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
184
185
186
*row2++ = (unsigned short) (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
187
188
189
190
191
192
193
}
/*
* These values are at the start of the next line, (due
* to the ++'s above),but they need to be at the start
* of the line after that.
*/
Jul 10, 2006
Jul 10, 2006
194
lum += cols;
Apr 26, 2001
Apr 26, 2001
195
196
197
198
199
200
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
Jul 10, 2006
Jul 10, 2006
201
202
203
204
205
static void
Color24DitherYV12Mod1X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
206
207
{
unsigned int value;
Jul 10, 2006
Jul 10, 2006
208
209
210
unsigned char *row1;
unsigned char *row2;
unsigned char *lum2;
Apr 26, 2001
Apr 26, 2001
211
212
213
214
215
216
217
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
row1 = out;
Jul 10, 2006
Jul 10, 2006
218
row2 = row1 + cols * 3 + mod * 3;
Apr 26, 2001
Apr 26, 2001
219
220
221
222
223
224
lum2 = lum + cols;
mod += cols + mod;
mod *= 3;
y = rows / 2;
Jul 10, 2006
Jul 10, 2006
225
while (y--) {
Apr 26, 2001
Apr 26, 2001
226
x = cols_2;
Jul 10, 2006
Jul 10, 2006
227
while (x--) {
Apr 26, 2001
Apr 26, 2001
228
229
register int L;
Jul 10, 2006
Jul 10, 2006
230
231
232
233
234
235
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
++cr;
++cb;
Apr 26, 2001
Apr 26, 2001
236
237
L = *lum++;
Jul 10, 2006
Jul 10, 2006
238
239
240
241
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
*row1++ = (value) & 0xFF;
*row1++ = (value >> 8) & 0xFF;
Apr 26, 2001
Apr 26, 2001
242
243
244
*row1++ = (value >> 16) & 0xFF;
L = *lum++;
Jul 10, 2006
Jul 10, 2006
245
246
247
248
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
*row1++ = (value) & 0xFF;
*row1++ = (value >> 8) & 0xFF;
Apr 26, 2001
Apr 26, 2001
249
250
251
252
253
254
*row1++ = (value >> 16) & 0xFF;
/* Now, do second row. */
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
255
256
257
258
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
*row2++ = (value) & 0xFF;
*row2++ = (value >> 8) & 0xFF;
Apr 26, 2001
Apr 26, 2001
259
260
261
*row2++ = (value >> 16) & 0xFF;
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
262
263
264
265
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
*row2++ = (value) & 0xFF;
*row2++ = (value >> 8) & 0xFF;
Apr 26, 2001
Apr 26, 2001
266
267
268
269
270
271
272
273
*row2++ = (value >> 16) & 0xFF;
}
/*
* These values are at the start of the next line, (due
* to the ++'s above),but they need to be at the start
* of the line after that.
*/
Jul 10, 2006
Jul 10, 2006
274
lum += cols;
Apr 26, 2001
Apr 26, 2001
275
276
277
278
279
280
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
Jul 10, 2006
Jul 10, 2006
281
282
283
284
285
static void
Color32DitherYV12Mod1X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
286
{
Jul 10, 2006
Jul 10, 2006
287
288
289
unsigned int *row1;
unsigned int *row2;
unsigned char *lum2;
Apr 26, 2001
Apr 26, 2001
290
291
292
293
294
295
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
Jul 10, 2006
Jul 10, 2006
296
row1 = (unsigned int *) out;
Apr 26, 2001
Apr 26, 2001
297
298
299
300
301
302
row2 = row1 + cols + mod;
lum2 = lum + cols;
mod += cols + mod;
y = rows / 2;
Jul 10, 2006
Jul 10, 2006
303
while (y--) {
Apr 26, 2001
Apr 26, 2001
304
x = cols_2;
Jul 10, 2006
Jul 10, 2006
305
while (x--) {
Apr 26, 2001
Apr 26, 2001
306
307
register int L;
Jul 10, 2006
Jul 10, 2006
308
309
310
311
312
313
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
++cr;
++cb;
Apr 26, 2001
Apr 26, 2001
314
315
L = *lum++;
Jul 10, 2006
Jul 10, 2006
316
317
*row1++ = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
318
319
L = *lum++;
Jul 10, 2006
Jul 10, 2006
320
321
*row1++ = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
322
323
324
325
326
/* Now, do second row. */
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
327
328
*row2++ = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
329
330
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
331
332
*row2++ = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
333
334
335
336
337
338
339
}
/*
* These values are at the start of the next line, (due
* to the ++'s above),but they need to be at the start
* of the line after that.
*/
Jul 10, 2006
Jul 10, 2006
340
lum += cols;
Apr 26, 2001
Apr 26, 2001
341
342
343
344
345
346
347
348
349
350
351
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
/*
* In this function I make use of a nasty trick. The tables have the lower
* 16 bits replicated in the upper 16. This means I can write ints and get
* the horisontal doubling for free (almost).
*/
Jul 10, 2006
Jul 10, 2006
352
353
354
355
356
static void
Color16DitherYV12Mod2X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
357
{
Jul 10, 2006
Jul 10, 2006
358
359
360
361
unsigned int *row1 = (unsigned int *) out;
const int next_row = cols + (mod / 2);
unsigned int *row2 = row1 + 2 * next_row;
unsigned char *lum2;
Apr 26, 2001
Apr 26, 2001
362
363
364
365
366
367
368
369
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
lum2 = lum + cols;
Jul 10, 2006
Jul 10, 2006
370
mod = (next_row * 3) + (mod / 2);
Apr 26, 2001
Apr 26, 2001
371
372
y = rows / 2;
Jul 10, 2006
Jul 10, 2006
373
while (y--) {
Apr 26, 2001
Apr 26, 2001
374
x = cols_2;
Jul 10, 2006
Jul 10, 2006
375
while (x--) {
Apr 26, 2001
Apr 26, 2001
376
377
register int L;
Jul 10, 2006
Jul 10, 2006
378
379
380
381
382
383
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
++cr;
++cb;
Apr 26, 2001
Apr 26, 2001
384
385
L = *lum++;
Jul 10, 2006
Jul 10, 2006
386
387
388
row1[0] = row1[next_row] = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
389
390
391
row1++;
L = *lum++;
Jul 10, 2006
Jul 10, 2006
392
393
394
row1[0] = row1[next_row] = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
395
396
397
398
399
400
row1++;
/* Now, do second row. */
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
401
402
403
row2[0] = row2[next_row] = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
404
405
406
row2++;
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
407
408
409
row2[0] = row2[next_row] = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
410
411
412
413
414
415
416
417
row2++;
}
/*
* These values are at the start of the next line, (due
* to the ++'s above),but they need to be at the start
* of the line after that.
*/
Jul 10, 2006
Jul 10, 2006
418
lum += cols;
Apr 26, 2001
Apr 26, 2001
419
420
421
422
423
424
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
Jul 10, 2006
Jul 10, 2006
425
426
427
428
429
static void
Color24DitherYV12Mod2X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
430
431
{
unsigned int value;
Jul 10, 2006
Jul 10, 2006
432
433
434
435
unsigned char *row1 = out;
const int next_row = (cols * 2 + mod) * 3;
unsigned char *row2 = row1 + 2 * next_row;
unsigned char *lum2;
Apr 26, 2001
Apr 26, 2001
436
437
438
439
440
441
442
443
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
lum2 = lum + cols;
Jul 10, 2006
Jul 10, 2006
444
mod = next_row * 3 + mod * 3;
Apr 26, 2001
Apr 26, 2001
445
446
y = rows / 2;
Jul 10, 2006
Jul 10, 2006
447
while (y--) {
Apr 26, 2001
Apr 26, 2001
448
x = cols_2;
Jul 10, 2006
Jul 10, 2006
449
while (x--) {
Apr 26, 2001
Apr 26, 2001
450
451
register int L;
Jul 10, 2006
Jul 10, 2006
452
453
454
455
456
457
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
++cr;
++cb;
Apr 26, 2001
Apr 26, 2001
458
459
L = *lum++;
Jul 10, 2006
Jul 10, 2006
460
461
462
463
464
465
466
467
468
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
row1[0 + 0] = row1[3 + 0] = row1[next_row + 0] =
row1[next_row + 3 + 0] = (value) & 0xFF;
row1[0 + 1] = row1[3 + 1] = row1[next_row + 1] =
row1[next_row + 3 + 1] = (value >> 8) & 0xFF;
row1[0 + 2] = row1[3 + 2] = row1[next_row + 2] =
row1[next_row + 3 + 2] = (value >> 16) & 0xFF;
row1 += 2 * 3;
Apr 26, 2001
Apr 26, 2001
469
470
L = *lum++;
Jul 10, 2006
Jul 10, 2006
471
472
473
474
475
476
477
478
479
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
row1[0 + 0] = row1[3 + 0] = row1[next_row + 0] =
row1[next_row + 3 + 0] = (value) & 0xFF;
row1[0 + 1] = row1[3 + 1] = row1[next_row + 1] =
row1[next_row + 3 + 1] = (value >> 8) & 0xFF;
row1[0 + 2] = row1[3 + 2] = row1[next_row + 2] =
row1[next_row + 3 + 2] = (value >> 16) & 0xFF;
row1 += 2 * 3;
Apr 26, 2001
Apr 26, 2001
480
481
482
483
484
/* Now, do second row. */
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
485
486
487
488
489
490
491
492
493
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
row2[0 + 0] = row2[3 + 0] = row2[next_row + 0] =
row2[next_row + 3 + 0] = (value) & 0xFF;
row2[0 + 1] = row2[3 + 1] = row2[next_row + 1] =
row2[next_row + 3 + 1] = (value >> 8) & 0xFF;
row2[0 + 2] = row2[3 + 2] = row2[next_row + 2] =
row2[next_row + 3 + 2] = (value >> 16) & 0xFF;
row2 += 2 * 3;
Apr 26, 2001
Apr 26, 2001
494
495
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
496
497
498
499
500
501
502
503
504
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
row2[0 + 0] = row2[3 + 0] = row2[next_row + 0] =
row2[next_row + 3 + 0] = (value) & 0xFF;
row2[0 + 1] = row2[3 + 1] = row2[next_row + 1] =
row2[next_row + 3 + 1] = (value >> 8) & 0xFF;
row2[0 + 2] = row2[3 + 2] = row2[next_row + 2] =
row2[next_row + 3 + 2] = (value >> 16) & 0xFF;
row2 += 2 * 3;
Apr 26, 2001
Apr 26, 2001
505
506
507
508
509
510
511
}
/*
* These values are at the start of the next line, (due
* to the ++'s above),but they need to be at the start
* of the line after that.
*/
Jul 10, 2006
Jul 10, 2006
512
lum += cols;
Apr 26, 2001
Apr 26, 2001
513
514
515
516
517
518
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
Jul 10, 2006
Jul 10, 2006
519
520
521
522
523
static void
Color32DitherYV12Mod2X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
524
{
Jul 10, 2006
Jul 10, 2006
525
526
527
528
unsigned int *row1 = (unsigned int *) out;
const int next_row = cols * 2 + mod;
unsigned int *row2 = row1 + 2 * next_row;
unsigned char *lum2;
Apr 26, 2001
Apr 26, 2001
529
530
531
532
533
534
535
536
537
538
539
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
lum2 = lum + cols;
mod = (next_row * 3) + mod;
y = rows / 2;
Jul 10, 2006
Jul 10, 2006
540
while (y--) {
Apr 26, 2001
Apr 26, 2001
541
x = cols_2;
Jul 10, 2006
Jul 10, 2006
542
while (x--) {
Apr 26, 2001
Apr 26, 2001
543
544
register int L;
Jul 10, 2006
Jul 10, 2006
545
546
547
548
549
550
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
++cr;
++cb;
Apr 26, 2001
Apr 26, 2001
551
552
L = *lum++;
Jul 10, 2006
Jul 10, 2006
553
554
555
row1[0] = row1[1] = row1[next_row] = row1[next_row + 1] =
(rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
556
557
558
row1 += 2;
L = *lum++;
Jul 10, 2006
Jul 10, 2006
559
560
561
row1[0] = row1[1] = row1[next_row] = row1[next_row + 1] =
(rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
562
563
564
565
566
567
row1 += 2;
/* Now, do second row. */
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
568
569
570
row2[0] = row2[1] = row2[next_row] = row2[next_row + 1] =
(rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
571
572
573
row2 += 2;
L = *lum2++;
Jul 10, 2006
Jul 10, 2006
574
575
576
row2[0] = row2[1] = row2[next_row] = row2[next_row + 1] =
(rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
577
578
579
580
581
582
583
584
row2 += 2;
}
/*
* These values are at the start of the next line, (due
* to the ++'s above),but they need to be at the start
* of the line after that.
*/
Jul 10, 2006
Jul 10, 2006
585
lum += cols;
Apr 26, 2001
Apr 26, 2001
586
587
588
589
590
591
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
Jul 10, 2006
Jul 10, 2006
592
593
594
595
596
static void
Color16DitherYUY2Mod1X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
597
{
Jul 10, 2006
Jul 10, 2006
598
unsigned short *row;
Apr 26, 2001
Apr 26, 2001
599
600
601
602
603
604
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
Jul 10, 2006
Jul 10, 2006
605
row = (unsigned short *) out;
Apr 26, 2001
Apr 26, 2001
606
607
y = rows;
Jul 10, 2006
Jul 10, 2006
608
while (y--) {
Apr 26, 2001
Apr 26, 2001
609
x = cols_2;
Jul 10, 2006
Jul 10, 2006
610
while (x--) {
Apr 26, 2001
Apr 26, 2001
611
612
register int L;
Jul 10, 2006
Jul 10, 2006
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
cr += 4;
cb += 4;
L = *lum;
lum += 2;
*row++ = (unsigned short) (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
L = *lum;
lum += 2;
*row++ = (unsigned short) (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
631
632
633
634
635
636
637
}
row += mod;
}
}
Jul 10, 2006
Jul 10, 2006
638
639
640
641
642
static void
Color24DitherYUY2Mod1X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
643
644
{
unsigned int value;
Jul 10, 2006
Jul 10, 2006
645
unsigned char *row;
Apr 26, 2001
Apr 26, 2001
646
647
648
649
650
651
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
Jul 10, 2006
Jul 10, 2006
652
row = (unsigned char *) out;
Apr 26, 2001
Apr 26, 2001
653
654
mod *= 3;
y = rows;
Jul 10, 2006
Jul 10, 2006
655
while (y--) {
Apr 26, 2001
Apr 26, 2001
656
x = cols_2;
Jul 10, 2006
Jul 10, 2006
657
while (x--) {
Apr 26, 2001
Apr 26, 2001
658
659
register int L;
Jul 10, 2006
Jul 10, 2006
660
661
662
663
664
665
666
667
668
669
670
671
672
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
cr += 4;
cb += 4;
L = *lum;
lum += 2;
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
*row++ = (value) & 0xFF;
*row++ = (value >> 8) & 0xFF;
Apr 26, 2001
Apr 26, 2001
673
674
*row++ = (value >> 16) & 0xFF;
Jul 10, 2006
Jul 10, 2006
675
676
677
678
679
680
L = *lum;
lum += 2;
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
*row++ = (value) & 0xFF;
*row++ = (value >> 8) & 0xFF;
Apr 26, 2001
Apr 26, 2001
681
682
683
684
685
686
687
*row++ = (value >> 16) & 0xFF;
}
row += mod;
}
}
Jul 10, 2006
Jul 10, 2006
688
689
690
691
692
static void
Color32DitherYUY2Mod1X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
693
{
Jul 10, 2006
Jul 10, 2006
694
unsigned int *row;
Apr 26, 2001
Apr 26, 2001
695
696
697
698
699
700
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
Jul 10, 2006
Jul 10, 2006
701
row = (unsigned int *) out;
Apr 26, 2001
Apr 26, 2001
702
y = rows;
Jul 10, 2006
Jul 10, 2006
703
while (y--) {
Apr 26, 2001
Apr 26, 2001
704
x = cols_2;
Jul 10, 2006
Jul 10, 2006
705
while (x--) {
Apr 26, 2001
Apr 26, 2001
706
707
register int L;
Jul 10, 2006
Jul 10, 2006
708
709
710
711
712
713
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
cr += 4;
cb += 4;
Apr 26, 2001
Apr 26, 2001
714
Jul 10, 2006
Jul 10, 2006
715
716
717
718
L = *lum;
lum += 2;
*row++ = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
719
Jul 10, 2006
Jul 10, 2006
720
721
722
723
L = *lum;
lum += 2;
*row++ = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
724
725
726
727
728
729
730
731
732
733
734
735
}
row += mod;
}
}
/*
* In this function I make use of a nasty trick. The tables have the lower
* 16 bits replicated in the upper 16. This means I can write ints and get
* the horisontal doubling for free (almost).
*/
Jul 10, 2006
Jul 10, 2006
736
737
738
739
740
static void
Color16DitherYUY2Mod2X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
741
{
Jul 10, 2006
Jul 10, 2006
742
743
unsigned int *row = (unsigned int *) out;
const int next_row = cols + (mod / 2);
Apr 26, 2001
Apr 26, 2001
744
745
746
747
748
749
750
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
y = rows;
Jul 10, 2006
Jul 10, 2006
751
while (y--) {
Apr 26, 2001
Apr 26, 2001
752
x = cols_2;
Jul 10, 2006
Jul 10, 2006
753
while (x--) {
Apr 26, 2001
Apr 26, 2001
754
755
register int L;
Jul 10, 2006
Jul 10, 2006
756
757
758
759
760
761
762
763
764
765
766
767
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
cr += 4;
cb += 4;
L = *lum;
lum += 2;
row[0] = row[next_row] = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
768
769
row++;
Jul 10, 2006
Jul 10, 2006
770
771
772
773
774
L = *lum;
lum += 2;
row[0] = row[next_row] = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] |
rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
775
776
777
778
779
780
781
row++;
}
row += next_row;
}
}
Jul 10, 2006
Jul 10, 2006
782
783
784
785
786
static void
Color24DitherYUY2Mod2X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
787
788
{
unsigned int value;
Jul 10, 2006
Jul 10, 2006
789
790
unsigned char *row = out;
const int next_row = (cols * 2 + mod) * 3;
Apr 26, 2001
Apr 26, 2001
791
792
793
794
795
796
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
y = rows;
Jul 10, 2006
Jul 10, 2006
797
while (y--) {
Apr 26, 2001
Apr 26, 2001
798
x = cols_2;
Jul 10, 2006
Jul 10, 2006
799
while (x--) {
Apr 26, 2001
Apr 26, 2001
800
801
register int L;
Jul 10, 2006
Jul 10, 2006
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
cr += 4;
cb += 4;
L = *lum;
lum += 2;
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
row[0 + 0] = row[3 + 0] = row[next_row + 0] =
row[next_row + 3 + 0] = (value) & 0xFF;
row[0 + 1] = row[3 + 1] = row[next_row + 1] =
row[next_row + 3 + 1] = (value >> 8) & 0xFF;
row[0 + 2] = row[3 + 2] = row[next_row + 2] =
row[next_row + 3 + 2] = (value >> 16) & 0xFF;
row += 2 * 3;
L = *lum;
lum += 2;
value = (rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
row[0 + 0] = row[3 + 0] = row[next_row + 0] =
row[next_row + 3 + 0] = (value) & 0xFF;
row[0 + 1] = row[3 + 1] = row[next_row + 1] =
row[next_row + 3 + 1] = (value >> 8) & 0xFF;
row[0 + 2] = row[3 + 2] = row[next_row + 2] =
row[next_row + 3 + 2] = (value >> 16) & 0xFF;
row += 2 * 3;
Apr 26, 2001
Apr 26, 2001
832
833
834
835
836
837
}
row += next_row;
}
}
Jul 10, 2006
Jul 10, 2006
838
839
840
841
842
static void
Color32DitherYUY2Mod2X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
int rows, int cols, int mod)
Apr 26, 2001
Apr 26, 2001
843
{
Jul 10, 2006
Jul 10, 2006
844
845
unsigned int *row = (unsigned int *) out;
const int next_row = cols * 2 + mod;
Apr 26, 2001
Apr 26, 2001
846
847
848
849
850
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
Jul 10, 2006
Jul 10, 2006
851
mod += mod;
Apr 26, 2001
Apr 26, 2001
852
y = rows;
Jul 10, 2006
Jul 10, 2006
853
while (y--) {
Apr 26, 2001
Apr 26, 2001
854
x = cols_2;
Jul 10, 2006
Jul 10, 2006
855
while (x--) {
Apr 26, 2001
Apr 26, 2001
856
857
register int L;
Jul 10, 2006
Jul 10, 2006
858
859
860
861
862
863
864
865
866
867
868
869
cr_r = 0 * 768 + 256 + colortab[*cr + 0 * 256];
crb_g = 1 * 768 + 256 + colortab[*cr + 1 * 256]
+ colortab[*cb + 2 * 256];
cb_b = 2 * 768 + 256 + colortab[*cb + 3 * 256];
cr += 4;
cb += 4;
L = *lum;
lum += 2;
row[0] = row[1] = row[next_row] = row[next_row + 1] =
(rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
870
871
row += 2;
Jul 10, 2006
Jul 10, 2006
872
873
874
875
876
L = *lum;
lum += 2;
row[0] = row[1] = row[next_row] = row[next_row + 1] =
(rgb_2_pix[L + cr_r] |
rgb_2_pix[L + crb_g] | rgb_2_pix[L + cb_b]);
Apr 26, 2001
Apr 26, 2001
877
878
879
880
881
882
883
884
885
886
887
888
889
row += 2;
}
row += next_row;
}
}
/*
* How many 1 bits are there in the Uint32.
* Low performance, do not call often.
*/
Jul 10, 2006
Jul 10, 2006
890
891
static int
number_of_bits_set(Uint32 a)
Apr 26, 2001
Apr 26, 2001
892
{
Jul 10, 2006
Jul 10, 2006
893
894
895
896
897
if (!a)
return 0;
if (a & 1)
return 1 + number_of_bits_set(a >> 1);
return (number_of_bits_set(a >> 1));
Apr 26, 2001
Apr 26, 2001
898
899
900
901
902
903
}
/*
* How many 0 bits are there at least significant end of Uint32.
* Low performance, do not call often.
*/
Jul 10, 2006
Jul 10, 2006
904
905
static int
free_bits_at_bottom(Uint32 a)
Apr 26, 2001
Apr 26, 2001
906
{
Jul 10, 2006
Jul 10, 2006
907
908
909
910
911
912
/* assume char is 8 bits */
if (!a)
return sizeof(Uint32) * 8;
if (((Sint32) a) & 1l)
return 0;
return 1 + free_bits_at_bottom(a >> 1);
Apr 26, 2001
Apr 26, 2001
913
914
}
Jul 10, 2006
Jul 10, 2006
915
916
static int
SDL_SW_SetupYUVDisplay(SDL_SW_YUVTexture * swdata, Uint32 target_format)
Apr 26, 2001
Apr 26, 2001
917
{
Jul 10, 2006
Jul 10, 2006
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
Uint32 *r_2_pix_alloc;
Uint32 *g_2_pix_alloc;
Uint32 *b_2_pix_alloc;
int i;
int bpp;
Uint32 Rmask, Gmask, Bmask, Amask;
if (!SDL_PixelFormatEnumToMasks
(target_format, &bpp, &Rmask, &Gmask, &Bmask, &Amask) || bpp < 15) {
SDL_SetError("Unsupported YUV destination format");
return -1;
}
swdata->target_format = target_format;
r_2_pix_alloc = &swdata->rgb_2_pix[0 * 768];
g_2_pix_alloc = &swdata->rgb_2_pix[1 * 768];
b_2_pix_alloc = &swdata->rgb_2_pix[2 * 768];
/*
* Set up entries 0-255 in rgb-to-pixel value tables.
*/
for (i = 0; i < 256; ++i) {
r_2_pix_alloc[i + 256] = i >> (8 - number_of_bits_set(Rmask));
r_2_pix_alloc[i + 256] <<= free_bits_at_bottom(Rmask);
g_2_pix_alloc[i + 256] = i >> (8 - number_of_bits_set(Gmask));
g_2_pix_alloc[i + 256] <<= free_bits_at_bottom(Gmask);
b_2_pix_alloc[i + 256] = i >> (8 - number_of_bits_set(Bmask));
b_2_pix_alloc[i + 256] <<= free_bits_at_bottom(Bmask);
}
/*
* If we have 16-bit output depth, then we double the value
* in the top word. This means that we can write out both
* pixels in the pixel doubling mode with one op. It is
* harmless in the normal case as storing a 32-bit value
* through a short pointer will lose the top bits anyway.
*/
if (SDL_BYTESPERPIXEL(target_format) == 2) {
for (i = 0; i < 256; ++i) {
r_2_pix_alloc[i + 256] |= (r_2_pix_alloc[i + 256]) << 16;
g_2_pix_alloc[i + 256] |= (g_2_pix_alloc[i + 256]) << 16;
b_2_pix_alloc[i + 256] |= (b_2_pix_alloc[i + 256]) << 16;
}
}
/*
* Spread out the values we have to the rest of the array so that
* we do not need to check for overflow.
*/
for (i = 0; i < 256; ++i) {
r_2_pix_alloc[i] = r_2_pix_alloc[256];
r_2_pix_alloc[i + 512] = r_2_pix_alloc[511];
g_2_pix_alloc[i] = g_2_pix_alloc[256];
g_2_pix_alloc[i + 512] = g_2_pix_alloc[511];
b_2_pix_alloc[i] = b_2_pix_alloc[256];
b_2_pix_alloc[i + 512] = b_2_pix_alloc[511];
}
/* You have chosen wisely... */
switch (swdata->texture->format) {
Aug 5, 2006
Aug 5, 2006
978
979
case SDL_PIXELFORMAT_YV12:
case SDL_PIXELFORMAT_IYUV:
Jul 10, 2006
Jul 10, 2006
980
if (SDL_BYTESPERPIXEL(target_format) == 2) {
Jul 14, 2007
Jul 14, 2007
981
#if (__GNUC__ > 2) && defined(__i386__) && __OPTIMIZE__ && SDL_ASSEMBLY_ROUTINES
Jul 10, 2006
Jul 10, 2006
982
983
/* inline assembly functions */
if (SDL_HasMMX() && (Rmask == 0xF800) &&
Jul 11, 2007
Jul 11, 2007
984
985
(Gmask == 0x07E0) && (Bmask == 0x001F)
&& (swdata->texture->w & 15) == 0) {
Apr 26, 2001
Apr 26, 2001
986
/*printf("Using MMX 16-bit 565 dither\n");*/
Jul 10, 2006
Jul 10, 2006
987
988
swdata->Display1X = Color565DitherYV12MMX1X;
} else {
Apr 26, 2001
Apr 26, 2001
989
/*printf("Using C 16-bit dither\n");*/
Jul 10, 2006
Jul 10, 2006
990
991
swdata->Display1X = Color16DitherYV12Mod1X;
}
Apr 26, 2001
Apr 26, 2001
992
#else
Jul 10, 2006
Jul 10, 2006
993
swdata->Display1X = Color16DitherYV12Mod1X;
Apr 26, 2001
Apr 26, 2001
994
#endif
Jul 10, 2006
Jul 10, 2006
995
996
997
998
999
1000
swdata->Display2X = Color16DitherYV12Mod2X;
}
if (SDL_BYTESPERPIXEL(target_format) == 3) {
swdata->Display1X = Color24DitherYV12Mod1X;
swdata->Display2X = Color24DitherYV12Mod2X;
}