Mercurial > mplayer.hg
annotate libvo/video_out.c @ 4624:080882dddb2e
fixedsize video samples fixed (dvntsc-qt.mov)
author | arpi |
---|---|
date | Sun, 10 Feb 2002 00:45:56 +0000 |
parents | 88843786301e |
children | 95fa3901cafc |
rev | line source |
---|---|
1 | 1 /* |
2 * video_out.c, | |
3 * | |
4 * Copyright (C) Aaron Holtzman - June 2000 | |
5 * | |
6 * mpeg2dec is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2, or (at your option) | |
9 * any later version. | |
10 * | |
11 * mpeg2dec is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with GNU Make; see the file COPYING. If not, write to | |
18 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
19 * | |
20 */ | |
21 | |
22 #include <stdio.h> | |
23 #include <stdlib.h> | |
24 #include <string.h> | |
25 | |
26 #include <unistd.h> | |
27 #include <sys/mman.h> | |
28 | |
29 #include "config.h" | |
30 #include "video_out.h" | |
31 | |
32 #include "../linux/shmem.h" | |
33 | |
388 | 34 // currect resolution/bpp on screen: (should be autodetected by vo_init()) |
35 int vo_depthonscreen=0; | |
36 int vo_screenwidth=0; | |
37 int vo_screenheight=0; | |
38 | |
39 // requested resolution/bpp: (-x -y -bpp options) | |
40 int vo_dwidth=0; | |
41 int vo_dheight=0; | |
42 int vo_dbpp=0; | |
1149
6a0f937b52e6
- new config option -lircconfig (config file for lirc)
acki2
parents:
1130
diff
changeset
|
43 int vo_doublebuffering = 0; |
1269 | 44 int vo_fsmode = 0; |
388 | 45 |
2707 | 46 int vo_pts=0; // for hw decoding |
3201 | 47 float vo_fps=0; // for mp1e rte |
2707 | 48 |
1184 | 49 char *vo_subdevice = NULL; |
4494 | 50 int vaa_use_dr=1; |
4229 | 51 /**************************************** |
52 * GAMMA CORRECTION * | |
53 ****************************************/ | |
54 int vo_gamma_brightness=0; | |
55 int vo_gamma_saturation=0; | |
56 int vo_gamma_contrast=0; | |
57 int vo_gamma_hue=0; | |
4317 | 58 int vo_gamma_red_intensity=0; |
59 int vo_gamma_green_intensity=0; | |
60 int vo_gamma_blue_intensity=0; | |
1 | 61 // |
62 // Externally visible list of all vo drivers | |
63 // | |
64 extern vo_functions_t video_out_mga; | |
65 extern vo_functions_t video_out_xmga; | |
66 extern vo_functions_t video_out_x11; | |
67 extern vo_functions_t video_out_xv; | |
68 extern vo_functions_t video_out_gl; | |
2124 | 69 extern vo_functions_t video_out_gl2; |
12 | 70 extern vo_functions_t video_out_dga; |
38 | 71 extern vo_functions_t video_out_fsdga; |
1 | 72 extern vo_functions_t video_out_sdl; |
73 extern vo_functions_t video_out_3dfx; | |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
74 extern vo_functions_t video_out_tdfxfb; |
1 | 75 extern vo_functions_t video_out_null; |
2528 | 76 //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
|
77 extern vo_functions_t video_out_zr; |
1 | 78 extern vo_functions_t video_out_pgm; |
79 extern vo_functions_t video_out_md5; | |
80 extern vo_functions_t video_out_syncfb; | |
225 | 81 extern vo_functions_t video_out_fbdev; |
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; |
2645 | 88 extern vo_functions_t video_out_dxr3; |
4561 | 89 #ifdef HAVE_VESA |
2244 | 90 extern vo_functions_t video_out_vesa; |
91 #endif | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
92 extern vo_functions_t video_out_directfb; |
4124 | 93 #ifdef CONFIG_VIDIX |
94 extern vo_functions_t video_out_xvidix; | |
95 #endif | |
96 | |
1 | 97 vo_functions_t* video_out_drivers[] = |
98 { | |
1179 | 99 #ifdef HAVE_XMGA |
1 | 100 &video_out_xmga, |
101 #endif | |
1179 | 102 #ifdef HAVE_MGA |
1 | 103 &video_out_mga, |
104 #endif | |
105 #ifdef HAVE_SYNCFB | |
106 &video_out_syncfb, | |
107 #endif | |
108 #ifdef HAVE_3DFX | |
109 &video_out_3dfx, | |
110 #endif | |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
111 #ifdef HAVE_TDFXFB |
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
112 &video_out_tdfxfb, |
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1871
diff
changeset
|
113 #endif |
1 | 114 #ifdef HAVE_XV |
115 &video_out_xv, | |
116 #endif | |
117 #ifdef HAVE_X11 | |
118 &video_out_x11, | |
119 #endif | |
120 #ifdef HAVE_GL | |
121 &video_out_gl, | |
2124 | 122 &video_out_gl2, |
1 | 123 #endif |
12 | 124 #ifdef HAVE_DGA |
125 &video_out_dga, | |
1235 | 126 // &video_out_fsdga, |
12 | 127 #endif |
1 | 128 #ifdef HAVE_SDL |
129 &video_out_sdl, | |
130 #endif | |
1235 | 131 #ifdef HAVE_GGI |
132 &video_out_ggi, | |
133 #endif | |
234 | 134 #ifdef HAVE_FBDEV |
135 &video_out_fbdev, | |
136 #endif | |
286 | 137 #ifdef HAVE_SVGALIB |
138 &video_out_svga, | |
139 #endif | |
1511 | 140 #ifdef HAVE_AA |
141 &video_out_aa, | |
142 #endif | |
2645 | 143 #ifdef HAVE_DXR3 |
144 &video_out_dxr3, | |
145 #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
|
146 #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
|
147 &video_out_zr, |
664984198aef
zr driver (tv-out for DC10/DC10+, iomega buz, LML33...) added - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4169
diff
changeset
|
148 #endif |
1511 | 149 |
529 | 150 #ifdef HAVE_PNG |
151 &video_out_png, | |
152 #endif | |
1 | 153 &video_out_null, |
2528 | 154 // &video_out_odivx, |
1 | 155 &video_out_pgm, |
156 &video_out_md5, | |
1871 | 157 &video_out_mpegpes, |
4599 | 158 &video_out_yuv4mpeg, |
4561 | 159 #ifdef HAVE_VESA |
2244 | 160 &video_out_vesa, |
161 #endif | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
162 #ifdef HAVE_DIRECTFB |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
163 &video_out_directfb, |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3201
diff
changeset
|
164 #endif |
4169
91b50468a1a4
Fix xvidix for non-x11 systems (delayed due netloss)
atmos4
parents:
4124
diff
changeset
|
165 #if defined(CONFIG_VIDIX) && defined(HAVE_X11) |
4124 | 166 &video_out_xvidix, |
167 #endif | |
1 | 168 NULL |
169 }; |