Mercurial > mplayer.hg
annotate libvo/video_out.c @ 7338:598c69a1480d
cosmetics - copyright msg removed, this file has nothing with mpeg2dec or
original Aaron code, except its filename :)
author | arpi |
---|---|
date | Mon, 09 Sep 2002 20:03:21 +0000 |
parents | ec3e58120e2a |
children | c7a9bcecba07 |
rev | line source |
---|---|
7338
598c69a1480d
cosmetics - copyright msg removed, this file has nothing with mpeg2dec or
arpi
parents:
7326
diff
changeset
|
1 |
598c69a1480d
cosmetics - copyright msg removed, this file has nothing with mpeg2dec or
arpi
parents:
7326
diff
changeset
|
2 /* this file contains libvo's common functions, variables used by |
598c69a1480d
cosmetics - copyright msg removed, this file has nothing with mpeg2dec or
arpi
parents:
7326
diff
changeset
|
3 many/all drivers. */ |
1 | 4 |
5 #include <stdio.h> | |
6 #include <stdlib.h> | |
7 #include <string.h> | |
8 | |
9 #include <unistd.h> | |
5296 | 10 //#include <sys/mman.h> |
1 | 11 |
12 #include "config.h" | |
13 #include "video_out.h" | |
14 | |
15 #include "../linux/shmem.h" | |
16 | |
5074 | 17 //int vo_flags=0; |
4736 | 18 |
388 | 19 // currect resolution/bpp on screen: (should be autodetected by vo_init()) |
20 int vo_depthonscreen=0; | |
21 int vo_screenwidth=0; | |
22 int vo_screenheight=0; | |
23 | |
5511 | 24 int vo_config_count=0; |
25 | |
388 | 26 // requested resolution/bpp: (-x -y -bpp options) |
4811
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4736
diff
changeset
|
27 int vo_dx=0; |
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4736
diff
changeset
|
28 int vo_dy=0; |
388 | 29 int vo_dwidth=0; |
30 int vo_dheight=0; | |
31 int vo_dbpp=0; | |
4981 | 32 |
33 int vo_old_x = 0; | |
34 int vo_old_y = 0; | |
35 int vo_old_width = 0; | |
36 int vo_old_height = 0; | |
37 | |
1149
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1130
diff
changeset
|
38 int vo_doublebuffering = 0; |
4667 | 39 int vo_vsync = 0; |
4981 | 40 int vo_fs = 0; |
1269 | 41 int vo_fsmode = 0; |
6304
ee65527096c2
pan&scan support with -vo xv by ?? <mplayer@svennevid.net>
arpi
parents:
6069
diff
changeset
|
42 float vo_panscan = 0.0f; |
388 | 43 |
2707 | 44 int vo_pts=0; // for hw decoding |
3201 | 45 float vo_fps=0; // for mp1e rte |
2707 | 46 |
1184 | 47 char *vo_subdevice = NULL; |
5431
013458752947
disabling direct rendering by default (too buggy and conflicts with osd/sub)
arpi
parents:
5296
diff
changeset
|
48 int vo_directrendering=0; |
6781 | 49 |
1 | 50 // |
51 // Externally visible list of all vo drivers | |
52 // | |
53 extern vo_functions_t video_out_mga; | |
54 extern vo_functions_t video_out_xmga; | |
55 extern vo_functions_t video_out_x11; | |
56 extern vo_functions_t video_out_xv; | |
57 extern vo_functions_t video_out_gl; | |
2124 | 58 extern vo_functions_t video_out_gl2; |
12 | 59 extern vo_functions_t video_out_dga; |
38 | 60 extern vo_functions_t video_out_fsdga; |
1 | 61 extern vo_functions_t video_out_sdl; |
62 extern vo_functions_t video_out_3dfx; | |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
63 extern vo_functions_t video_out_tdfxfb; |
1 | 64 extern vo_functions_t video_out_null; |
2528 | 65 //extern vo_functions_t video_out_odivx; |
4214
664984198aef
zr driver (tv-out for DC10/DC10+, iomega buz, LML33...) added - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4169
diff
changeset
|
66 extern vo_functions_t video_out_zr; |
7326
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
67 extern vo_functions_t video_out_bl; |
1 | 68 extern vo_functions_t video_out_pgm; |
69 extern vo_functions_t video_out_md5; | |
70 extern vo_functions_t video_out_syncfb; | |
225 | 71 extern vo_functions_t video_out_fbdev; |
286 | 72 extern vo_functions_t video_out_svga; |
528 | 73 extern vo_functions_t video_out_png; |
1130 | 74 extern vo_functions_t video_out_ggi; |
1511 | 75 extern vo_functions_t video_out_aa; |
1871 | 76 extern vo_functions_t video_out_mpegpes; |
4599 | 77 extern vo_functions_t video_out_yuv4mpeg; |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
78 #ifdef HAVE_DXR2 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
79 extern vo_functions_t video_out_dxr2; |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
80 #endif |
2645 | 81 extern vo_functions_t video_out_dxr3; |
5648 | 82 #ifdef HAVE_JPEG |
83 extern vo_functions_t video_out_jpeg; | |
84 #endif | |
6053 | 85 #ifdef HAVE_GIF |
86 extern vo_functions_t video_out_gif89a; | |
87 #endif | |
4561 | 88 #ifdef HAVE_VESA |
2244 | 89 extern vo_functions_t video_out_vesa; |
90 #endif | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
91 extern vo_functions_t video_out_directfb; |
4124 | 92 #ifdef CONFIG_VIDIX |
93 extern vo_functions_t video_out_xvidix; | |
94 #endif | |
95 | |
1 | 96 vo_functions_t* video_out_drivers[] = |
97 { | |
1179 | 98 #ifdef HAVE_XMGA |
1 | 99 &video_out_xmga, |
100 #endif | |
1179 | 101 #ifdef HAVE_MGA |
1 | 102 &video_out_mga, |
103 #endif | |
104 #ifdef HAVE_SYNCFB | |
105 &video_out_syncfb, | |
106 #endif | |
107 #ifdef HAVE_3DFX | |
108 &video_out_3dfx, | |
109 #endif | |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
110 #ifdef HAVE_TDFXFB |
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
111 &video_out_tdfxfb, |
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
112 #endif |
1 | 113 #ifdef HAVE_XV |
114 &video_out_xv, | |
115 #endif | |
116 #ifdef HAVE_X11 | |
117 &video_out_x11, | |
118 #endif | |
119 #ifdef HAVE_GL | |
120 &video_out_gl, | |
2124 | 121 &video_out_gl2, |
1 | 122 #endif |
12 | 123 #ifdef HAVE_DGA |
124 &video_out_dga, | |
1235 | 125 // &video_out_fsdga, |
12 | 126 #endif |
1 | 127 #ifdef HAVE_SDL |
128 &video_out_sdl, | |
129 #endif | |
1235 | 130 #ifdef HAVE_GGI |
131 &video_out_ggi, | |
132 #endif | |
234 | 133 #ifdef HAVE_FBDEV |
134 &video_out_fbdev, | |
135 #endif | |
286 | 136 #ifdef HAVE_SVGALIB |
137 &video_out_svga, | |
138 #endif | |
1511 | 139 #ifdef HAVE_AA |
140 &video_out_aa, | |
141 #endif | |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
142 #ifdef HAVE_DXR2 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
143 &video_out_dxr2, |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
144 #endif |
2645 | 145 #ifdef HAVE_DXR3 |
146 &video_out_dxr3, | |
147 #endif | |
4214
664984198aef
zr driver (tv-out for DC10/DC10+, iomega buz, LML33...) added - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4169
diff
changeset
|
148 #ifdef HAVE_ZR |
664984198aef
zr driver (tv-out for DC10/DC10+, iomega buz, LML33...) added - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4169
diff
changeset
|
149 &video_out_zr, |
664984198aef
zr driver (tv-out for DC10/DC10+, iomega buz, LML33...) added - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4169
diff
changeset
|
150 #endif |
7326
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
151 #ifdef HAVE_BL |
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
152 &video_out_bl, |
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
153 #endif |
1511 | 154 |
529 | 155 #ifdef HAVE_PNG |
156 &video_out_png, | |
157 #endif | |
5648 | 158 #ifdef HAVE_JPEG |
159 &video_out_jpeg, | |
160 #endif | |
6053 | 161 #ifdef HAVE_GIF |
162 &video_out_gif89a, | |
163 #endif | |
1 | 164 &video_out_null, |
2528 | 165 // &video_out_odivx, |
1 | 166 &video_out_pgm, |
167 &video_out_md5, | |
1871 | 168 &video_out_mpegpes, |
4599 | 169 &video_out_yuv4mpeg, |
4561 | 170 #ifdef HAVE_VESA |
2244 | 171 &video_out_vesa, |
172 #endif | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
173 #ifdef HAVE_DIRECTFB |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
174 &video_out_directfb, |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
175 #endif |
4169
91b50468a1a4
Fix xvidix for non-x11 systems (delayed due netloss)
atmos4
parents:
4124
diff
changeset
|
176 #if defined(CONFIG_VIDIX) && defined(HAVE_X11) |
4124 | 177 &video_out_xvidix, |
178 #endif | |
1 | 179 NULL |
180 }; | |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
181 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
182 #ifdef HAVE_DXR2 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
183 extern void vo_dxr2_register_options(void*); |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
184 #endif |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
185 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
186 void libvo_register_options(void* cfg) { |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
187 #ifdef HAVE_DXR2 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
188 vo_dxr2_register_options(cfg); |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
189 #endif |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
190 } |
7069 | 191 #if defined(HAVE_FBDEV)||defined(HAVE_VESA) |
192 /* Borrowed from vo_fbdev.c | |
193 Monitor ranges related functions*/ | |
194 | |
195 char *monitor_hfreq_str = NULL; | |
196 char *monitor_vfreq_str = NULL; | |
197 char *monitor_dotclock_str = NULL; | |
198 | |
199 float range_max(range_t *r) | |
200 { | |
201 float max = 0; | |
202 | |
203 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++) | |
204 if (max < r->max) max = r->max; | |
205 return max; | |
206 } | |
207 | |
208 | |
209 int in_range(range_t *r, float f) | |
210 { | |
211 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++) | |
212 if (f >= r->min && f <= r->max) | |
213 return 1; | |
214 return 0; | |
215 } | |
216 | |
217 range_t *str2range(char *s) | |
218 { | |
219 float tmp_min, tmp_max; | |
220 char *endptr = s; // to start the loop | |
221 range_t *r = NULL; | |
222 int i; | |
223 | |
224 if (!s) | |
225 return NULL; | |
226 for (i = 0; *endptr; i++) { | |
227 if (*s == ',') | |
228 goto out_err; | |
229 if (!(r = (range_t *) realloc(r, sizeof(*r) * (i + 2)))) { | |
230 printf("can't realloc 'r'\n"); | |
231 return NULL; | |
232 } | |
233 tmp_min = strtod(s, &endptr); | |
234 if (*endptr == 'k' || *endptr == 'K') { | |
235 tmp_min *= 1000.0; | |
236 endptr++; | |
237 } else if (*endptr == 'm' || *endptr == 'M') { | |
238 tmp_min *= 1000000.0; | |
239 endptr++; | |
240 } | |
241 if (*endptr == '-') { | |
242 tmp_max = strtod(endptr + 1, &endptr); | |
243 if (*endptr == 'k' || *endptr == 'K') { | |
244 tmp_max *= 1000.0; | |
245 endptr++; | |
246 } else if (*endptr == 'm' || *endptr == 'M') { | |
247 tmp_max *= 1000000.0; | |
248 endptr++; | |
249 } | |
250 if (*endptr != ',' && *endptr) | |
251 goto out_err; | |
252 } else if (*endptr == ',' || !*endptr) { | |
253 tmp_max = tmp_min; | |
254 } else | |
255 goto out_err; | |
256 r[i].min = tmp_min; | |
257 r[i].max = tmp_max; | |
258 if (r[i].min < 0 || r[i].max < 0) | |
259 goto out_err; | |
260 s = endptr + 1; | |
261 } | |
262 r[i].min = r[i].max = -1; | |
263 return r; | |
264 out_err: | |
265 if (r) | |
266 free(r); | |
267 return NULL; | |
268 } | |
269 | |
270 /* Borrowed from vo_fbdev.c END */ | |
271 #endif | |
272 |