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