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

Latest commit

 

History

History
1303 lines (1150 loc) · 40.5 KB

SDL_yuv_sw.c

File metadata and controls

1303 lines (1150 loc) · 40.5 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
Jun 14, 2006
Jun 14, 2006
24
#if 0 /* TODO */
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
87
/* This is the software implementation of the YUV video overlay support */
/* 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
88
#include "SDL_cpuinfo.h"
Apr 26, 2001
Apr 26, 2001
89
90
91
92
93
94
#include "SDL_stretch_c.h"
#include "SDL_yuvfuncs.h"
#include "SDL_yuv_sw_c.h"
/* The functions used to manipulate software video overlays */
static struct private_yuvhwfuncs sw_yuvfuncs = {
May 28, 2006
May 28, 2006
95
96
97
98
SDL_LockYUV_SW,
SDL_UnlockYUV_SW,
SDL_DisplayYUV_SW,
SDL_FreeYUV_SW
Apr 26, 2001
Apr 26, 2001
99
100
101
};
/* RGB conversion lookup tables */
May 28, 2006
May 28, 2006
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
struct private_yuvhwdata
{
SDL_Surface *stretch;
SDL_Surface *display;
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];
Apr 26, 2001
Apr 26, 2001
121
122
123
124
125
};
/* The colorspace conversion functions */
May 28, 2006
May 28, 2006
126
#if 0 /*defined(__GNUC__) && defined(__i386__) && SDL_ASSEMBLY_ROUTINES */
May 29, 2006
May 29, 2006
127
128
129
130
131
132
133
134
extern void Color565DitherYV12MMX1X(int *colortab, Uint32 * rgb_2_pix,
unsigned char *lum, unsigned char *cr,
unsigned char *cb, unsigned char *out,
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);
May 28, 2006
May 28, 2006
135
#endif
Apr 26, 2001
Apr 26, 2001
136
May 28, 2006
May 28, 2006
137
static void
May 29, 2006
May 29, 2006
138
139
140
141
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
142
{
May 28, 2006
May 28, 2006
143
144
145
unsigned short *row1;
unsigned short *row2;
unsigned char *lum2;
Apr 26, 2001
Apr 26, 2001
146
147
148
149
150
151
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
May 28, 2006
May 28, 2006
152
row1 = (unsigned short *) out;
Apr 26, 2001
Apr 26, 2001
153
154
155
156
157
158
row2 = row1 + cols + mod;
lum2 = lum + cols;
mod += cols + mod;
y = rows / 2;
May 28, 2006
May 28, 2006
159
while (y--) {
Apr 26, 2001
Apr 26, 2001
160
x = cols_2;
May 28, 2006
May 28, 2006
161
while (x--) {
Apr 26, 2001
Apr 26, 2001
162
163
register int L;
May 28, 2006
May 28, 2006
164
165
166
167
168
169
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
170
171
L = *lum++;
May 28, 2006
May 28, 2006
172
173
174
*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
175
176
L = *lum++;
May 28, 2006
May 28, 2006
177
178
179
*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
180
181
182
183
184
/* Now, do second row. */
L = *lum2++;
May 28, 2006
May 28, 2006
185
186
187
*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
188
189
L = *lum2++;
May 28, 2006
May 28, 2006
190
191
192
*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
193
194
195
196
197
198
199
}
/*
* 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.
*/
May 28, 2006
May 28, 2006
200
lum += cols;
Apr 26, 2001
Apr 26, 2001
201
202
203
204
205
206
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
May 28, 2006
May 28, 2006
207
static void
May 29, 2006
May 29, 2006
208
209
210
211
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
212
213
{
unsigned int value;
May 28, 2006
May 28, 2006
214
215
216
unsigned char *row1;
unsigned char *row2;
unsigned char *lum2;
Apr 26, 2001
Apr 26, 2001
217
218
219
220
221
222
223
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
row1 = out;
May 28, 2006
May 28, 2006
224
row2 = row1 + cols * 3 + mod * 3;
Apr 26, 2001
Apr 26, 2001
225
226
227
228
229
230
lum2 = lum + cols;
mod += cols + mod;
mod *= 3;
y = rows / 2;
May 28, 2006
May 28, 2006
231
while (y--) {
Apr 26, 2001
Apr 26, 2001
232
x = cols_2;
May 28, 2006
May 28, 2006
233
while (x--) {
Apr 26, 2001
Apr 26, 2001
234
235
register int L;
May 28, 2006
May 28, 2006
236
237
238
239
240
241
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
242
243
L = *lum++;
May 28, 2006
May 28, 2006
244
245
246
247
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
248
249
250
*row1++ = (value >> 16) & 0xFF;
L = *lum++;
May 28, 2006
May 28, 2006
251
252
253
254
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
255
256
257
258
259
260
*row1++ = (value >> 16) & 0xFF;
/* Now, do second row. */
L = *lum2++;
May 28, 2006
May 28, 2006
261
262
263
264
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
265
266
267
*row2++ = (value >> 16) & 0xFF;
L = *lum2++;
May 28, 2006
May 28, 2006
268
269
270
271
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
272
273
274
275
276
277
278
279
*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.
*/
May 28, 2006
May 28, 2006
280
lum += cols;
Apr 26, 2001
Apr 26, 2001
281
282
283
284
285
286
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
May 28, 2006
May 28, 2006
287
static void
May 29, 2006
May 29, 2006
288
289
290
291
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
292
{
May 28, 2006
May 28, 2006
293
294
295
unsigned int *row1;
unsigned int *row2;
unsigned char *lum2;
Apr 26, 2001
Apr 26, 2001
296
297
298
299
300
301
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
May 28, 2006
May 28, 2006
302
row1 = (unsigned int *) out;
Apr 26, 2001
Apr 26, 2001
303
304
305
306
307
308
row2 = row1 + cols + mod;
lum2 = lum + cols;
mod += cols + mod;
y = rows / 2;
May 28, 2006
May 28, 2006
309
while (y--) {
Apr 26, 2001
Apr 26, 2001
310
x = cols_2;
May 28, 2006
May 28, 2006
311
while (x--) {
Apr 26, 2001
Apr 26, 2001
312
313
register int L;
May 28, 2006
May 28, 2006
314
315
316
317
318
319
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
320
321
L = *lum++;
May 28, 2006
May 28, 2006
322
323
*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
324
325
L = *lum++;
May 28, 2006
May 28, 2006
326
327
*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
328
329
330
331
332
/* Now, do second row. */
L = *lum2++;
May 28, 2006
May 28, 2006
333
334
*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
335
336
L = *lum2++;
May 28, 2006
May 28, 2006
337
338
*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
339
340
341
342
343
344
345
}
/*
* 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.
*/
May 28, 2006
May 28, 2006
346
lum += cols;
Apr 26, 2001
Apr 26, 2001
347
348
349
350
351
352
353
354
355
356
357
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).
*/
May 28, 2006
May 28, 2006
358
static void
May 29, 2006
May 29, 2006
359
360
361
362
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
363
{
May 28, 2006
May 28, 2006
364
365
366
367
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
368
369
370
371
372
373
374
375
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
lum2 = lum + cols;
May 28, 2006
May 28, 2006
376
mod = (next_row * 3) + (mod / 2);
Apr 26, 2001
Apr 26, 2001
377
378
y = rows / 2;
May 28, 2006
May 28, 2006
379
while (y--) {
Apr 26, 2001
Apr 26, 2001
380
x = cols_2;
May 28, 2006
May 28, 2006
381
while (x--) {
Apr 26, 2001
Apr 26, 2001
382
383
register int L;
May 28, 2006
May 28, 2006
384
385
386
387
388
389
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
390
391
L = *lum++;
May 28, 2006
May 28, 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
row1++;
L = *lum++;
May 28, 2006
May 28, 2006
398
399
400
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
401
402
403
404
405
406
row1++;
/* Now, do second row. */
L = *lum2++;
May 28, 2006
May 28, 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
row2++;
L = *lum2++;
May 28, 2006
May 28, 2006
413
414
415
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
416
417
418
419
420
421
422
423
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.
*/
May 28, 2006
May 28, 2006
424
lum += cols;
Apr 26, 2001
Apr 26, 2001
425
426
427
428
429
430
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
May 28, 2006
May 28, 2006
431
static void
May 29, 2006
May 29, 2006
432
433
434
435
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
436
437
{
unsigned int value;
May 28, 2006
May 28, 2006
438
439
440
441
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
442
443
444
445
446
447
448
449
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
lum2 = lum + cols;
May 28, 2006
May 28, 2006
450
mod = next_row * 3 + mod * 3;
Apr 26, 2001
Apr 26, 2001
451
452
y = rows / 2;
May 28, 2006
May 28, 2006
453
while (y--) {
Apr 26, 2001
Apr 26, 2001
454
x = cols_2;
May 28, 2006
May 28, 2006
455
while (x--) {
Apr 26, 2001
Apr 26, 2001
456
457
register int L;
May 28, 2006
May 28, 2006
458
459
460
461
462
463
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
464
465
L = *lum++;
May 28, 2006
May 28, 2006
466
467
468
469
470
471
472
473
474
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
475
476
L = *lum++;
May 28, 2006
May 28, 2006
477
478
479
480
481
482
483
484
485
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
486
487
488
489
490
/* Now, do second row. */
L = *lum2++;
May 28, 2006
May 28, 2006
491
492
493
494
495
496
497
498
499
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
500
501
L = *lum2++;
May 28, 2006
May 28, 2006
502
503
504
505
506
507
508
509
510
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
511
512
513
514
515
516
517
}
/*
* 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.
*/
May 28, 2006
May 28, 2006
518
lum += cols;
Apr 26, 2001
Apr 26, 2001
519
520
521
522
523
524
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
May 28, 2006
May 28, 2006
525
static void
May 29, 2006
May 29, 2006
526
527
528
529
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
530
{
May 28, 2006
May 28, 2006
531
532
533
534
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
535
536
537
538
539
540
541
542
543
544
545
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;
May 28, 2006
May 28, 2006
546
while (y--) {
Apr 26, 2001
Apr 26, 2001
547
x = cols_2;
May 28, 2006
May 28, 2006
548
while (x--) {
Apr 26, 2001
Apr 26, 2001
549
550
register int L;
May 28, 2006
May 28, 2006
551
552
553
554
555
556
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
557
558
L = *lum++;
May 28, 2006
May 28, 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
row1 += 2;
L = *lum++;
May 28, 2006
May 28, 2006
565
566
567
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
568
569
570
571
572
573
row1 += 2;
/* Now, do second row. */
L = *lum2++;
May 28, 2006
May 28, 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
row2 += 2;
L = *lum2++;
May 28, 2006
May 28, 2006
580
581
582
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
583
584
585
586
587
588
589
590
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.
*/
May 28, 2006
May 28, 2006
591
lum += cols;
Apr 26, 2001
Apr 26, 2001
592
593
594
595
596
597
lum2 += cols;
row1 += mod;
row2 += mod;
}
}
May 28, 2006
May 28, 2006
598
static void
May 29, 2006
May 29, 2006
599
600
601
602
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
603
{
May 28, 2006
May 28, 2006
604
unsigned short *row;
Apr 26, 2001
Apr 26, 2001
605
606
607
608
609
610
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
May 28, 2006
May 28, 2006
611
row = (unsigned short *) out;
Apr 26, 2001
Apr 26, 2001
612
613
y = rows;
May 28, 2006
May 28, 2006
614
while (y--) {
Apr 26, 2001
Apr 26, 2001
615
x = cols_2;
May 28, 2006
May 28, 2006
616
while (x--) {
Apr 26, 2001
Apr 26, 2001
617
618
register int L;
May 28, 2006
May 28, 2006
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
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
637
638
639
640
641
642
643
}
row += mod;
}
}
May 28, 2006
May 28, 2006
644
static void
May 29, 2006
May 29, 2006
645
646
647
648
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
649
650
{
unsigned int value;
May 28, 2006
May 28, 2006
651
unsigned char *row;
Apr 26, 2001
Apr 26, 2001
652
653
654
655
656
657
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
May 28, 2006
May 28, 2006
658
row = (unsigned char *) out;
Apr 26, 2001
Apr 26, 2001
659
660
mod *= 3;
y = rows;
May 28, 2006
May 28, 2006
661
while (y--) {
Apr 26, 2001
Apr 26, 2001
662
x = cols_2;
May 28, 2006
May 28, 2006
663
while (x--) {
Apr 26, 2001
Apr 26, 2001
664
665
register int L;
May 28, 2006
May 28, 2006
666
667
668
669
670
671
672
673
674
675
676
677
678
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
679
680
*row++ = (value >> 16) & 0xFF;
May 28, 2006
May 28, 2006
681
682
683
684
685
686
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
687
688
689
690
691
692
693
*row++ = (value >> 16) & 0xFF;
}
row += mod;
}
}
May 28, 2006
May 28, 2006
694
static void
May 29, 2006
May 29, 2006
695
696
697
698
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
699
{
May 28, 2006
May 28, 2006
700
unsigned int *row;
Apr 26, 2001
Apr 26, 2001
701
702
703
704
705
706
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
May 28, 2006
May 28, 2006
707
row = (unsigned int *) out;
Apr 26, 2001
Apr 26, 2001
708
y = rows;
May 28, 2006
May 28, 2006
709
while (y--) {
Apr 26, 2001
Apr 26, 2001
710
x = cols_2;
May 28, 2006
May 28, 2006
711
while (x--) {
Apr 26, 2001
Apr 26, 2001
712
713
register int L;
May 28, 2006
May 28, 2006
714
715
716
717
718
719
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
720
May 28, 2006
May 28, 2006
721
722
723
724
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
725
May 28, 2006
May 28, 2006
726
727
728
729
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
730
731
732
733
734
735
736
737
738
739
740
741
}
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).
*/
May 28, 2006
May 28, 2006
742
static void
May 29, 2006
May 29, 2006
743
744
745
746
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
747
{
May 28, 2006
May 28, 2006
748
749
unsigned int *row = (unsigned int *) out;
const int next_row = cols + (mod / 2);
Apr 26, 2001
Apr 26, 2001
750
751
752
753
754
755
756
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
y = rows;
May 28, 2006
May 28, 2006
757
while (y--) {
Apr 26, 2001
Apr 26, 2001
758
x = cols_2;
May 28, 2006
May 28, 2006
759
while (x--) {
Apr 26, 2001
Apr 26, 2001
760
761
register int L;
May 28, 2006
May 28, 2006
762
763
764
765
766
767
768
769
770
771
772
773
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
774
775
row++;
May 28, 2006
May 28, 2006
776
777
778
779
780
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
781
782
783
784
785
786
787
row++;
}
row += next_row;
}
}
May 28, 2006
May 28, 2006
788
static void
May 29, 2006
May 29, 2006
789
790
791
792
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
793
794
{
unsigned int value;
May 28, 2006
May 28, 2006
795
796
unsigned char *row = out;
const int next_row = (cols * 2 + mod) * 3;
Apr 26, 2001
Apr 26, 2001
797
798
799
800
801
802
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
y = rows;
May 28, 2006
May 28, 2006
803
while (y--) {
Apr 26, 2001
Apr 26, 2001
804
x = cols_2;
May 28, 2006
May 28, 2006
805
while (x--) {
Apr 26, 2001
Apr 26, 2001
806
807
register int L;
May 28, 2006
May 28, 2006
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
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
838
839
840
841
842
843
}
row += next_row;
}
}
May 28, 2006
May 28, 2006
844
static void
May 29, 2006
May 29, 2006
845
846
847
848
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
849
{
May 28, 2006
May 28, 2006
850
851
unsigned int *row = (unsigned int *) out;
const int next_row = cols * 2 + mod;
Apr 26, 2001
Apr 26, 2001
852
853
854
855
856
int x, y;
int cr_r;
int crb_g;
int cb_b;
int cols_2 = cols / 2;
May 28, 2006
May 28, 2006
857
mod += mod;
Apr 26, 2001
Apr 26, 2001
858
y = rows;
May 28, 2006
May 28, 2006
859
while (y--) {
Apr 26, 2001
Apr 26, 2001
860
x = cols_2;
May 28, 2006
May 28, 2006
861
while (x--) {
Apr 26, 2001
Apr 26, 2001
862
863
register int L;
May 28, 2006
May 28, 2006
864
865
866
867
868
869
870
871
872
873
874
875
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
876
877
row += 2;
May 28, 2006
May 28, 2006
878
879
880
881
882
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
883
884
885
886
887
888
889
890
891
892
893
894
895
row += 2;
}
row += next_row;
}
}
/*
* How many 1 bits are there in the Uint32.
* Low performance, do not call often.
*/
May 28, 2006
May 28, 2006
896
static int
May 29, 2006
May 29, 2006
897
number_of_bits_set(Uint32 a)
Apr 26, 2001
Apr 26, 2001
898
{
May 28, 2006
May 28, 2006
899
900
901
if (!a)
return 0;
if (a & 1)
May 29, 2006
May 29, 2006
902
903
return 1 + number_of_bits_set(a >> 1);
return (number_of_bits_set(a >> 1));
Apr 26, 2001
Apr 26, 2001
904
905
906
907
908
909
}
/*
* How many 0 bits are there at least significant end of Uint32.
* Low performance, do not call often.
*/
May 28, 2006
May 28, 2006
910
static int
May 29, 2006
May 29, 2006
911
free_bits_at_bottom(Uint32 a)
Apr 26, 2001
Apr 26, 2001
912
{
May 28, 2006
May 28, 2006
913
914
/* assume char is 8 bits */
if (!a)
May 29, 2006
May 29, 2006
915
return sizeof(Uint32) * 8;
May 28, 2006
May 28, 2006
916
917
if (((Sint32) a) & 1l)
return 0;
May 29, 2006
May 29, 2006
918
return 1 + free_bits_at_bottom(a >> 1);
Apr 26, 2001
Apr 26, 2001
919
920
921
}
May 28, 2006
May 28, 2006
922
SDL_Overlay *
May 29, 2006
May 29, 2006
923
924
SDL_CreateYUV_SW(_THIS, int width, int height, Uint32 format,
SDL_Surface * display)
Apr 26, 2001
Apr 26, 2001
925
{
May 28, 2006
May 28, 2006
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
SDL_Overlay *overlay;
struct private_yuvhwdata *swdata;
int *Cr_r_tab;
int *Cr_g_tab;
int *Cb_g_tab;
int *Cb_b_tab;
Uint32 *r_2_pix_alloc;
Uint32 *g_2_pix_alloc;
Uint32 *b_2_pix_alloc;
int i;
int CR, CB;
Uint32 Rmask, Gmask, Bmask;
/* Only RGB packed pixel conversion supported */
if ((display->format->BytesPerPixel != 2) &&
(display->format->BytesPerPixel != 3) &&
(display->format->BytesPerPixel != 4)) {
May 29, 2006
May 29, 2006
943
SDL_SetError("Can't use YUV data on non 16/24/32 bit surfaces");
May 28, 2006
May 28, 2006
944
945
946
947
948
949
950
951
952
953
954
955
return (NULL);
}
/* Verify that we support the format */
switch (format) {
case SDL_YV12_OVERLAY:
case SDL_IYUV_OVERLAY:
case SDL_YUY2_OVERLAY:
case SDL_UYVY_OVERLAY:
case SDL_YVYU_OVERLAY:
break;
default:
May 29, 2006
May 29, 2006
956
SDL_SetError("Unsupported YUV format");
May 28, 2006
May 28, 2006
957
958
959
960
return (NULL);
}
/* Create the overlay structure */
May 29, 2006
May 29, 2006
961
overlay = (SDL_Overlay *) SDL_malloc(sizeof *overlay);
May 28, 2006
May 28, 2006
962
if (overlay == NULL) {
May 29, 2006
May 29, 2006
963
SDL_OutOfMemory();
May 28, 2006
May 28, 2006
964
965
return (NULL);
}
May 29, 2006
May 29, 2006
966
SDL_memset(overlay, 0, (sizeof *overlay));
May 28, 2006
May 28, 2006
967
968
969
970
971
972
973
974
975
976
/* Fill in the basic members */
overlay->format = format;
overlay->w = width;
overlay->h = height;
/* Set up the YUV surface function structure */
overlay->hwfuncs = &sw_yuvfuncs;
/* Create the pixel data and lookup tables */
May 29, 2006
May 29, 2006
977
swdata = (struct private_yuvhwdata *) SDL_malloc(sizeof *swdata);
May 28, 2006
May 28, 2006
978
979
overlay->hwdata = swdata;
if (swdata == NULL) {
May 29, 2006
May 29, 2006
980
981
SDL_OutOfMemory();
SDL_FreeYUVOverlay(overlay);
May 28, 2006
May 28, 2006
982
983
984
985
return (NULL);
}
swdata->stretch = NULL;
swdata->display = display;
May 29, 2006
May 29, 2006
986
987
swdata->pixels = (Uint8 *) SDL_malloc(width * height * 2);
swdata->colortab = (int *) SDL_malloc(4 * 256 * sizeof(int));
May 28, 2006
May 28, 2006
988
989
990
991
Cr_r_tab = &swdata->colortab[0 * 256];
Cr_g_tab = &swdata->colortab[1 * 256];
Cb_g_tab = &swdata->colortab[2 * 256];
Cb_b_tab = &swdata->colortab[3 * 256];
May 29, 2006
May 29, 2006
992
swdata->rgb_2_pix = (Uint32 *) SDL_malloc(3 * 768 * sizeof(Uint32));
May 28, 2006
May 28, 2006
993
994
995
996
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];
if (!swdata->pixels || !swdata->colortab || !swdata->rgb_2_pix) {
May 29, 2006
May 29, 2006
997
998
SDL_OutOfMemory();
SDL_FreeYUVOverlay(overlay);
May 28, 2006
May 28, 2006
999
1000
return (NULL);
}