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

Latest commit

 

History

History
649 lines (588 loc) · 18.5 KB

testoverlay2.c

File metadata and controls

649 lines (588 loc) · 18.5 KB
 
1
2
3
4
5
6
7
/********************************************************************************
* *
* Test of the overlay used for moved pictures, test more closed to real life. *
* Running trojan moose :) Coded by Mike Gorchak. *
* *
********************************************************************************/
Jan 18, 2005
Jan 18, 2005
8
9
10
11
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
12
13
14
15
16
17
18
19
#include "SDL.h"
#define MOOSEPIC_W 64
#define MOOSEPIC_H 88
#define MOOSEFRAME_SIZE (MOOSEPIC_W * MOOSEPIC_H)
#define MOOSEFRAMES_COUNT 10
May 28, 2006
May 28, 2006
20
21
22
23
24
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
SDL_Color MooseColors[84] = {
{49, 49, 49}
, {66, 24, 0}
, {66, 33, 0}
, {66, 66, 66}
,
{66, 115, 49}
, {74, 33, 0}
, {74, 41, 16}
, {82, 33, 8}
,
{82, 41, 8}
, {82, 49, 16}
, {82, 82, 82}
, {90, 41, 8}
,
{90, 41, 16}
, {90, 57, 24}
, {99, 49, 16}
, {99, 66, 24}
,
{99, 66, 33}
, {99, 74, 33}
, {107, 57, 24}
, {107, 82, 41}
,
{115, 57, 33}
, {115, 66, 33}
, {115, 66, 41}
, {115, 74, 0}
,
{115, 90, 49}
, {115, 115, 115}
, {123, 82, 0}
, {123, 99, 57}
,
{132, 66, 41}
, {132, 74, 41}
, {132, 90, 8}
, {132, 99, 33}
,
{132, 99, 66}
, {132, 107, 66}
, {140, 74, 49}
, {140, 99, 16}
,
{140, 107, 74}
, {140, 115, 74}
, {148, 107, 24}
, {148, 115, 82}
,
{148, 123, 74}
, {148, 123, 90}
, {156, 115, 33}
, {156, 115, 90}
,
{156, 123, 82}
, {156, 132, 82}
, {156, 132, 99}
, {156, 156, 156}
,
{165, 123, 49}
, {165, 123, 90}
, {165, 132, 82}
, {165, 132, 90}
,
{165, 132, 99}
, {165, 140, 90}
, {173, 132, 57}
, {173, 132, 99}
,
{173, 140, 107}
, {173, 140, 115}
, {173, 148, 99}
, {173, 173, 173}
,
{181, 140, 74}
, {181, 148, 115}
, {181, 148, 123}
, {181, 156, 107}
,
{189, 148, 123}
, {189, 156, 82}
, {189, 156, 123}
, {189, 156, 132}
,
{189, 189, 189}
, {198, 156, 123}
, {198, 165, 132}
, {206, 165, 99}
,
{206, 165, 132}
, {206, 173, 140}
, {206, 206, 206}
, {214, 173, 115}
,
{214, 173, 140}
, {222, 181, 148}
, {222, 189, 132}
, {222, 189, 156}
,
{222, 222, 222}
, {231, 198, 165}
, {231, 231, 231}
, {239, 206, 173}
125
126
};
Sep 28, 2005
Sep 28, 2005
127
128
/* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
May 28, 2006
May 28, 2006
129
130
static void
quit (int rc)
Sep 28, 2005
Sep 28, 2005
131
{
May 28, 2006
May 28, 2006
132
133
SDL_Quit ();
exit (rc);
Sep 28, 2005
Sep 28, 2005
134
135
}
136
137
138
139
140
141
/* All RGB2YUV conversion code and some other parts of code has been taken from testoverlay.c */
/* NOTE: These RGB conversion functions are not intended for speed,
only as examples.
*/
May 28, 2006
May 28, 2006
142
143
void
RGBtoYUV (Uint8 * rgb, int *yuv, int monochrome, int luminance)
144
{
May 28, 2006
May 28, 2006
145
146
147
if (monochrome) {
#if 1 /* these are the two formulas that I found on the FourCC site... */
yuv[0] = 0.299 * rgb[0] + 0.587 * rgb[1] + 0.114 * rgb[2];
148
149
150
151
152
153
154
yuv[1] = 128;
yuv[2] = 128;
#else
yuv[0] = (0.257 * rgb[0]) + (0.504 * rgb[1]) + (0.098 * rgb[2]) + 16;
yuv[1] = 128;
yuv[2] = 128;
#endif
May 28, 2006
May 28, 2006
155
156
157
158
159
} else {
#if 1 /* these are the two formulas that I found on the FourCC site... */
yuv[0] = 0.299 * rgb[0] + 0.587 * rgb[1] + 0.114 * rgb[2];
yuv[1] = (rgb[2] - yuv[0]) * 0.565 + 128;
yuv[2] = (rgb[0] - yuv[0]) * 0.713 + 128;
160
161
162
163
164
165
166
#else
yuv[0] = (0.257 * rgb[0]) + (0.504 * rgb[1]) + (0.098 * rgb[2]) + 16;
yuv[1] = 128 - (0.148 * rgb[0]) - (0.291 * rgb[1]) + (0.439 * rgb[2]);
yuv[2] = 128 + (0.439 * rgb[0]) - (0.368 * rgb[1]) - (0.071 * rgb[2]);
#endif
}
May 28, 2006
May 28, 2006
167
168
169
170
if (luminance != 100) {
yuv[0] = yuv[0] * luminance / 100;
if (yuv[0] > 255)
yuv[0] = 255;
171
172
173
}
}
May 28, 2006
May 28, 2006
174
175
176
void
ConvertRGBtoYV12 (SDL_Surface * s, SDL_Overlay * o, int monochrome,
int luminance)
177
{
May 28, 2006
May 28, 2006
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
int x, y;
int yuv[3];
Uint8 *p, *op[3];
SDL_LockSurface (s);
SDL_LockYUVOverlay (o);
/* Convert */
for (y = 0; y < s->h && y < o->h; y++) {
p = ((Uint8 *) s->pixels) + s->pitch * y;
op[0] = o->pixels[0] + o->pitches[0] * y;
op[1] = o->pixels[1] + o->pitches[1] * (y / 2);
op[2] = o->pixels[2] + o->pitches[2] * (y / 2);
for (x = 0; x < s->w && x < o->w; x++) {
RGBtoYUV (p, yuv, monochrome, luminance);
*(op[0]++) = yuv[0];
if (x % 2 == 0 && y % 2 == 0) {
*(op[1]++) = yuv[2];
*(op[2]++) = yuv[1];
}
p += s->format->BytesPerPixel;
}
}
SDL_UnlockYUVOverlay (o);
SDL_UnlockSurface (s);
204
205
}
May 28, 2006
May 28, 2006
206
207
208
void
ConvertRGBtoIYUV (SDL_Surface * s, SDL_Overlay * o, int monochrome,
int luminance)
209
{
May 28, 2006
May 28, 2006
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
int x, y;
int yuv[3];
Uint8 *p, *op[3];
SDL_LockSurface (s);
SDL_LockYUVOverlay (o);
/* Convert */
for (y = 0; y < s->h && y < o->h; y++) {
p = ((Uint8 *) s->pixels) + s->pitch * y;
op[0] = o->pixels[0] + o->pitches[0] * y;
op[1] = o->pixels[1] + o->pitches[1] * (y / 2);
op[2] = o->pixels[2] + o->pitches[2] * (y / 2);
for (x = 0; x < s->w && x < o->w; x++) {
RGBtoYUV (p, yuv, monochrome, luminance);
*(op[0]++) = yuv[0];
if (x % 2 == 0 && y % 2 == 0) {
*(op[1]++) = yuv[1];
*(op[2]++) = yuv[2];
}
p += s->format->BytesPerPixel;
}
}
SDL_UnlockYUVOverlay (o);
SDL_UnlockSurface (s);
236
237
}
May 28, 2006
May 28, 2006
238
239
240
void
ConvertRGBtoUYVY (SDL_Surface * s, SDL_Overlay * o, int monochrome,
int luminance)
241
{
May 28, 2006
May 28, 2006
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
int x, y;
int yuv[3];
Uint8 *p, *op;
SDL_LockSurface (s);
SDL_LockYUVOverlay (o);
for (y = 0; y < s->h && y < o->h; y++) {
p = ((Uint8 *) s->pixels) + s->pitch * y;
op = o->pixels[0] + o->pitches[0] * y;
for (x = 0; x < s->w && x < o->w; x++) {
RGBtoYUV (p, yuv, monochrome, luminance);
if (x % 2 == 0) {
*(op++) = yuv[1];
*(op++) = yuv[0];
*(op++) = yuv[2];
} else
*(op++) = yuv[0];
p += s->format->BytesPerPixel;
}
}
SDL_UnlockYUVOverlay (o);
SDL_UnlockSurface (s);
267
268
}
May 28, 2006
May 28, 2006
269
270
271
void
ConvertRGBtoYVYU (SDL_Surface * s, SDL_Overlay * o, int monochrome,
int luminance)
272
{
May 28, 2006
May 28, 2006
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
int x, y;
int yuv[3];
Uint8 *p, *op;
SDL_LockSurface (s);
SDL_LockYUVOverlay (o);
for (y = 0; y < s->h && y < o->h; y++) {
p = ((Uint8 *) s->pixels) + s->pitch * y;
op = o->pixels[0] + o->pitches[0] * y;
for (x = 0; x < s->w && x < o->w; x++) {
RGBtoYUV (p, yuv, monochrome, luminance);
if (x % 2 == 0) {
*(op++) = yuv[0];
*(op++) = yuv[2];
op[1] = yuv[1];
} else {
*op = yuv[0];
op += 2;
}
p += s->format->BytesPerPixel;
}
}
SDL_UnlockYUVOverlay (o);
SDL_UnlockSurface (s);
300
301
}
May 28, 2006
May 28, 2006
302
303
304
void
ConvertRGBtoYUY2 (SDL_Surface * s, SDL_Overlay * o, int monochrome,
int luminance)
305
{
May 28, 2006
May 28, 2006
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
int x, y;
int yuv[3];
Uint8 *p, *op;
SDL_LockSurface (s);
SDL_LockYUVOverlay (o);
for (y = 0; y < s->h && y < o->h; y++) {
p = ((Uint8 *) s->pixels) + s->pitch * y;
op = o->pixels[0] + o->pitches[0] * y;
for (x = 0; x < s->w && x < o->w; x++) {
RGBtoYUV (p, yuv, monochrome, luminance);
if (x % 2 == 0) {
*(op++) = yuv[0];
*(op++) = yuv[1];
op[1] = yuv[2];
} else {
*op = yuv[0];
op += 2;
}
p += s->format->BytesPerPixel;
}
}
SDL_UnlockYUVOverlay (o);
SDL_UnlockSurface (s);
333
334
}
May 28, 2006
May 28, 2006
335
336
static void
PrintUsage (char *argv0)
337
{
May 28, 2006
May 28, 2006
338
339
340
341
342
343
344
345
346
347
348
349
350
351
fprintf (stderr, "Usage: %s [arg] [arg] [arg] ...\n", argv0);
fprintf (stderr, "\n");
fprintf (stderr, "Where 'arg' is any of the following options:\n");
fprintf (stderr, "\n");
fprintf (stderr, " -fps <frames per second>\n");
fprintf (stderr,
" -format <fmt> (one of the: YV12, IYUV, YUY2, UYVY, YVYU)\n");
fprintf (stderr,
" -scale <scale factor> (initial scale of the overlay)\n");
fprintf (stderr, " -help (shows this help)\n");
fprintf (stderr, "\n");
fprintf (stderr,
"Press ESC to exit, or SPACE to freeze the movie while application running.\n");
fprintf (stderr, "\n");
352
353
}
May 28, 2006
May 28, 2006
354
355
int
main (int argc, char **argv)
356
{
May 28, 2006
May 28, 2006
357
358
359
360
361
Uint8 *RawMooseData;
SDL_RWops *handle;
SDL_Surface *screen;
SDL_Surface *MooseFrame[MOOSEFRAMES_COUNT];
SDL_Overlay *overlay;
362
363
364
SDL_Rect overlayrect;
SDL_Event event;
Uint32 lastftick;
May 28, 2006
May 28, 2006
365
366
int paused = 0;
int resized = 0;
367
int i;
May 28, 2006
May 28, 2006
368
int fps = 12;
369
int fpsdelay;
May 28, 2006
May 28, 2006
370
371
int overlay_format = SDL_YUY2_OVERLAY;
int scale = 5;
372
May 28, 2006
May 28, 2006
373
374
if (SDL_Init (SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE) < 0) {
fprintf (stderr, "Couldn't initialize SDL: %s\n", SDL_GetError ());
Sep 28, 2005
Sep 28, 2005
375
376
377
return 3;
}
May 28, 2006
May 28, 2006
378
379
380
381
382
383
384
385
while (argc > 1) {
if (strcmp (argv[1], "-fps") == 0) {
if (argv[2]) {
fps = atoi (argv[2]);
if (fps == 0) {
fprintf (stderr,
"The -fps option requires an argument [from 1 to 1000], default is 12.\n");
quit (10);
386
}
May 28, 2006
May 28, 2006
387
388
389
390
if ((fps < 0) || (fps > 1000)) {
fprintf (stderr,
"The -fps option must be in range from 1 to 1000, default is 12.\n");
quit (10);
391
392
393
}
argv += 2;
argc -= 2;
May 28, 2006
May 28, 2006
394
395
396
397
} else {
fprintf (stderr,
"The -fps option requires an argument [from 1 to 1000], default is 12.\n");
quit (10);
398
}
May 28, 2006
May 28, 2006
399
400
401
} else if (strcmp (argv[1], "-format") == 0) {
if (argv[2]) {
if (!strcmp (argv[2], "YV12"))
402
overlay_format = SDL_YV12_OVERLAY;
May 28, 2006
May 28, 2006
403
else if (!strcmp (argv[2], "IYUV"))
404
overlay_format = SDL_IYUV_OVERLAY;
May 28, 2006
May 28, 2006
405
else if (!strcmp (argv[2], "YUY2"))
406
overlay_format = SDL_YUY2_OVERLAY;
May 28, 2006
May 28, 2006
407
else if (!strcmp (argv[2], "UYVY"))
408
overlay_format = SDL_UYVY_OVERLAY;
May 28, 2006
May 28, 2006
409
else if (!strcmp (argv[2], "YVYU"))
410
overlay_format = SDL_YVYU_OVERLAY;
May 28, 2006
May 28, 2006
411
412
413
414
415
else {
fprintf (stderr,
"The -format option %s is not recognized, see help for info.\n",
argv[2]);
quit (10);
416
417
418
}
argv += 2;
argc -= 2;
May 28, 2006
May 28, 2006
419
420
421
422
} else {
fprintf (stderr,
"The -format option requires an argument, default is YUY2.\n");
quit (10);
423
}
May 28, 2006
May 28, 2006
424
425
426
427
428
429
430
} else if (strcmp (argv[1], "-scale") == 0) {
if (argv[2]) {
scale = atoi (argv[2]);
if (scale == 0) {
fprintf (stderr,
"The -scale option requires an argument [from 1 to 50], default is 5.\n");
quit (10);
431
}
May 28, 2006
May 28, 2006
432
433
434
435
if ((scale < 0) || (scale > 50)) {
fprintf (stderr,
"The -scale option must be in range from 1 to 50, default is 5.\n");
quit (10);
436
437
438
}
argv += 2;
argc -= 2;
May 28, 2006
May 28, 2006
439
440
441
442
} else {
fprintf (stderr,
"The -fps option requires an argument [from 1 to 1000], default is 12.\n");
quit (10);
443
}
May 28, 2006
May 28, 2006
444
445
446
447
448
449
450
} else if ((strcmp (argv[1], "-help") == 0)
|| (strcmp (argv[1], "-h") == 0)) {
PrintUsage (argv[0]);
quit (0);
} else {
fprintf (stderr, "Unrecognized option: %s.\n", argv[1]);
quit (10);
451
452
453
}
break;
}
May 28, 2006
May 28, 2006
454
455
456
457
458
459
RawMooseData = (Uint8 *) malloc (MOOSEFRAME_SIZE * MOOSEFRAMES_COUNT);
if (RawMooseData == NULL) {
fprintf (stderr, "Can't allocate memory for movie !\n");
free (RawMooseData);
quit (1);
460
461
462
}
/* load the trojan moose images */
May 28, 2006
May 28, 2006
463
464
465
466
467
handle = SDL_RWFromFile ("moose.dat", "rb");
if (handle == NULL) {
fprintf (stderr, "Can't find the file moose.dat !\n");
free (RawMooseData);
quit (2);
468
469
}
May 28, 2006
May 28, 2006
470
471
472
SDL_RWread (handle, RawMooseData, MOOSEFRAME_SIZE, MOOSEFRAMES_COUNT);
SDL_RWclose (handle);
473
Aug 8, 2003
Aug 8, 2003
474
/* Set video mode */
May 28, 2006
May 28, 2006
475
476
477
478
479
480
if ((screen =
SDL_SetVideoMode (MOOSEPIC_W * scale, MOOSEPIC_H * scale, 0,
SDL_RESIZABLE | SDL_SWSURFACE)) == NULL) {
fprintf (stderr, "Couldn't set video mode: %s\n", SDL_GetError ());
free (RawMooseData);
quit (4);
481
482
483
}
/* Set the window manager title bar */
May 28, 2006
May 28, 2006
484
485
486
487
488
489
490
491
492
493
494
495
SDL_WM_SetCaption ("SDL test overlay: running moose", "testoverlay2");
for (i = 0; i < MOOSEFRAMES_COUNT; i++) {
MooseFrame[i] =
SDL_CreateRGBSurfaceFrom (RawMooseData + i * MOOSEFRAME_SIZE,
MOOSEPIC_W, MOOSEPIC_H, 8, MOOSEPIC_W,
0, 0, 0, 0);
if (MooseFrame[i] == NULL) {
fprintf (stderr, "Couldn't create SDL_Surfaces:%s\n",
SDL_GetError ());
free (RawMooseData);
quit (5);
496
}
May 28, 2006
May 28, 2006
497
SDL_SetColors (MooseFrame[i], MooseColors, 0, 84);
498
May 28, 2006
May 28, 2006
499
500
501
{
SDL_Surface *newsurf;
SDL_PixelFormat format;
502
May 28, 2006
May 28, 2006
503
504
505
format.palette = NULL;
format.BitsPerPixel = 32;
format.BytesPerPixel = 4;
506
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
May 28, 2006
May 28, 2006
507
508
509
format.Rshift = 0;
format.Gshift = 8;
format.Bshift = 16;
510
#else
May 28, 2006
May 28, 2006
511
512
513
format.Rshift = 24;
format.Gshift = 16;
format.Bshift = 8;
514
#endif
May 28, 2006
May 28, 2006
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
format.Ashift = 0;
format.Rmask = 0xff << format.Rshift;
format.Gmask = 0xff << format.Gshift;
format.Bmask = 0xff << format.Bshift;
format.Amask = 0;
format.Rloss = 0;
format.Gloss = 0;
format.Bloss = 0;
format.Aloss = 8;
format.colorkey = 0;
format.alpha = 0;
newsurf =
SDL_ConvertSurface (MooseFrame[i], &format, SDL_SWSURFACE);
if (!newsurf) {
fprintf (stderr,
"Couldn't convert picture to 32bits RGB: %s\n",
SDL_GetError ());
quit (6);
}
SDL_FreeSurface (MooseFrame[i]);
MooseFrame[i] = newsurf;
}
538
539
}
May 28, 2006
May 28, 2006
540
free (RawMooseData);
541
May 28, 2006
May 28, 2006
542
543
544
545
546
overlay =
SDL_CreateYUVOverlay (MOOSEPIC_W, MOOSEPIC_H, overlay_format, screen);
if (!overlay) {
fprintf (stderr, "Couldn't create overlay: %s\n", SDL_GetError ());
quit (7);
May 6, 2004
May 6, 2004
547
}
548
May 28, 2006
May 28, 2006
549
550
551
552
553
554
555
556
557
558
printf ("Created %dx%dx%d %s %s overlay\n", overlay->w, overlay->h,
overlay->planes, overlay->hw_overlay ? "hardware" : "software",
overlay->format == SDL_YV12_OVERLAY ? "YV12" : overlay->format ==
SDL_IYUV_OVERLAY ? "IYUV" : overlay->format ==
SDL_YUY2_OVERLAY ? "YUY2" : overlay->format ==
SDL_UYVY_OVERLAY ? "UYVY" : overlay->format ==
SDL_YVYU_OVERLAY ? "YVYU" : "Unknown");
for (i = 0; i < overlay->planes; i++) {
printf (" plane %d: pitch=%d\n", i, overlay->pitches[i]);
559
560
}
May 28, 2006
May 28, 2006
561
562
563
564
overlayrect.x = 0;
overlayrect.y = 0;
overlayrect.w = MOOSEPIC_W * scale;
overlayrect.h = MOOSEPIC_H * scale;
565
566
/* set the start frame */
May 28, 2006
May 28, 2006
567
568
i = 0;
fpsdelay = 1000 / fps;
569
570
/* Ignore key up events, they don't even get filtered */
May 28, 2006
May 28, 2006
571
SDL_EventState (SDL_KEYUP, SDL_IGNORE);
572
May 28, 2006
May 28, 2006
573
lastftick = SDL_GetTicks ();
574
575
/* Loop, waiting for QUIT or RESIZE */
May 28, 2006
May 28, 2006
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
while (1) {
if (SDL_PollEvent (&event)) {
switch (event.type) {
case SDL_VIDEORESIZE:
screen =
SDL_SetVideoMode (event.resize.w, event.resize.h, 0,
SDL_RESIZABLE | SDL_SWSURFACE);
overlayrect.w = event.resize.w;
overlayrect.h = event.resize.h;
if (paused) {
resized = 1;
}
break;
case SDL_MOUSEBUTTONDOWN:
overlayrect.x = event.button.x - overlayrect.w / 2;
overlayrect.y = event.button.y - overlayrect.h / 2;
break;
case SDL_KEYDOWN:
if (event.key.keysym.sym == SDLK_SPACE) {
paused = !paused;
break;
}
if (event.key.keysym.sym != SDLK_ESCAPE) {
break;
}
case SDL_QUIT:
SDL_FreeYUVOverlay (overlay);
for (i = 0; i < MOOSEFRAMES_COUNT; i++) {
SDL_FreeSurface (MooseFrame[i]);
}
quit (0);
607
608
609
}
}
May 28, 2006
May 28, 2006
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
if ((!paused) || (resized)) {
if (((SDL_GetTicks () - lastftick) > fpsdelay) || (resized)) {
lastftick = SDL_GetTicks ();
switch (overlay_format) {
case SDL_YUY2_OVERLAY:
ConvertRGBtoYUY2 (MooseFrame[i], overlay, 0, 100);
break;
case SDL_YV12_OVERLAY:
ConvertRGBtoYV12 (MooseFrame[i], overlay, 0, 100);
break;
case SDL_UYVY_OVERLAY:
ConvertRGBtoUYVY (MooseFrame[i], overlay, 0, 100);
break;
case SDL_YVYU_OVERLAY:
ConvertRGBtoYVYU (MooseFrame[i], overlay, 0, 100);
break;
case SDL_IYUV_OVERLAY:
ConvertRGBtoIYUV (MooseFrame[i], overlay, 0, 100);
break;
630
631
}
May 28, 2006
May 28, 2006
632
633
SDL_DisplayYUVOverlay (overlay, &overlayrect);
if (!resized) {
Dec 10, 2003
Dec 10, 2003
634
i++;
May 28, 2006
May 28, 2006
635
636
if (i == 10) {
i = 0;
Dec 10, 2003
Dec 10, 2003
637
}
May 28, 2006
May 28, 2006
638
639
} else {
resized = 0;
640
641
642
643
}
}
}
/* kind of timeslice to OS */
May 28, 2006
May 28, 2006
644
SDL_Delay (1);
645
646
}
May 28, 2006
May 28, 2006
647
SDL_Quit ();
648
649
return 0;
}