Mercurial > mplayer.hg
annotate libvo/video_out.c @ 10066:c55cf2231b5a
DXR2 option updates, description removed as it is present in HTML/XML.
Based on a patch by Mark Guptill <CompGuy284@attbi.com>.
author | diego |
---|---|
date | Mon, 05 May 2003 00:06:58 +0000 |
parents | 07f4553269dd |
children | 5f0d4b36db5a |
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 | |
7562
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
15 #include "mp_msg.h" |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
16 #include "help_mp.h" |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
17 |
9380 | 18 #include "../osdep/shmem.h" |
1 | 19 |
5074 | 20 //int vo_flags=0; |
4736 | 21 |
388 | 22 // currect resolution/bpp on screen: (should be autodetected by vo_init()) |
23 int vo_depthonscreen=0; | |
24 int vo_screenwidth=0; | |
25 int vo_screenheight=0; | |
26 | |
5511 | 27 int vo_config_count=0; |
28 | |
388 | 29 // 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
|
30 int vo_dx=0; |
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4736
diff
changeset
|
31 int vo_dy=0; |
388 | 32 int vo_dwidth=0; |
33 int vo_dheight=0; | |
34 int vo_dbpp=0; | |
4981 | 35 |
7539
56ea9db91251
-nograbpointer, based on old patch by Christian Ohm <chr.ohm@gmx.net>
arpi
parents:
7536
diff
changeset
|
36 int vo_grabpointer = 1; |
1149
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1130
diff
changeset
|
37 int vo_doublebuffering = 0; |
4667 | 38 int vo_vsync = 0; |
4981 | 39 int vo_fs = 0; |
1269 | 40 int vo_fsmode = 0; |
6304
ee65527096c2
pan&scan support with -vo xv by ?? <mplayer@svennevid.net>
arpi
parents:
6069
diff
changeset
|
41 float vo_panscan = 0.0f; |
388 | 42 |
2707 | 43 int vo_pts=0; // for hw decoding |
3201 | 44 float vo_fps=0; // for mp1e rte |
2707 | 45 |
1184 | 46 char *vo_subdevice = NULL; |
5431
013458752947
disabling direct rendering by default (too buggy and conflicts with osd/sub)
arpi
parents:
5296
diff
changeset
|
47 int vo_directrendering=0; |
6781 | 48 |
1 | 49 // |
50 // Externally visible list of all vo drivers | |
51 // | |
52 extern vo_functions_t video_out_mga; | |
53 extern vo_functions_t video_out_xmga; | |
54 extern vo_functions_t video_out_x11; | |
9569
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9546
diff
changeset
|
55 extern vo_functions_t video_out_xover; |
1 | 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; |
7536
70c35cd5db1f
-vo directx driver by Sascha Sommer <saschasommer@freenet.de>
arpi
parents:
7435
diff
changeset
|
78 #ifdef HAVE_DIRECTX |
70c35cd5db1f
-vo directx driver by Sascha Sommer <saschasommer@freenet.de>
arpi
parents:
7435
diff
changeset
|
79 extern vo_functions_t video_out_directx; |
70c35cd5db1f
-vo directx driver by Sascha Sommer <saschasommer@freenet.de>
arpi
parents:
7435
diff
changeset
|
80 #endif |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
81 #ifdef HAVE_DXR2 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
82 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
|
83 #endif |
2645 | 84 extern vo_functions_t video_out_dxr3; |
5648 | 85 #ifdef HAVE_JPEG |
86 extern vo_functions_t video_out_jpeg; | |
87 #endif | |
6053 | 88 #ifdef HAVE_GIF |
89 extern vo_functions_t video_out_gif89a; | |
90 #endif | |
4561 | 91 #ifdef HAVE_VESA |
2244 | 92 extern vo_functions_t video_out_vesa; |
93 #endif | |
8013
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
94 #ifdef HAVE_DIRECTFB |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
95 extern vo_functions_t video_out_directfb; |
10047 | 96 #if DIRECTFBVERSION >= 915 |
8013
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
97 extern vo_functions_t video_out_dfbmga; |
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
98 #endif |
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
99 #endif |
4124 | 100 #ifdef CONFIG_VIDIX |
101 extern vo_functions_t video_out_xvidix; | |
102 #endif | |
9546
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
103 #ifdef HAVE_TDFX_VID |
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
104 extern vo_functions_t video_out_tdfx_vid; |
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
105 #endif |
4124 | 106 |
1 | 107 vo_functions_t* video_out_drivers[] = |
108 { | |
9546
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
109 #ifdef HAVE_TDFX_VID |
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
110 &video_out_tdfx_vid, |
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
111 #endif |
8729
561aa9c850f7
Rearrange the vo and ao driver order to prefer the native drivers and give
diego
parents:
8148
diff
changeset
|
112 #ifdef HAVE_DIRECTX |
561aa9c850f7
Rearrange the vo and ao driver order to prefer the native drivers and give
diego
parents:
8148
diff
changeset
|
113 &video_out_directx, |
561aa9c850f7
Rearrange the vo and ao driver order to prefer the native drivers and give
diego
parents:
8148
diff
changeset
|
114 #endif |
1179 | 115 #ifdef HAVE_XMGA |
1 | 116 &video_out_xmga, |
117 #endif | |
1179 | 118 #ifdef HAVE_MGA |
1 | 119 &video_out_mga, |
120 #endif | |
121 #ifdef HAVE_SYNCFB | |
122 &video_out_syncfb, | |
123 #endif | |
124 #ifdef HAVE_3DFX | |
125 &video_out_3dfx, | |
126 #endif | |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
127 #ifdef HAVE_TDFXFB |
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
128 &video_out_tdfxfb, |
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
129 #endif |
1 | 130 #ifdef HAVE_XV |
131 &video_out_xv, | |
132 #endif | |
133 #ifdef HAVE_X11 | |
134 &video_out_x11, | |
9569
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9546
diff
changeset
|
135 &video_out_xover, |
1 | 136 #endif |
137 #ifdef HAVE_GL | |
138 &video_out_gl, | |
2124 | 139 &video_out_gl2, |
1 | 140 #endif |
12 | 141 #ifdef HAVE_DGA |
142 &video_out_dga, | |
1235 | 143 // &video_out_fsdga, |
12 | 144 #endif |
1 | 145 #ifdef HAVE_SDL |
146 &video_out_sdl, | |
147 #endif | |
1235 | 148 #ifdef HAVE_GGI |
149 &video_out_ggi, | |
150 #endif | |
234 | 151 #ifdef HAVE_FBDEV |
152 &video_out_fbdev, | |
153 #endif | |
286 | 154 #ifdef HAVE_SVGALIB |
155 &video_out_svga, | |
156 #endif | |
1511 | 157 #ifdef HAVE_AA |
158 &video_out_aa, | |
159 #endif | |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
160 #ifdef HAVE_DXR2 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
161 &video_out_dxr2, |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
162 #endif |
2645 | 163 #ifdef HAVE_DXR3 |
164 &video_out_dxr3, | |
165 #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
|
166 #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
|
167 &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
|
168 #endif |
7326
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
169 #ifdef HAVE_BL |
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
170 &video_out_bl, |
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
171 #endif |
1511 | 172 |
529 | 173 #ifdef HAVE_PNG |
174 &video_out_png, | |
175 #endif | |
5648 | 176 #ifdef HAVE_JPEG |
177 &video_out_jpeg, | |
178 #endif | |
6053 | 179 #ifdef HAVE_GIF |
180 &video_out_gif89a, | |
181 #endif | |
1 | 182 &video_out_null, |
2528 | 183 // &video_out_odivx, |
1 | 184 &video_out_pgm, |
185 &video_out_md5, | |
1871 | 186 &video_out_mpegpes, |
4599 | 187 &video_out_yuv4mpeg, |
4561 | 188 #ifdef HAVE_VESA |
2244 | 189 &video_out_vesa, |
190 #endif | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
191 #ifdef HAVE_DIRECTFB |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
192 &video_out_directfb, |
10047 | 193 #if DIRECTFBVERSION >= 915 |
8013
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
194 &video_out_dfbmga, |
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
195 #endif |
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
196 #endif |
4169
91b50468a1a4
Fix xvidix for non-x11 systems (delayed due netloss)
atmos4
parents:
4124
diff
changeset
|
197 #if defined(CONFIG_VIDIX) && defined(HAVE_X11) |
4124 | 198 &video_out_xvidix, |
199 #endif | |
1 | 200 NULL |
201 }; | |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
202 |
7562
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
203 void list_video_out(){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
204 int i=0; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
205 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
206 while (video_out_drivers[i]) { |
8148
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
8013
diff
changeset
|
207 const vo_info_t *info = video_out_drivers[i++]->info; |
7562
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
208 printf("\t%s\t%s\n", info->short_name, info->name); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
209 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
210 printf("\n"); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
211 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
212 |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
213 vo_functions_t* init_best_video_out(char** vo_list){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
214 int i; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
215 // first try the preferred drivers, with their optional subdevice param: |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
216 if(vo_list && vo_list[0]) |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
217 while(vo_list[0][0]){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
218 char* vo=strdup(vo_list[0]); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
219 vo_subdevice=strchr(vo,':'); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
220 if(vo_subdevice){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
221 vo_subdevice[0]=0; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
222 ++vo_subdevice; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
223 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
224 for(i=0;video_out_drivers[i];i++){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
225 vo_functions_t* video_driver=video_out_drivers[i]; |
8148
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
8013
diff
changeset
|
226 const vo_info_t *info = video_driver->info; |
7562
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
227 if(!strcmp(info->short_name,vo)){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
228 // name matches, try it |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
229 if(!video_driver->preinit(vo_subdevice)) |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
230 return video_driver; // success! |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
231 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
232 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
233 // continue... |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
234 ++vo_list; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
235 if(!(vo_list[0])) return NULL; // do NOT fallback to others |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
236 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
237 // now try the rest... |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
238 vo_subdevice=NULL; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
239 for(i=0;video_out_drivers[i];i++){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
240 vo_functions_t* video_driver=video_out_drivers[i]; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
241 if(!video_driver->preinit(vo_subdevice)) |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
242 return video_driver; // success! |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
243 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
244 return NULL; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
245 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
246 |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
247 |
7069 | 248 #if defined(HAVE_FBDEV)||defined(HAVE_VESA) |
249 /* Borrowed from vo_fbdev.c | |
250 Monitor ranges related functions*/ | |
251 | |
252 char *monitor_hfreq_str = NULL; | |
253 char *monitor_vfreq_str = NULL; | |
254 char *monitor_dotclock_str = NULL; | |
255 | |
256 float range_max(range_t *r) | |
257 { | |
258 float max = 0; | |
259 | |
260 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++) | |
261 if (max < r->max) max = r->max; | |
262 return max; | |
263 } | |
264 | |
265 | |
266 int in_range(range_t *r, float f) | |
267 { | |
268 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++) | |
269 if (f >= r->min && f <= r->max) | |
270 return 1; | |
271 return 0; | |
272 } | |
273 | |
274 range_t *str2range(char *s) | |
275 { | |
276 float tmp_min, tmp_max; | |
277 char *endptr = s; // to start the loop | |
278 range_t *r = NULL; | |
279 int i; | |
280 | |
281 if (!s) | |
282 return NULL; | |
283 for (i = 0; *endptr; i++) { | |
284 if (*s == ',') | |
285 goto out_err; | |
286 if (!(r = (range_t *) realloc(r, sizeof(*r) * (i + 2)))) { | |
287 printf("can't realloc 'r'\n"); | |
288 return NULL; | |
289 } | |
290 tmp_min = strtod(s, &endptr); | |
291 if (*endptr == 'k' || *endptr == 'K') { | |
292 tmp_min *= 1000.0; | |
293 endptr++; | |
294 } else if (*endptr == 'm' || *endptr == 'M') { | |
295 tmp_min *= 1000000.0; | |
296 endptr++; | |
297 } | |
298 if (*endptr == '-') { | |
299 tmp_max = strtod(endptr + 1, &endptr); | |
300 if (*endptr == 'k' || *endptr == 'K') { | |
301 tmp_max *= 1000.0; | |
302 endptr++; | |
303 } else if (*endptr == 'm' || *endptr == 'M') { | |
304 tmp_max *= 1000000.0; | |
305 endptr++; | |
306 } | |
307 if (*endptr != ',' && *endptr) | |
308 goto out_err; | |
309 } else if (*endptr == ',' || !*endptr) { | |
310 tmp_max = tmp_min; | |
311 } else | |
312 goto out_err; | |
313 r[i].min = tmp_min; | |
314 r[i].max = tmp_max; | |
315 if (r[i].min < 0 || r[i].max < 0) | |
316 goto out_err; | |
317 s = endptr + 1; | |
318 } | |
319 r[i].min = r[i].max = -1; | |
320 return r; | |
321 out_err: | |
322 if (r) | |
323 free(r); | |
324 return NULL; | |
325 } | |
326 | |
327 /* Borrowed from vo_fbdev.c END */ | |
328 #endif | |
329 |