1
|
1 /*
|
|
2 * video_out.c,
|
|
3 *
|
|
4 * Copyright (C) Aaron Holtzman - June 2000
|
|
5 *
|
|
6 * mpeg2dec is free software; you can redistribute it and/or modify
|
|
7 * it under the terms of the GNU General Public License as published by
|
|
8 * the Free Software Foundation; either version 2, or (at your option)
|
|
9 * any later version.
|
|
10 *
|
|
11 * mpeg2dec is distributed in the hope that it will be useful,
|
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 * GNU General Public License for more details.
|
|
15 *
|
|
16 * You should have received a copy of the GNU General Public License
|
|
17 * along with GNU Make; see the file COPYING. If not, write to
|
|
18 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
19 *
|
|
20 */
|
|
21
|
|
22 #include <stdio.h>
|
|
23 #include <stdlib.h>
|
|
24 #include <string.h>
|
|
25
|
|
26 #include <unistd.h>
|
|
27 #include <sys/mman.h>
|
|
28
|
|
29 #include "config.h"
|
|
30 #include "video_out.h"
|
|
31
|
|
32 #include "../linux/shmem.h"
|
|
33
|
388
|
34 // currect resolution/bpp on screen: (should be autodetected by vo_init())
|
|
35 int vo_depthonscreen=0;
|
|
36 int vo_screenwidth=0;
|
|
37 int vo_screenheight=0;
|
|
38
|
|
39 // requested resolution/bpp: (-x -y -bpp options)
|
|
40 int vo_dwidth=0;
|
|
41 int vo_dheight=0;
|
|
42 int vo_dbpp=0;
|
|
43
|
|
44
|
1
|
45 //
|
|
46 // Externally visible list of all vo drivers
|
|
47 //
|
|
48
|
|
49 extern vo_functions_t video_out_mga;
|
|
50 extern vo_functions_t video_out_xmga;
|
|
51 extern vo_functions_t video_out_x11;
|
|
52 extern vo_functions_t video_out_xv;
|
|
53 extern vo_functions_t video_out_gl;
|
12
|
54 extern vo_functions_t video_out_dga;
|
38
|
55 extern vo_functions_t video_out_fsdga;
|
1
|
56 extern vo_functions_t video_out_sdl;
|
|
57 extern vo_functions_t video_out_3dfx;
|
|
58 extern vo_functions_t video_out_null;
|
|
59 extern vo_functions_t video_out_odivx;
|
|
60 extern vo_functions_t video_out_pgm;
|
|
61 extern vo_functions_t video_out_md5;
|
|
62 extern vo_functions_t video_out_syncfb;
|
225
|
63 extern vo_functions_t video_out_fbdev;
|
286
|
64 extern vo_functions_t video_out_svga;
|
528
|
65 extern vo_functions_t video_out_png;
|
1
|
66
|
|
67 vo_functions_t* video_out_drivers[] =
|
|
68 {
|
|
69 #ifdef HAVE_MGA
|
|
70 #ifdef HAVE_X11
|
|
71 &video_out_xmga,
|
|
72 #endif
|
|
73 &video_out_mga,
|
|
74 #endif
|
|
75 #ifdef HAVE_SYNCFB
|
|
76 &video_out_syncfb,
|
|
77 #endif
|
|
78 #ifdef HAVE_3DFX
|
|
79 &video_out_3dfx,
|
|
80 #endif
|
|
81 #ifdef HAVE_XV
|
|
82 &video_out_xv,
|
|
83 #endif
|
|
84 #ifdef HAVE_X11
|
|
85 &video_out_x11,
|
|
86 #endif
|
|
87 #ifdef HAVE_GL
|
|
88 &video_out_gl,
|
|
89 #endif
|
12
|
90 #ifdef HAVE_DGA
|
|
91 &video_out_dga,
|
38
|
92 &video_out_fsdga,
|
12
|
93 #endif
|
1
|
94 #ifdef HAVE_SDL
|
|
95 &video_out_sdl,
|
|
96 #endif
|
234
|
97 #ifdef HAVE_FBDEV
|
|
98 &video_out_fbdev,
|
|
99 #endif
|
286
|
100 #ifdef HAVE_SVGALIB
|
|
101 &video_out_svga,
|
|
102 #endif
|
529
|
103 #ifdef HAVE_PNG
|
|
104 &video_out_png,
|
|
105 #endif
|
1
|
106 &video_out_null,
|
|
107 &video_out_odivx,
|
|
108 &video_out_pgm,
|
|
109 &video_out_md5,
|
|
110 NULL
|
|
111 };
|
|
112
|
202
|
113 #include "sub.c"
|