Mercurial > mplayer.hg
annotate libvo/video_out.c @ 12067:22c74dfb2baf
Add adland to authors
author | rtognimp |
---|---|
date | Thu, 25 Mar 2004 21:46:21 +0000 |
parents | cd33d1e3b709 |
children | 56e4423f16be |
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 |
10785 | 36 int vo_nomouse_input = 0; |
7539
56ea9db91251
-nograbpointer, based on old patch by Christian Ohm <chr.ohm@gmx.net>
arpi
parents:
7536
diff
changeset
|
37 int vo_grabpointer = 1; |
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; |
11542 | 43 int vo_ontop = 0; |
12021
cd33d1e3b709
move refreshrate and adapter_num variables to video_out because they might be usefull for other drivers, too
faust3
parents:
11542
diff
changeset
|
44 int vo_adapter_num=0; |
cd33d1e3b709
move refreshrate and adapter_num variables to video_out because they might be usefull for other drivers, too
faust3
parents:
11542
diff
changeset
|
45 int vo_refresh_rate=0; |
388 | 46 |
2707 | 47 int vo_pts=0; // for hw decoding |
3201 | 48 float vo_fps=0; // for mp1e rte |
2707 | 49 |
1184 | 50 char *vo_subdevice = NULL; |
5431
013458752947
disabling direct rendering by default (too buggy and conflicts with osd/sub)
arpi
parents:
5296
diff
changeset
|
51 int vo_directrendering=0; |
6781 | 52 |
10988 | 53 int vo_colorkey = 0x0000ff00; // default colorkey is green |
11158
85f4534d1edb
Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents:
11017
diff
changeset
|
54 // (0xff000000 means that colorkey has been disabled) |
10988 | 55 |
1 | 56 // |
57 // Externally visible list of all vo drivers | |
58 // | |
59 extern vo_functions_t video_out_mga; | |
60 extern vo_functions_t video_out_xmga; | |
61 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
|
62 extern vo_functions_t video_out_xover; |
10316 | 63 extern vo_functions_t video_out_xvmc; |
1 | 64 extern vo_functions_t video_out_xv; |
65 extern vo_functions_t video_out_gl; | |
2124 | 66 extern vo_functions_t video_out_gl2; |
12 | 67 extern vo_functions_t video_out_dga; |
38 | 68 extern vo_functions_t video_out_fsdga; |
1 | 69 extern vo_functions_t video_out_sdl; |
70 extern vo_functions_t video_out_3dfx; | |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
71 extern vo_functions_t video_out_tdfxfb; |
1 | 72 extern vo_functions_t video_out_null; |
2528 | 73 //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
|
74 extern vo_functions_t video_out_zr; |
11390
32eb3dfe44c9
new zoran driver as discussed on the CVS list. Hardware passthrough is
rik
parents:
11158
diff
changeset
|
75 extern vo_functions_t video_out_zr2; |
7326
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
76 extern vo_functions_t video_out_bl; |
1 | 77 extern vo_functions_t video_out_pgm; |
78 extern vo_functions_t video_out_md5; | |
79 extern vo_functions_t video_out_syncfb; | |
225 | 80 extern vo_functions_t video_out_fbdev; |
10763
7436a53876b0
vo_fbdev2 written by Joey Parrish with some minor modifications
alex
parents:
10689
diff
changeset
|
81 extern vo_functions_t video_out_fbdev2; |
286 | 82 extern vo_functions_t video_out_svga; |
528 | 83 extern vo_functions_t video_out_png; |
1130 | 84 extern vo_functions_t video_out_ggi; |
1511 | 85 extern vo_functions_t video_out_aa; |
1871 | 86 extern vo_functions_t video_out_mpegpes; |
4599 | 87 extern vo_functions_t video_out_yuv4mpeg; |
7536
70c35cd5db1f
-vo directx driver by Sascha Sommer <saschasommer@freenet.de>
arpi
parents:
7435
diff
changeset
|
88 #ifdef HAVE_DIRECTX |
70c35cd5db1f
-vo directx driver by Sascha Sommer <saschasommer@freenet.de>
arpi
parents:
7435
diff
changeset
|
89 extern vo_functions_t video_out_directx; |
70c35cd5db1f
-vo directx driver by Sascha Sommer <saschasommer@freenet.de>
arpi
parents:
7435
diff
changeset
|
90 #endif |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
91 #ifdef HAVE_DXR2 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
92 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
|
93 #endif |
2645 | 94 extern vo_functions_t video_out_dxr3; |
5648 | 95 #ifdef HAVE_JPEG |
96 extern vo_functions_t video_out_jpeg; | |
97 #endif | |
6053 | 98 #ifdef HAVE_GIF |
99 extern vo_functions_t video_out_gif89a; | |
100 #endif | |
4561 | 101 #ifdef HAVE_VESA |
2244 | 102 extern vo_functions_t video_out_vesa; |
103 #endif | |
8013
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
104 #ifdef HAVE_DIRECTFB |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
105 extern vo_functions_t video_out_directfb; |
10047 | 106 #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
|
107 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
|
108 #endif |
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
109 #endif |
4124 | 110 #ifdef CONFIG_VIDIX |
111 extern vo_functions_t video_out_xvidix; | |
10979
ea4426db0db5
new vidix vo modules for textmode console and windows
faust3
parents:
10880
diff
changeset
|
112 extern vo_functions_t video_out_winvidix; |
11017 | 113 extern vo_functions_t video_out_cvidix; |
4124 | 114 #endif |
9546
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
115 #ifdef HAVE_TDFX_VID |
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
116 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
|
117 #endif |
10689 | 118 #ifdef HAVE_TGA |
119 extern vo_functions_t video_out_tga; | |
120 #endif | |
4124 | 121 |
1 | 122 vo_functions_t* video_out_drivers[] = |
123 { | |
9546
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
124 #ifdef HAVE_TDFX_VID |
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
125 &video_out_tdfx_vid, |
8feb4bb5b334
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents:
9380
diff
changeset
|
126 #endif |
8729
561aa9c850f7
Rearrange the vo and ao driver order to prefer the native drivers and give
diego
parents:
8148
diff
changeset
|
127 #ifdef HAVE_DIRECTX |
561aa9c850f7
Rearrange the vo and ao driver order to prefer the native drivers and give
diego
parents:
8148
diff
changeset
|
128 &video_out_directx, |
561aa9c850f7
Rearrange the vo and ao driver order to prefer the native drivers and give
diego
parents:
8148
diff
changeset
|
129 #endif |
1179 | 130 #ifdef HAVE_XMGA |
1 | 131 &video_out_xmga, |
132 #endif | |
1179 | 133 #ifdef HAVE_MGA |
1 | 134 &video_out_mga, |
135 #endif | |
136 #ifdef HAVE_SYNCFB | |
137 &video_out_syncfb, | |
138 #endif | |
139 #ifdef HAVE_3DFX | |
140 &video_out_3dfx, | |
141 #endif | |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
142 #ifdef HAVE_TDFXFB |
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
143 &video_out_tdfxfb, |
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
144 #endif |
10316 | 145 #ifdef HAVE_XVMC |
146 &video_out_xvmc, | |
147 #endif | |
1 | 148 #ifdef HAVE_XV |
149 &video_out_xv, | |
150 #endif | |
151 #ifdef HAVE_X11 | |
152 &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
|
153 &video_out_xover, |
1 | 154 #endif |
155 #ifdef HAVE_GL | |
10880
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
10785
diff
changeset
|
156 #ifndef GL_WIN32 |
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
10785
diff
changeset
|
157 &video_out_gl, |
ba9557e864c0
vo_gl2 port to win32 patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
10785
diff
changeset
|
158 #endif |
2124 | 159 &video_out_gl2, |
1 | 160 #endif |
12 | 161 #ifdef HAVE_DGA |
162 &video_out_dga, | |
1235 | 163 // &video_out_fsdga, |
12 | 164 #endif |
1 | 165 #ifdef HAVE_SDL |
166 &video_out_sdl, | |
167 #endif | |
1235 | 168 #ifdef HAVE_GGI |
169 &video_out_ggi, | |
170 #endif | |
234 | 171 #ifdef HAVE_FBDEV |
172 &video_out_fbdev, | |
10763
7436a53876b0
vo_fbdev2 written by Joey Parrish with some minor modifications
alex
parents:
10689
diff
changeset
|
173 &video_out_fbdev2, |
234 | 174 #endif |
286 | 175 #ifdef HAVE_SVGALIB |
176 &video_out_svga, | |
177 #endif | |
1511 | 178 #ifdef HAVE_AA |
179 &video_out_aa, | |
180 #endif | |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
181 #ifdef HAVE_DXR2 |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
182 &video_out_dxr2, |
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
183 #endif |
2645 | 184 #ifdef HAVE_DXR3 |
185 &video_out_dxr3, | |
186 #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
|
187 #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
|
188 &video_out_zr, |
11390
32eb3dfe44c9
new zoran driver as discussed on the CVS list. Hardware passthrough is
rik
parents:
11158
diff
changeset
|
189 &video_out_zr2, |
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
|
190 #endif |
7326
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
191 #ifdef HAVE_BL |
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
192 &video_out_bl, |
ec3e58120e2a
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents:
7069
diff
changeset
|
193 #endif |
1511 | 194 |
529 | 195 #ifdef HAVE_PNG |
196 &video_out_png, | |
197 #endif | |
5648 | 198 #ifdef HAVE_JPEG |
199 &video_out_jpeg, | |
200 #endif | |
6053 | 201 #ifdef HAVE_GIF |
202 &video_out_gif89a, | |
203 #endif | |
1 | 204 &video_out_null, |
2528 | 205 // &video_out_odivx, |
1 | 206 &video_out_pgm, |
207 &video_out_md5, | |
1871 | 208 &video_out_mpegpes, |
4599 | 209 &video_out_yuv4mpeg, |
4561 | 210 #ifdef HAVE_VESA |
2244 | 211 &video_out_vesa, |
212 #endif | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
213 #ifdef HAVE_DIRECTFB |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
214 &video_out_directfb, |
10047 | 215 #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
|
216 &video_out_dfbmga, |
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
217 #endif |
bd100a3d486f
Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents:
7867
diff
changeset
|
218 #endif |
10979
ea4426db0db5
new vidix vo modules for textmode console and windows
faust3
parents:
10880
diff
changeset
|
219 #ifdef CONFIG_VIDIX |
ea4426db0db5
new vidix vo modules for textmode console and windows
faust3
parents:
10880
diff
changeset
|
220 #ifdef HAVE_X11 |
4124 | 221 &video_out_xvidix, |
222 #endif | |
10979
ea4426db0db5
new vidix vo modules for textmode console and windows
faust3
parents:
10880
diff
changeset
|
223 #ifdef WIN32 |
ea4426db0db5
new vidix vo modules for textmode console and windows
faust3
parents:
10880
diff
changeset
|
224 &video_out_winvidix, |
ea4426db0db5
new vidix vo modules for textmode console and windows
faust3
parents:
10880
diff
changeset
|
225 #endif |
11017 | 226 &video_out_cvidix, |
10979
ea4426db0db5
new vidix vo modules for textmode console and windows
faust3
parents:
10880
diff
changeset
|
227 #endif |
10689 | 228 #ifdef HAVE_TGA |
229 &video_out_tga, | |
230 #endif | |
1 | 231 NULL |
232 }; | |
6069
8e88e92fe331
Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents:
6053
diff
changeset
|
233 |
7562
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
234 void list_video_out(){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
235 int i=0; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
236 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
|
237 while (video_out_drivers[i]) { |
8148
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
8013
diff
changeset
|
238 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
|
239 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
|
240 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
241 printf("\n"); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
242 } |
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 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
|
245 int i; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
246 // 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
|
247 if(vo_list && vo_list[0]) |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
248 while(vo_list[0][0]){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
249 char* vo=strdup(vo_list[0]); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
250 vo_subdevice=strchr(vo,':'); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
251 if(vo_subdevice){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
252 vo_subdevice[0]=0; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
253 ++vo_subdevice; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
254 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
255 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
|
256 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
|
257 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
|
258 if(!strcmp(info->short_name,vo)){ |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
259 // name matches, try it |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
260 if(!video_driver->preinit(vo_subdevice)) |
10220 | 261 { |
262 free(vo); | |
7562
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
263 return video_driver; // success! |
10220 | 264 } |
7562
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
265 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
266 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
267 // continue... |
10220 | 268 free(vo); |
7562
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
269 ++vo_list; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
270 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
|
271 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
272 // now try the rest... |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
273 vo_subdevice=NULL; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
274 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
|
275 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
|
276 if(!video_driver->preinit(vo_subdevice)) |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
277 return video_driver; // success! |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
278 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
279 return NULL; |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
280 } |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
281 |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
282 |
7069 | 283 #if defined(HAVE_FBDEV)||defined(HAVE_VESA) |
284 /* Borrowed from vo_fbdev.c | |
285 Monitor ranges related functions*/ | |
286 | |
287 char *monitor_hfreq_str = NULL; | |
288 char *monitor_vfreq_str = NULL; | |
289 char *monitor_dotclock_str = NULL; | |
290 | |
291 float range_max(range_t *r) | |
292 { | |
293 float max = 0; | |
294 | |
295 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++) | |
296 if (max < r->max) max = r->max; | |
297 return max; | |
298 } | |
299 | |
300 | |
301 int in_range(range_t *r, float f) | |
302 { | |
303 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++) | |
304 if (f >= r->min && f <= r->max) | |
305 return 1; | |
306 return 0; | |
307 } | |
308 | |
309 range_t *str2range(char *s) | |
310 { | |
311 float tmp_min, tmp_max; | |
312 char *endptr = s; // to start the loop | |
313 range_t *r = NULL; | |
314 int i; | |
315 | |
316 if (!s) | |
317 return NULL; | |
318 for (i = 0; *endptr; i++) { | |
319 if (*s == ',') | |
320 goto out_err; | |
321 if (!(r = (range_t *) realloc(r, sizeof(*r) * (i + 2)))) { | |
322 printf("can't realloc 'r'\n"); | |
323 return NULL; | |
324 } | |
325 tmp_min = strtod(s, &endptr); | |
326 if (*endptr == 'k' || *endptr == 'K') { | |
327 tmp_min *= 1000.0; | |
328 endptr++; | |
329 } else if (*endptr == 'm' || *endptr == 'M') { | |
330 tmp_min *= 1000000.0; | |
331 endptr++; | |
332 } | |
333 if (*endptr == '-') { | |
334 tmp_max = strtod(endptr + 1, &endptr); | |
335 if (*endptr == 'k' || *endptr == 'K') { | |
336 tmp_max *= 1000.0; | |
337 endptr++; | |
338 } else if (*endptr == 'm' || *endptr == 'M') { | |
339 tmp_max *= 1000000.0; | |
340 endptr++; | |
341 } | |
342 if (*endptr != ',' && *endptr) | |
343 goto out_err; | |
344 } else if (*endptr == ',' || !*endptr) { | |
345 tmp_max = tmp_min; | |
346 } else | |
347 goto out_err; | |
348 r[i].min = tmp_min; | |
349 r[i].max = tmp_max; | |
350 if (r[i].min < 0 || r[i].max < 0) | |
351 goto out_err; | |
352 s = endptr + 1; | |
353 } | |
354 r[i].min = r[i].max = -1; | |
355 return r; | |
356 out_err: | |
357 if (r) | |
358 free(r); | |
359 return NULL; | |
360 } | |
361 | |
362 /* Borrowed from vo_fbdev.c END */ | |
363 #endif | |
364 |