sync with en/mplayer.1 rev. 30611
[mplayer/glamo.git] / libvo / video_out.c
blob6db664af4099f6c99ef9cd9f906bb4d280c03e11
1 /*
2 * libvo common functions, variables used by many/all drivers.
4 * This file is part of MPlayer.
6 * MPlayer 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 of the License, or
9 * (at your option) any later version.
11 * MPlayer 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.
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
25 #include <unistd.h>
26 //#include <sys/mman.h>
28 #include "config.h"
29 #include "video_out.h"
30 #include "aspect.h"
31 #include "geometry.h"
33 #include "mp_msg.h"
34 #include "help_mp.h"
36 #include "osdep/shmem.h"
38 //int vo_flags=0;
40 int xinerama_screen = -1;
41 int xinerama_x;
42 int xinerama_y;
44 // currect resolution/bpp on screen: (should be autodetected by vo_init())
45 int vo_depthonscreen=0;
46 int vo_screenwidth=0;
47 int vo_screenheight=0;
49 int vo_config_count=0;
51 // requested resolution/bpp: (-x -y -bpp options)
52 int vo_dx=0;
53 int vo_dy=0;
54 int vo_dwidth=0;
55 int vo_dheight=0;
56 int vo_dbpp=0;
58 int vo_nomouse_input = 0;
59 int vo_grabpointer = 1;
60 int vo_doublebuffering = 1;
61 int vo_vsync = 0;
62 int vo_fs = 0;
63 int vo_fsmode = 0;
64 float vo_panscan = 0.0f;
65 int vo_ontop = 0;
66 int vo_adapter_num=0;
67 int vo_refresh_rate=0;
68 int vo_keepaspect=1;
69 int vo_rootwin=0;
70 int vo_border=1;
71 int64_t WinID = -1;
73 int vo_pts=0; // for hw decoding
74 float vo_fps=0;
76 char *vo_subdevice = NULL;
77 int vo_directrendering=0;
79 int vo_colorkey = 0x0000ff00; // default colorkey is green
80 // (0xff000000 means that colorkey has been disabled)
82 // name to be used instead of the vo's default
83 char *vo_winname;
84 // title to be applied to movie window
85 char *vo_wintitle;
88 // Externally visible list of all vo drivers
90 extern vo_functions_t video_out_mga;
91 extern vo_functions_t video_out_xmga;
92 extern vo_functions_t video_out_x11;
93 extern vo_functions_t video_out_xover;
94 extern vo_functions_t video_out_xvmc;
95 extern vo_functions_t video_out_vdpau;
96 extern vo_functions_t video_out_xv;
97 extern vo_functions_t video_out_gl;
98 extern vo_functions_t video_out_gl2;
99 extern vo_functions_t video_out_matrixview;
100 extern vo_functions_t video_out_dga;
101 extern vo_functions_t video_out_sdl;
102 extern vo_functions_t video_out_3dfx;
103 extern vo_functions_t video_out_tdfxfb;
104 extern vo_functions_t video_out_s3fb;
105 extern vo_functions_t video_out_wii;
106 extern vo_functions_t video_out_null;
107 extern vo_functions_t video_out_zr;
108 extern vo_functions_t video_out_zr2;
109 extern vo_functions_t video_out_bl;
110 extern vo_functions_t video_out_fbdev;
111 extern vo_functions_t video_out_fbdev2;
112 extern vo_functions_t video_out_svga;
113 extern vo_functions_t video_out_png;
114 extern vo_functions_t video_out_ggi;
115 extern vo_functions_t video_out_aa;
116 extern vo_functions_t video_out_caca;
117 extern vo_functions_t video_out_mpegpes;
118 extern vo_functions_t video_out_yuv4mpeg;
119 extern vo_functions_t video_out_direct3d;
120 extern vo_functions_t video_out_directx;
121 extern vo_functions_t video_out_kva;
122 extern vo_functions_t video_out_dxr2;
123 extern vo_functions_t video_out_dxr3;
124 extern vo_functions_t video_out_ivtv;
125 extern vo_functions_t video_out_v4l2;
126 extern vo_functions_t video_out_jpeg;
127 extern vo_functions_t video_out_gif89a;
128 extern vo_functions_t video_out_vesa;
129 extern vo_functions_t video_out_directfb;
130 extern vo_functions_t video_out_dfbmga;
131 extern vo_functions_t video_out_xvidix;
132 extern vo_functions_t video_out_winvidix;
133 extern vo_functions_t video_out_cvidix;
134 extern vo_functions_t video_out_tdfx_vid;
135 extern vo_functions_t video_out_xvr100;
136 extern vo_functions_t video_out_tga;
137 extern vo_functions_t video_out_corevideo;
138 extern vo_functions_t video_out_quartz;
139 extern vo_functions_t video_out_pnm;
140 extern vo_functions_t video_out_md5sum;
142 const vo_functions_t* const video_out_drivers[] =
144 #ifdef CONFIG_XVR100
145 &video_out_xvr100,
146 #endif
147 #ifdef CONFIG_TDFX_VID
148 &video_out_tdfx_vid,
149 #endif
150 #ifdef CONFIG_DIRECTX
151 &video_out_directx,
152 #endif
153 #ifdef CONFIG_DIRECT3D
154 &video_out_direct3d,
155 #endif
156 #ifdef CONFIG_KVA
157 &video_out_kva,
158 #endif
159 #ifdef CONFIG_COREVIDEO
160 &video_out_corevideo,
161 #endif
162 #ifdef CONFIG_QUARTZ
163 &video_out_quartz,
164 #endif
165 #ifdef CONFIG_XMGA
166 &video_out_xmga,
167 #endif
168 #ifdef CONFIG_MGA
169 &video_out_mga,
170 #endif
171 #ifdef CONFIG_TDFXFB
172 &video_out_tdfxfb,
173 #endif
174 #ifdef CONFIG_S3FB
175 &video_out_s3fb,
176 #endif
177 #ifdef CONFIG_WII
178 &video_out_wii,
179 #endif
180 #ifdef CONFIG_3DFX
181 &video_out_3dfx,
182 #endif
183 #if CONFIG_VDPAU
184 &video_out_vdpau,
185 #endif
186 #ifdef CONFIG_XV
187 &video_out_xv,
188 #endif
189 #ifdef CONFIG_X11
190 &video_out_x11,
191 &video_out_xover,
192 #endif
193 #ifdef CONFIG_GL
194 &video_out_gl,
195 &video_out_gl2,
196 #endif
197 #ifdef CONFIG_MATRIXVIEW
198 &video_out_matrixview,
199 #endif
200 #ifdef CONFIG_DGA
201 &video_out_dga,
202 #endif
203 #ifdef CONFIG_SDL
204 &video_out_sdl,
205 #endif
206 #ifdef CONFIG_GGI
207 &video_out_ggi,
208 #endif
209 #ifdef CONFIG_FBDEV
210 &video_out_fbdev,
211 &video_out_fbdev2,
212 #endif
213 #ifdef CONFIG_SVGALIB
214 &video_out_svga,
215 #endif
216 #ifdef CONFIG_AA
217 &video_out_aa,
218 #endif
219 #ifdef CONFIG_CACA
220 &video_out_caca,
221 #endif
222 #ifdef CONFIG_DXR2
223 &video_out_dxr2,
224 #endif
225 #ifdef CONFIG_DXR3
226 &video_out_dxr3,
227 #endif
228 #ifdef CONFIG_IVTV
229 &video_out_ivtv,
230 #endif
231 #ifdef CONFIG_V4L2_DECODER
232 &video_out_v4l2,
233 #endif
234 #ifdef CONFIG_ZR
235 &video_out_zr,
236 &video_out_zr2,
237 #endif
238 #ifdef CONFIG_BL
239 &video_out_bl,
240 #endif
241 #ifdef CONFIG_VESA
242 &video_out_vesa,
243 #endif
244 #ifdef CONFIG_DIRECTFB
245 &video_out_directfb,
246 #endif
247 #ifdef CONFIG_DFBMGA
248 &video_out_dfbmga,
249 #endif
250 #ifdef CONFIG_VIDIX
251 #ifdef CONFIG_X11
252 &video_out_xvidix,
253 #endif
254 #if defined(__MINGW32__) || defined(__CYGWIN__)
255 &video_out_winvidix,
256 #endif
257 &video_out_cvidix,
258 #endif
259 &video_out_null,
260 // should not be auto-selected
261 #if CONFIG_XVMC
262 &video_out_xvmc,
263 #endif
264 &video_out_mpegpes,
265 #ifdef CONFIG_YUV4MPEG
266 &video_out_yuv4mpeg,
267 #endif
268 #ifdef CONFIG_LIBAVCODEC
269 &video_out_png,
270 #endif
271 #ifdef CONFIG_JPEG
272 &video_out_jpeg,
273 #endif
274 #ifdef CONFIG_GIF
275 &video_out_gif89a,
276 #endif
277 #ifdef CONFIG_TGA
278 &video_out_tga,
279 #endif
280 #ifdef CONFIG_PNM
281 &video_out_pnm,
282 #endif
283 #ifdef CONFIG_MD5SUM
284 &video_out_md5sum,
285 #endif
286 NULL
289 void list_video_out(void){
290 int i=0;
291 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoOutputDrivers);
292 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_OUTPUTS\n");
293 while (video_out_drivers[i]) {
294 const vo_info_t *info = video_out_drivers[i++]->info;
295 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\t%s\t%s\n", info->short_name, info->name);
297 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\n");
300 const vo_functions_t* init_best_video_out(char** vo_list){
301 int i;
302 // first try the preferred drivers, with their optional subdevice param:
303 if(vo_list && vo_list[0])
304 while(vo_list[0][0]){
305 char* vo=strdup(vo_list[0]);
306 vo_subdevice=strchr(vo,':');
307 if (!strcmp(vo, "pgm"))
308 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_VO_PGM_HasBeenReplaced);
309 if (!strcmp(vo, "md5"))
310 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_VO_MD5_HasBeenReplaced);
311 if(vo_subdevice){
312 vo_subdevice[0]=0;
313 ++vo_subdevice;
315 for(i=0;video_out_drivers[i];i++){
316 const vo_functions_t* video_driver=video_out_drivers[i];
317 const vo_info_t *info = video_driver->info;
318 if(!strcmp(info->short_name,vo)){
319 // name matches, try it
320 if(!video_driver->preinit(vo_subdevice))
322 free(vo);
323 return video_driver; // success!
327 // continue...
328 free(vo);
329 ++vo_list;
330 if(!(vo_list[0])) return NULL; // do NOT fallback to others
332 // now try the rest...
333 vo_subdevice=NULL;
334 for(i=0;video_out_drivers[i];i++){
335 const vo_functions_t* video_driver=video_out_drivers[i];
336 if(!video_driver->preinit(vo_subdevice))
337 return video_driver; // success!
339 return NULL;
342 int config_video_out(const vo_functions_t *vo, uint32_t width, uint32_t height,
343 uint32_t d_width, uint32_t d_height, uint32_t flags,
344 char *title, uint32_t format) {
345 panscan_init();
346 aspect_save_orig(width,height);
347 aspect_save_prescale(d_width,d_height);
349 if (vo->control(VOCTRL_UPDATE_SCREENINFO, NULL) == VO_TRUE) {
350 aspect(&d_width,&d_height,A_NOZOOM);
351 vo_dx = (int)(vo_screenwidth - d_width) / 2;
352 vo_dy = (int)(vo_screenheight - d_height) / 2;
353 geometry(&vo_dx, &vo_dy, &d_width, &d_height,
354 vo_screenwidth, vo_screenheight);
355 vo_dx += xinerama_x;
356 vo_dy += xinerama_y;
357 vo_dwidth = d_width;
358 vo_dheight = d_height;
361 return vo->config(width, height, d_width, d_height, flags, title, format);
365 * \brief lookup an integer in a table, table must have 0 as the last key
366 * \param key key to search for
367 * \result translation corresponding to key or "to" value of last mapping
368 * if not found.
370 int lookup_keymap_table(const struct keymap *map, int key) {
371 while (map->from && map->from != key) map++;
372 return map->to;
376 * \brief helper function for the kind of panscan-scaling that needs a source
377 * and destination rectangle like Direct3D and VDPAU
379 static void src_dst_split_scaling(int src_size, int dst_size, int scaled_src_size,
380 int *src_start, int *src_end, int *dst_start, int *dst_end) {
381 if (scaled_src_size > dst_size) {
382 int border = src_size * (scaled_src_size - dst_size) / scaled_src_size;
383 // round to a multiple of 2, this is at least needed for vo_direct3d and ATI cards
384 border = (border / 2 + 1) & ~1;
385 *src_start = border;
386 *src_end = src_size - border;
387 *dst_start = 0;
388 *dst_end = dst_size;
389 } else {
390 *src_start = 0;
391 *src_end = src_size;
392 *dst_start = (dst_size - scaled_src_size) / 2;
393 *dst_end = *dst_start + scaled_src_size;
398 * Calculate the appropriate source and destination rectangle to
399 * get a correctly scaled picture, including pan-scan.
400 * Can be extended to take future cropping support into account.
402 * \param crop specifies the cropping border size in the left, right, top and bottom members, may be NULL
403 * \param borders the border values as e.g. EOSD (ASS) and properly placed DVD highlight support requires,
404 * may be NULL and only left and top are currently valid.
406 void calc_src_dst_rects(int src_width, int src_height, struct vo_rect *src, struct vo_rect *dst,
407 struct vo_rect *borders, const struct vo_rect *crop) {
408 static const struct vo_rect no_crop = {0, 0, 0, 0, 0, 0};
409 int scaled_width = 0;
410 int scaled_height = 0;
411 if (!crop) crop = &no_crop;
412 src_width -= crop->left + crop->right;
413 src_height -= crop->top + crop->bottom;
414 if (src_width < 2) src_width = 2;
415 if (src_height < 2) src_height = 2;
416 dst->left = 0; dst->right = vo_dwidth;
417 dst->top = 0; dst->bottom = vo_dheight;
418 src->left = 0; src->right = src_width;
419 src->top = 0; src->bottom = src_height;
420 if (borders) {
421 borders->left = 0; borders->top = 0;
423 if (aspect_scaling()) {
424 aspect(&scaled_width, &scaled_height, A_WINZOOM);
425 panscan_calc_windowed();
426 scaled_width += vo_panscan_x;
427 scaled_height += vo_panscan_y;
428 if (borders) {
429 borders->left = (vo_dwidth - scaled_width ) / 2;
430 borders->top = (vo_dheight - scaled_height) / 2;
432 src_dst_split_scaling(src_width, vo_dwidth, scaled_width,
433 &src->left, &src->right, &dst->left, &dst->right);
434 src_dst_split_scaling(src_height, vo_dheight, scaled_height,
435 &src->top, &src->bottom, &dst->top, &dst->bottom);
437 src->left += crop->left; src->right += crop->left;
438 src->top += crop->top; src->bottom += crop->top;
439 src->width = src->right - src->left;
440 src->height = src->bottom - src->top;
441 dst->width = dst->right - dst->left;
442 dst->height = dst->bottom - dst->top;
445 #if defined(CONFIG_FBDEV) || defined(CONFIG_VESA)
446 /* Borrowed from vo_fbdev.c
447 Monitor ranges related functions*/
449 char *monitor_hfreq_str = NULL;
450 char *monitor_vfreq_str = NULL;
451 char *monitor_dotclock_str = NULL;
453 float range_max(range_t *r)
455 float max = 0;
457 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++)
458 if (max < r->max) max = r->max;
459 return max;
463 int in_range(range_t *r, float f)
465 for (/* NOTHING */; (r->min != -1 && r->max != -1); r++)
466 if (f >= r->min && f <= r->max)
467 return 1;
468 return 0;
471 range_t *str2range(char *s)
473 float tmp_min, tmp_max;
474 char *endptr = s; // to start the loop
475 range_t *r = NULL;
476 int i;
478 if (!s)
479 return NULL;
480 for (i = 0; *endptr; i++) {
481 if (*s == ',')
482 goto out_err;
483 if (!(r = (range_t *) realloc(r, sizeof(*r) * (i + 2)))) {
484 mp_msg(MSGT_GLOBAL, MSGL_WARN,"can't realloc 'r'\n");
485 return NULL;
487 tmp_min = strtod(s, &endptr);
488 if (*endptr == 'k' || *endptr == 'K') {
489 tmp_min *= 1000.0;
490 endptr++;
491 } else if (*endptr == 'm' || *endptr == 'M') {
492 tmp_min *= 1000000.0;
493 endptr++;
495 if (*endptr == '-') {
496 tmp_max = strtod(endptr + 1, &endptr);
497 if (*endptr == 'k' || *endptr == 'K') {
498 tmp_max *= 1000.0;
499 endptr++;
500 } else if (*endptr == 'm' || *endptr == 'M') {
501 tmp_max *= 1000000.0;
502 endptr++;
504 if (*endptr != ',' && *endptr)
505 goto out_err;
506 } else if (*endptr == ',' || !*endptr) {
507 tmp_max = tmp_min;
508 } else
509 goto out_err;
510 r[i].min = tmp_min;
511 r[i].max = tmp_max;
512 if (r[i].min < 0 || r[i].max < 0)
513 goto out_err;
514 s = endptr + 1;
516 r[i].min = r[i].max = -1;
517 return r;
518 out_err:
519 if (r)
520 free(r);
521 return NULL;
524 /* Borrowed from vo_fbdev.c END */
525 #endif