annotate libvo/video_out.c @ 24177:317cb2a7057c

Mark vfw2menc as Windows-only.
author diego
date Sat, 25 Aug 2007 17:33:35 +0000
parents 73c9e15e7341
children bfad89d872e1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
5 #include <stdio.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6 #include <stdlib.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
7 #include <string.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
8
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
9 #include <unistd.h>
5296
92bfedc77567 we don't need mman.h
arpi
parents: 5224
diff changeset
10 //#include <sys/mman.h>
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12 #include "config.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13 #include "video_out.h"
22232
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
14 #include "aspect.h"
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
15 #include "geometry.h"
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
16
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
17 #include "mp_msg.h"
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
18 #include "help_mp.h"
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
19
13787
e047e70a9767 Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents: 13744
diff changeset
20 #include "osdep/shmem.h"
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
21
5074
1bf1dd918706 vo_flags unused
arpi
parents: 4981
diff changeset
22 //int vo_flags=0;
4736
57f053d75893 added VOFLAG_* definitions and int vo_flags
alex
parents: 4667
diff changeset
23
18116
d75953576ae4 Fix and improve xinerama support
reimar
parents: 17566
diff changeset
24 int xinerama_screen = -1;
d75953576ae4 Fix and improve xinerama support
reimar
parents: 17566
diff changeset
25 int xinerama_x;
d75953576ae4 Fix and improve xinerama support
reimar
parents: 17566
diff changeset
26 int xinerama_y;
d75953576ae4 Fix and improve xinerama support
reimar
parents: 17566
diff changeset
27
388
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
28 // currect resolution/bpp on screen: (should be autodetected by vo_init())
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
29 int vo_depthonscreen=0;
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
30 int vo_screenwidth=0;
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
31 int vo_screenheight=0;
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
32
5511
7a24a067f0af vo_config_count now counts calls to vo->config()
arpi
parents: 5431
diff changeset
33 int vo_config_count=0;
7a24a067f0af vo_config_count now counts calls to vo->config()
arpi
parents: 5431
diff changeset
34
388
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
35 // 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
36 int vo_dx=0;
38a9cddd9e4d added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents: 4736
diff changeset
37 int vo_dy=0;
388
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
38 int vo_dwidth=0;
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
39 int vo_dheight=0;
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
40 int vo_dbpp=0;
4981
bfc652fc7f43 rewrite fullscreen support in some libvo driver
pontscho
parents: 4811
diff changeset
41
10785
e2dcade78bc6 -nomouseinput support for vo_sdl
alex
parents: 10763
diff changeset
42 int vo_nomouse_input = 0;
7539
56ea9db91251 -nograbpointer, based on old patch by Christian Ohm <chr.ohm@gmx.net>
arpi
parents: 7536
diff changeset
43 int vo_grabpointer = 1;
14066
db6de212435b it's stupid for the default to be something both slower (for xv+dr) and visually incorrect.. use -nodouble if you want old behavior
rfelker
parents: 13787
diff changeset
44 int vo_doublebuffering = 1;
4667
95fa3901cafc add vsync support for doublebuffering to vo_vesa
atmos4
parents: 4599
diff changeset
45 int vo_vsync = 0;
4981
bfc652fc7f43 rewrite fullscreen support in some libvo driver
pontscho
parents: 4811
diff changeset
46 int vo_fs = 0;
1269
ff9348b4d305 added vo_fsmode
arpi
parents: 1235
diff changeset
47 int vo_fsmode = 0;
6304
ee65527096c2 pan&scan support with -vo xv by ?? <mplayer@svennevid.net>
arpi
parents: 6069
diff changeset
48 float vo_panscan = 0.0f;
11542
85e503ddf65f runtime 'stay-on-top' functionality
joey
parents: 11390
diff changeset
49 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
50 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
51 int vo_refresh_rate=0;
12371
c000f4c23efd keepaspect and nokeepaspect are now useable by all vos
faust3
parents: 12129
diff changeset
52 int vo_keepaspect=1;
12912
1f6bb2356d18 add var vo_rootwin and -rootwin switch for mac osx
nplourde
parents: 12601
diff changeset
53 int vo_rootwin=0;
16968
e9d849bf8050 add a switch, slave command, and vo control to toggle borderless window.
joey
parents: 16181
diff changeset
54 int vo_border=1;
14207
f8670fdf6ab1 added -wid support for vo_directx.
joey
parents: 14066
diff changeset
55 int WinID = -1;
388
ccb5ebfaaeac -bpp changes
arpi_esp
parents: 286
diff changeset
56
2707
97efb75dceb8 vo_pts added
arpi
parents: 2645
diff changeset
57 int vo_pts=0; // for hw decoding
19021
94d50878fb0e Remove remnants of old libmp1e support.
diego
parents: 18535
diff changeset
58 float vo_fps=0;
2707
97efb75dceb8 vo_pts added
arpi
parents: 2645
diff changeset
59
1184
e8c3f89ecd96 vo_subdevice implemented
al3x
parents: 1179
diff changeset
60 char *vo_subdevice = NULL;
5431
013458752947 disabling direct rendering by default (too buggy and conflicts with osd/sub)
arpi
parents: 5296
diff changeset
61 int vo_directrendering=0;
6781
924263b4df10 eq reworked
alex
parents: 6755
diff changeset
62
10988
c2bff70784d5 user settable colorkey
alex
parents: 10979
diff changeset
63 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
64 // (0xff000000 means that colorkey has been disabled)
10988
c2bff70784d5 user settable colorkey
alex
parents: 10979
diff changeset
65
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
66 //
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
67 // Externally visible list of all vo drivers
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
68 //
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
69 extern vo_functions_t video_out_mga;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
70 extern vo_functions_t video_out_xmga;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
71 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
72 extern vo_functions_t video_out_xover;
10316
fdc349b9bd1d basic xvmc image support
iive
parents: 10220
diff changeset
73 extern vo_functions_t video_out_xvmc;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
74 extern vo_functions_t video_out_xv;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
75 extern vo_functions_t video_out_gl;
2124
0bb00e528669 new version by Sven Goethel
arpi
parents: 1979
diff changeset
76 extern vo_functions_t video_out_gl2;
12
7400af1c6d44 DGA support
arpi_esp
parents: 1
diff changeset
77 extern vo_functions_t video_out_dga;
38
46f3aa28aa83 added fsdga driver
arpi_esp
parents: 31
diff changeset
78 extern vo_functions_t video_out_fsdga;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
79 extern vo_functions_t video_out_sdl;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
80 extern vo_functions_t video_out_3dfx;
1979
6278f566cd91 tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents: 1871
diff changeset
81 extern vo_functions_t video_out_tdfxfb;
18535
8e92dd0ff93a Add YUY2 and back end scaling on S3 Virge chips in combination with fbdev.
gpoirier
parents: 18237
diff changeset
82 extern vo_functions_t video_out_s3fb;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
83 extern vo_functions_t video_out_null;
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
84 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
85 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
86 extern vo_functions_t video_out_bl;
225
62ec84961b27 vo_fbdev added
szabii
parents: 202
diff changeset
87 extern vo_functions_t video_out_fbdev;
10763
7436a53876b0 vo_fbdev2 written by Joey Parrish with some minor modifications
alex
parents: 10689
diff changeset
88 extern vo_functions_t video_out_fbdev2;
286
b2f3f2ab3787 integrated vo_svga by se7en
arpi_esp
parents: 234
diff changeset
89 extern vo_functions_t video_out_svga;
528
c19b0f6e03a5 added vo png support
atmosfear
parents: 388
diff changeset
90 extern vo_functions_t video_out_png;
1130
a95cedf133c1 vo_format_name added
al3x
parents: 529
diff changeset
91 extern vo_functions_t video_out_ggi;
1511
f29e0c2bb675 Added cool aalib vo driver.
atmos4
parents: 1269
diff changeset
92 extern vo_functions_t video_out_aa;
12129
c1aff21286dd libcaca video output driver by Howell Tam
alex
parents: 12120
diff changeset
93 extern vo_functions_t video_out_caca;
1871
cb5dde69354b Mpeg PES added
arpi
parents: 1511
diff changeset
94 extern vo_functions_t video_out_mpegpes;
4599
88843786301e vo_yuv4mpeg added
arpi
parents: 4561
diff changeset
95 extern vo_functions_t video_out_yuv4mpeg;
7536
70c35cd5db1f -vo directx driver by Sascha Sommer <saschasommer@freenet.de>
arpi
parents: 7435
diff changeset
96 #ifdef HAVE_DIRECTX
70c35cd5db1f -vo directx driver by Sascha Sommer <saschasommer@freenet.de>
arpi
parents: 7435
diff changeset
97 extern vo_functions_t video_out_directx;
70c35cd5db1f -vo directx driver by Sascha Sommer <saschasommer@freenet.de>
arpi
parents: 7435
diff changeset
98 #endif
6069
8e88e92fe331 Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents: 6053
diff changeset
99 #ifdef HAVE_DXR2
8e88e92fe331 Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents: 6053
diff changeset
100 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
101 #endif
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents: 2599
diff changeset
102 extern vo_functions_t video_out_dxr3;
19137
d9656bb2ae0e new vo driver for ivtv cards tv-out through internal h/w mpeg decoder
ben
parents: 19082
diff changeset
103 #ifdef HAVE_IVTV
d9656bb2ae0e new vo driver for ivtv cards tv-out through internal h/w mpeg decoder
ben
parents: 19082
diff changeset
104 extern vo_functions_t video_out_ivtv;
d9656bb2ae0e new vo driver for ivtv cards tv-out through internal h/w mpeg decoder
ben
parents: 19082
diff changeset
105 #endif
23905
fb63124c7920 v4l2 audio/video outputs for linux 2.6.22+ kernels (outputs formerly known as ivtv)
ben
parents: 23814
diff changeset
106 #ifdef HAVE_V4L2_DECODER
fb63124c7920 v4l2 audio/video outputs for linux 2.6.22+ kernels (outputs formerly known as ivtv)
ben
parents: 23814
diff changeset
107 extern vo_functions_t video_out_v4l2;
fb63124c7920 v4l2 audio/video outputs for linux 2.6.22+ kernels (outputs formerly known as ivtv)
ben
parents: 23814
diff changeset
108 #endif
5648
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5511
diff changeset
109 #ifdef HAVE_JPEG
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5511
diff changeset
110 extern vo_functions_t video_out_jpeg;
c3ca8f05b3a9 add jpeg support for libvo
pontscho
parents: 5511
diff changeset
111 #endif
6053
759c5a3314a2 -vo gif - by Joey Parrish <joey@yunamusic.com>
arpi
parents: 5648
diff changeset
112 #ifdef HAVE_GIF
759c5a3314a2 -vo gif - by Joey Parrish <joey@yunamusic.com>
arpi
parents: 5648
diff changeset
113 extern vo_functions_t video_out_gif89a;
759c5a3314a2 -vo gif - by Joey Parrish <joey@yunamusic.com>
arpi
parents: 5648
diff changeset
114 #endif
4561
b3b2fc48b045 finished making vesa optional
rfelker
parents: 4494
diff changeset
115 #ifdef HAVE_VESA
2244
4e464b527f5a vo_vesa support
nick
parents: 2124
diff changeset
116 extern vo_functions_t video_out_vesa;
4e464b527f5a vo_vesa support
nick
parents: 2124
diff changeset
117 #endif
8013
bd100a3d486f Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents: 7867
diff changeset
118 #ifdef HAVE_DIRECTFB
3275
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3201
diff changeset
119 extern vo_functions_t video_out_directfb;
20210
409f808489bf Create proper define for DFBMGA.
diego
parents: 19137
diff changeset
120 #ifdef HAVE_DFBMGA
8013
bd100a3d486f Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents: 7867
diff changeset
121 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
122 #endif
bd100a3d486f Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents: 7867
diff changeset
123 #endif
4124
562b43b604d4 added vo_xvidix
alex
parents: 4088
diff changeset
124 #ifdef CONFIG_VIDIX
562b43b604d4 added vo_xvidix
alex
parents: 4088
diff changeset
125 extern vo_functions_t video_out_xvidix;
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents: 10880
diff changeset
126 extern vo_functions_t video_out_winvidix;
11017
afdf982f0673 consolevidix -> cvidix
faust3
parents: 10988
diff changeset
127 extern vo_functions_t video_out_cvidix;
4124
562b43b604d4 added vo_xvidix
alex
parents: 4088
diff changeset
128 #endif
9546
8feb4bb5b334 vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents: 9380
diff changeset
129 #ifdef HAVE_TDFX_VID
8feb4bb5b334 vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents: 9380
diff changeset
130 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
131 #endif
23984
73c9e15e7341 add XVR-100 vo, patch by Balatoni Denes (dbalatoni interware hu)
reimar
parents: 23905
diff changeset
132 #ifdef HAVE_XVR100
73c9e15e7341 add XVR-100 vo, patch by Balatoni Denes (dbalatoni interware hu)
reimar
parents: 23905
diff changeset
133 extern vo_functions_t video_out_xvr100;
73c9e15e7341 add XVR-100 vo, patch by Balatoni Denes (dbalatoni interware hu)
reimar
parents: 23905
diff changeset
134 #endif
10689
c6c54f467984 TGA image output VO module
arpi
parents: 10316
diff changeset
135 #ifdef HAVE_TGA
c6c54f467984 TGA image output VO module
arpi
parents: 10316
diff changeset
136 extern vo_functions_t video_out_tga;
c6c54f467984 TGA image output VO module
arpi
parents: 10316
diff changeset
137 #endif
12120
56e4423f16be Quartz/MacOSX video output module by Nicolas Plourde
alex
parents: 12021
diff changeset
138 #ifdef MACOSX
15347
18d404eebb28 do not define video_out_macosx if corevideo is not present
nplourde
parents: 15291
diff changeset
139 #ifdef MACOSX_COREVIDEO
15291
21e7332ea44e macosx core video module
nplourde
parents: 14207
diff changeset
140 extern vo_functions_t video_out_macosx;
15347
18d404eebb28 do not define video_out_macosx if corevideo is not present
nplourde
parents: 15291
diff changeset
141 #endif
12120
56e4423f16be Quartz/MacOSX video output module by Nicolas Plourde
alex
parents: 12021
diff changeset
142 extern vo_functions_t video_out_quartz;
56e4423f16be Quartz/MacOSX video output module by Nicolas Plourde
alex
parents: 12021
diff changeset
143 #endif
13744
d66e3d5865b8 Add --enable and --disable options for vo_pnm and vo_md5sum to configure.
ivo
parents: 13551
diff changeset
144 #ifdef HAVE_PNM
13397
6cfffb50ea42 This patch enables the compilation and linking of vo_pnm (the portable
ivo
parents: 12912
diff changeset
145 extern vo_functions_t video_out_pnm;
13744
d66e3d5865b8 Add --enable and --disable options for vo_pnm and vo_md5sum to configure.
ivo
parents: 13551
diff changeset
146 #endif
d66e3d5865b8 Add --enable and --disable options for vo_pnm and vo_md5sum to configure.
ivo
parents: 13551
diff changeset
147 #ifdef HAVE_MD5SUM
13398
ae4e34f267bb This patch enables the compilation and linking of vo_md5sum to libvo.
ivo
parents: 13397
diff changeset
148 extern vo_functions_t video_out_md5sum;
13744
d66e3d5865b8 Add --enable and --disable options for vo_pnm and vo_md5sum to configure.
ivo
parents: 13551
diff changeset
149 #endif
4124
562b43b604d4 added vo_xvidix
alex
parents: 4088
diff changeset
150
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
151 vo_functions_t* video_out_drivers[] =
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
152 {
23984
73c9e15e7341 add XVR-100 vo, patch by Balatoni Denes (dbalatoni interware hu)
reimar
parents: 23905
diff changeset
153 #ifdef HAVE_XVR100
73c9e15e7341 add XVR-100 vo, patch by Balatoni Denes (dbalatoni interware hu)
reimar
parents: 23905
diff changeset
154 &video_out_xvr100,
73c9e15e7341 add XVR-100 vo, patch by Balatoni Denes (dbalatoni interware hu)
reimar
parents: 23905
diff changeset
155 #endif
9546
8feb4bb5b334 vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents: 9380
diff changeset
156 #ifdef HAVE_TDFX_VID
8feb4bb5b334 vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents: 9380
diff changeset
157 &video_out_tdfx_vid,
8feb4bb5b334 vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
albeu
parents: 9380
diff changeset
158 #endif
8729
561aa9c850f7 Rearrange the vo and ao driver order to prefer the native drivers and give
diego
parents: 8148
diff changeset
159 #ifdef HAVE_DIRECTX
561aa9c850f7 Rearrange the vo and ao driver order to prefer the native drivers and give
diego
parents: 8148
diff changeset
160 &video_out_directx,
561aa9c850f7 Rearrange the vo and ao driver order to prefer the native drivers and give
diego
parents: 8148
diff changeset
161 #endif
12601
39ea0995dcb1 moved vo_quartz higher in the list
nplourde
parents: 12512
diff changeset
162 #ifdef MACOSX
15347
18d404eebb28 do not define video_out_macosx if corevideo is not present
nplourde
parents: 15291
diff changeset
163 #ifdef MACOSX_COREVIDEO
15291
21e7332ea44e macosx core video module
nplourde
parents: 14207
diff changeset
164 &video_out_macosx,
15347
18d404eebb28 do not define video_out_macosx if corevideo is not present
nplourde
parents: 15291
diff changeset
165 #endif
12601
39ea0995dcb1 moved vo_quartz higher in the list
nplourde
parents: 12512
diff changeset
166 &video_out_quartz,
39ea0995dcb1 moved vo_quartz higher in the list
nplourde
parents: 12512
diff changeset
167 #endif
1179
2da8cd8aced9 --disable-xmga bug fix
pontscho
parents: 1149
diff changeset
168 #ifdef HAVE_XMGA
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
169 &video_out_xmga,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
170 #endif
1179
2da8cd8aced9 --disable-xmga bug fix
pontscho
parents: 1149
diff changeset
171 #ifdef HAVE_MGA
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
172 &video_out_mga,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
173 #endif
17069
e61494e575ca vo_tdfxfb should be preferred over vo_3dfx.
diego
parents: 16968
diff changeset
174 #ifdef HAVE_TDFXFB
e61494e575ca vo_tdfxfb should be preferred over vo_3dfx.
diego
parents: 16968
diff changeset
175 &video_out_tdfxfb,
e61494e575ca vo_tdfxfb should be preferred over vo_3dfx.
diego
parents: 16968
diff changeset
176 #endif
18535
8e92dd0ff93a Add YUY2 and back end scaling on S3 Virge chips in combination with fbdev.
gpoirier
parents: 18237
diff changeset
177 #ifdef HAVE_S3FB
8e92dd0ff93a Add YUY2 and back end scaling on S3 Virge chips in combination with fbdev.
gpoirier
parents: 18237
diff changeset
178 &video_out_s3fb,
8e92dd0ff93a Add YUY2 and back end scaling on S3 Virge chips in combination with fbdev.
gpoirier
parents: 18237
diff changeset
179 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
180 #ifdef HAVE_3DFX
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
181 &video_out_3dfx,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
182 #endif
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
183 #ifdef HAVE_XV
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
184 &video_out_xv,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
185 #endif
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
186 #ifdef HAVE_X11
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
187 &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
188 &video_out_xover,
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
189 #endif
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
190 #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
191 &video_out_gl,
2124
0bb00e528669 new version by Sven Goethel
arpi
parents: 1979
diff changeset
192 &video_out_gl2,
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
193 #endif
12
7400af1c6d44 DGA support
arpi_esp
parents: 1
diff changeset
194 #ifdef HAVE_DGA
7400af1c6d44 DGA support
arpi_esp
parents: 1
diff changeset
195 &video_out_dga,
1235
c823cb3a2608 fsdga disabled (obsolote)
arpi
parents: 1184
diff changeset
196 // &video_out_fsdga,
12
7400af1c6d44 DGA support
arpi_esp
parents: 1
diff changeset
197 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
198 #ifdef HAVE_SDL
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
199 &video_out_sdl,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
200 #endif
1235
c823cb3a2608 fsdga disabled (obsolote)
arpi
parents: 1184
diff changeset
201 #ifdef HAVE_GGI
c823cb3a2608 fsdga disabled (obsolote)
arpi
parents: 1184
diff changeset
202 &video_out_ggi,
c823cb3a2608 fsdga disabled (obsolote)
arpi
parents: 1184
diff changeset
203 #endif
234
fae0ed5ac7d2 fbdev compile fix
arpi_esp
parents: 225
diff changeset
204 #ifdef HAVE_FBDEV
fae0ed5ac7d2 fbdev compile fix
arpi_esp
parents: 225
diff changeset
205 &video_out_fbdev,
10763
7436a53876b0 vo_fbdev2 written by Joey Parrish with some minor modifications
alex
parents: 10689
diff changeset
206 &video_out_fbdev2,
234
fae0ed5ac7d2 fbdev compile fix
arpi_esp
parents: 225
diff changeset
207 #endif
286
b2f3f2ab3787 integrated vo_svga by se7en
arpi_esp
parents: 234
diff changeset
208 #ifdef HAVE_SVGALIB
b2f3f2ab3787 integrated vo_svga by se7en
arpi_esp
parents: 234
diff changeset
209 &video_out_svga,
b2f3f2ab3787 integrated vo_svga by se7en
arpi_esp
parents: 234
diff changeset
210 #endif
1511
f29e0c2bb675 Added cool aalib vo driver.
atmos4
parents: 1269
diff changeset
211 #ifdef HAVE_AA
f29e0c2bb675 Added cool aalib vo driver.
atmos4
parents: 1269
diff changeset
212 &video_out_aa,
f29e0c2bb675 Added cool aalib vo driver.
atmos4
parents: 1269
diff changeset
213 #endif
12129
c1aff21286dd libcaca video output driver by Howell Tam
alex
parents: 12120
diff changeset
214 #ifdef HAVE_CACA
c1aff21286dd libcaca video output driver by Howell Tam
alex
parents: 12120
diff changeset
215 &video_out_caca,
c1aff21286dd libcaca video output driver by Howell Tam
alex
parents: 12120
diff changeset
216 #endif
6069
8e88e92fe331 Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents: 6053
diff changeset
217 #ifdef HAVE_DXR2
8e88e92fe331 Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents: 6053
diff changeset
218 &video_out_dxr2,
8e88e92fe331 Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents: 6053
diff changeset
219 #endif
2645
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents: 2599
diff changeset
220 #ifdef HAVE_DXR3
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents: 2599
diff changeset
221 &video_out_dxr3,
9d8d69fc517c ao_dxr3 by David Holm <dholm@telia.com>
arpi
parents: 2599
diff changeset
222 #endif
19137
d9656bb2ae0e new vo driver for ivtv cards tv-out through internal h/w mpeg decoder
ben
parents: 19082
diff changeset
223 #ifdef HAVE_IVTV
d9656bb2ae0e new vo driver for ivtv cards tv-out through internal h/w mpeg decoder
ben
parents: 19082
diff changeset
224 &video_out_ivtv,
d9656bb2ae0e new vo driver for ivtv cards tv-out through internal h/w mpeg decoder
ben
parents: 19082
diff changeset
225 #endif
23905
fb63124c7920 v4l2 audio/video outputs for linux 2.6.22+ kernels (outputs formerly known as ivtv)
ben
parents: 23814
diff changeset
226 #ifdef HAVE_V4L2_DECODER
fb63124c7920 v4l2 audio/video outputs for linux 2.6.22+ kernels (outputs formerly known as ivtv)
ben
parents: 23814
diff changeset
227 &video_out_v4l2,
fb63124c7920 v4l2 audio/video outputs for linux 2.6.22+ kernels (outputs formerly known as ivtv)
ben
parents: 23814
diff changeset
228 #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
229 #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
230 &video_out_zr,
11390
32eb3dfe44c9 new zoran driver as discussed on the CVS list. Hardware passthrough is
rik
parents: 11158
diff changeset
231 &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
232 #endif
7326
ec3e58120e2a extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents: 7069
diff changeset
233 #ifdef HAVE_BL
ec3e58120e2a extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents: 7069
diff changeset
234 &video_out_bl,
ec3e58120e2a extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
rik
parents: 7069
diff changeset
235 #endif
4561
b3b2fc48b045 finished making vesa optional
rfelker
parents: 4494
diff changeset
236 #ifdef HAVE_VESA
2244
4e464b527f5a vo_vesa support
nick
parents: 2124
diff changeset
237 &video_out_vesa,
4e464b527f5a vo_vesa support
nick
parents: 2124
diff changeset
238 #endif
3275
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3201
diff changeset
239 #ifdef HAVE_DIRECTFB
38344371432f vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents: 3201
diff changeset
240 &video_out_directfb,
20210
409f808489bf Create proper define for DFBMGA.
diego
parents: 19137
diff changeset
241 #ifdef HAVE_DFBMGA
8013
bd100a3d486f Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents: 7867
diff changeset
242 &video_out_dfbmga,
bd100a3d486f Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents: 7867
diff changeset
243 #endif
bd100a3d486f Here's a new vo plugin that uses DirectFB. It's meant for Matrox G400
arpi
parents: 7867
diff changeset
244 #endif
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents: 10880
diff changeset
245 #ifdef CONFIG_VIDIX
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents: 10880
diff changeset
246 #ifdef HAVE_X11
4124
562b43b604d4 added vo_xvidix
alex
parents: 4088
diff changeset
247 &video_out_xvidix,
562b43b604d4 added vo_xvidix
alex
parents: 4088
diff changeset
248 #endif
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents: 10880
diff changeset
249 #ifdef WIN32
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents: 10880
diff changeset
250 &video_out_winvidix,
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents: 10880
diff changeset
251 #endif
11017
afdf982f0673 consolevidix -> cvidix
faust3
parents: 10988
diff changeset
252 &video_out_cvidix,
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents: 10880
diff changeset
253 #endif
13551
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
254 &video_out_null,
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
255 // should not be auto-selected
17423
076ab46c63bd prevent xvmc from been loaded before xv, and generally before any autoprobed output
iive
parents: 17069
diff changeset
256 #ifdef HAVE_XVMC
076ab46c63bd prevent xvmc from been loaded before xv, and generally before any autoprobed output
iive
parents: 17069
diff changeset
257 &video_out_xvmc,
076ab46c63bd prevent xvmc from been loaded before xv, and generally before any autoprobed output
iive
parents: 17069
diff changeset
258 #endif
13551
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
259 &video_out_mpegpes,
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
260 &video_out_yuv4mpeg,
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
261 #ifdef HAVE_PNG
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
262 &video_out_png,
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
263 #endif
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
264 #ifdef HAVE_JPEG
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
265 &video_out_jpeg,
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
266 #endif
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
267 #ifdef HAVE_GIF
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
268 &video_out_gif89a,
2466b2ee99a8 move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
alex
parents: 13507
diff changeset
269 #endif
10689
c6c54f467984 TGA image output VO module
arpi
parents: 10316
diff changeset
270 #ifdef HAVE_TGA
c6c54f467984 TGA image output VO module
arpi
parents: 10316
diff changeset
271 &video_out_tga,
c6c54f467984 TGA image output VO module
arpi
parents: 10316
diff changeset
272 #endif
13744
d66e3d5865b8 Add --enable and --disable options for vo_pnm and vo_md5sum to configure.
ivo
parents: 13551
diff changeset
273 #ifdef HAVE_PNM
13397
6cfffb50ea42 This patch enables the compilation and linking of vo_pnm (the portable
ivo
parents: 12912
diff changeset
274 &video_out_pnm,
13744
d66e3d5865b8 Add --enable and --disable options for vo_pnm and vo_md5sum to configure.
ivo
parents: 13551
diff changeset
275 #endif
d66e3d5865b8 Add --enable and --disable options for vo_pnm and vo_md5sum to configure.
ivo
parents: 13551
diff changeset
276 #ifdef HAVE_MD5SUM
13398
ae4e34f267bb This patch enables the compilation and linking of vo_md5sum to libvo.
ivo
parents: 13397
diff changeset
277 &video_out_md5sum,
13744
d66e3d5865b8 Add --enable and --disable options for vo_pnm and vo_md5sum to configure.
ivo
parents: 13551
diff changeset
278 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
279 NULL
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
280 };
6069
8e88e92fe331 Initial support for dxr2. Based on patch from Tobias Diedrich <ranma@gmx.at>.
albeu
parents: 6053
diff changeset
281
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 17423
diff changeset
282 void list_video_out(void){
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
283 int i=0;
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
284 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers);
18237
4231482179b6 Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents: 18234
diff changeset
285 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_OUTPUTS\n");
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
286 while (video_out_drivers[i]) {
8148
5b39e79af5fe removed get_info, using the same sheme as in libmpcodecs instead
alex
parents: 8013
diff changeset
287 const vo_info_t *info = video_out_drivers[i++]->info;
18234
a107276371a8 Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents: 18116
diff changeset
288 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\t%s\t%s\n", info->short_name, info->name);
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
289 }
18234
a107276371a8 Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents: 18116
diff changeset
290 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\n");
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
291 }
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
292
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
293 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
294 int i;
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
295 // 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
296 if(vo_list && vo_list[0])
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
297 while(vo_list[0][0]){
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
298 char* vo=strdup(vo_list[0]);
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
299 vo_subdevice=strchr(vo,':');
13507
ced94062bbed Removal of vo_pgm and vo_md5, because they have been replaced by vo_pnm
ivo
parents: 13398
diff changeset
300 if (!strcmp(vo, "pgm"))
ced94062bbed Removal of vo_pgm and vo_md5, because they have been replaced by vo_pnm
ivo
parents: 13398
diff changeset
301 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_VO_PGM_HasBeenReplaced);
ced94062bbed Removal of vo_pgm and vo_md5, because they have been replaced by vo_pnm
ivo
parents: 13398
diff changeset
302 if (!strcmp(vo, "md5"))
ced94062bbed Removal of vo_pgm and vo_md5, because they have been replaced by vo_pnm
ivo
parents: 13398
diff changeset
303 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_VO_MD5_HasBeenReplaced);
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
304 if(vo_subdevice){
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
305 vo_subdevice[0]=0;
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
306 ++vo_subdevice;
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
307 }
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
308 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
309 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
310 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
311 if(!strcmp(info->short_name,vo)){
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
312 // name matches, try it
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
313 if(!video_driver->preinit(vo_subdevice))
10220
alex
parents: 10047
diff changeset
314 {
alex
parents: 10047
diff changeset
315 free(vo);
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
316 return video_driver; // success!
10220
alex
parents: 10047
diff changeset
317 }
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
318 }
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
319 }
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
320 // continue...
10220
alex
parents: 10047
diff changeset
321 free(vo);
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
322 ++vo_list;
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
323 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
324 }
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
325 // now try the rest...
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
326 vo_subdevice=NULL;
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
327 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
328 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
329 if(!video_driver->preinit(vo_subdevice))
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
330 return video_driver; // success!
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
331 }
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
332 return NULL;
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
333 }
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
334
22232
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
335 int config_video_out(vo_functions_t *vo, uint32_t width, uint32_t height,
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
336 uint32_t d_width, uint32_t d_height, uint32_t flags,
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
337 char *title, uint32_t format) {
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
338 panscan_init();
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
339 aspect_save_orig(width,height);
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
340 aspect_save_prescale(d_width,d_height);
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
341
22324
475c60dcd459 10, checked for the wrong thing. Do aspect scaling only in config_video_out
reimar
parents: 22249
diff changeset
342 if (vo->control(VOCTRL_UPDATE_SCREENINFO, NULL) == VO_TRUE) {
22232
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
343 aspect(&d_width,&d_height,A_NOZOOM);
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
344 vo_dx = (int)(vo_screenwidth - d_width) / 2;
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
345 vo_dy = (int)(vo_screenheight - d_height) / 2;
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
346 geometry(&vo_dx, &vo_dy, &d_width, &d_height,
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
347 vo_screenwidth, vo_screenheight);
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
348 vo_dx += xinerama_x;
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
349 vo_dy += xinerama_y;
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
350 vo_dwidth = d_width;
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
351 vo_dheight = d_height;
22249
3000f296fecc Fix 10 in r22250, do not use screendimensions if not set
reimar
parents: 22246
diff changeset
352 }
22232
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
353
22246
cd659496eafd Revert r22255 on iive's request.
reimar
parents: 22237
diff changeset
354 return vo->config(width, height, d_width, d_height, flags, title, format);
22232
d0b60d14d8d7 Move common vo initialization code to video_out.c
reimar
parents: 20210
diff changeset
355 }
7562
92188b57a062 video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents: 7539
diff changeset
356
7069
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
357 #if defined(HAVE_FBDEV)||defined(HAVE_VESA)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
358 /* Borrowed from vo_fbdev.c
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
359 Monitor ranges related functions*/
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
360
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
361 char *monitor_hfreq_str = NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
362 char *monitor_vfreq_str = NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
363 char *monitor_dotclock_str = NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
364
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
365 float range_max(range_t *r)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
366 {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
367 float max = 0;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
368
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
369 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
370 if (max < r->max) max = r->max;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
371 return max;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
372 }
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
373
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
374
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
375 int in_range(range_t *r, float f)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
376 {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
377 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
378 if (f >= r->min && f <= r->max)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
379 return 1;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
380 return 0;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
381 }
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
382
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
383 range_t *str2range(char *s)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
384 {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
385 float tmp_min, tmp_max;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
386 char *endptr = s; // to start the loop
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
387 range_t *r = NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
388 int i;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
389
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
390 if (!s)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
391 return NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
392 for (i = 0; *endptr; i++) {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
393 if (*s == ',')
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
394 goto out_err;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
395 if (!(r = (range_t *) realloc(r, sizeof(*r) * (i + 2)))) {
18234
a107276371a8 Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents: 18116
diff changeset
396 mp_msg(MSGT_GLOBAL, MSGL_WARN,"can't realloc 'r'\n");
7069
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
397 return NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
398 }
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
399 tmp_min = strtod(s, &endptr);
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
400 if (*endptr == 'k' || *endptr == 'K') {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
401 tmp_min *= 1000.0;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
402 endptr++;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
403 } else if (*endptr == 'm' || *endptr == 'M') {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
404 tmp_min *= 1000000.0;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
405 endptr++;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
406 }
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
407 if (*endptr == '-') {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
408 tmp_max = strtod(endptr + 1, &endptr);
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
409 if (*endptr == 'k' || *endptr == 'K') {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
410 tmp_max *= 1000.0;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
411 endptr++;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
412 } else if (*endptr == 'm' || *endptr == 'M') {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
413 tmp_max *= 1000000.0;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
414 endptr++;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
415 }
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
416 if (*endptr != ',' && *endptr)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
417 goto out_err;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
418 } else if (*endptr == ',' || !*endptr) {
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
419 tmp_max = tmp_min;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
420 } else
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
421 goto out_err;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
422 r[i].min = tmp_min;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
423 r[i].max = tmp_max;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
424 if (r[i].min < 0 || r[i].max < 0)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
425 goto out_err;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
426 s = endptr + 1;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
427 }
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
428 r[i].min = r[i].max = -1;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
429 return r;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
430 out_err:
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
431 if (r)
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
432 free(r);
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
433 return NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
434 }
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
435
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
436 /* Borrowed from vo_fbdev.c END */
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
437 #endif
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6781
diff changeset
438