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