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.
28 //#include <sys/mman.h>
33 #include "video_out.h"
36 #include "old_vo_wrapper.h"
41 #include "osdep/shmem.h"
43 #include "x11_common.h"
49 int xinerama_screen
= -1;
53 int vo_nomouse_input
= 0;
54 int vo_grabpointer
= 1;
55 int vo_doublebuffering
= 1;
59 float vo_panscan
= 0.0f
;
61 int vo_refresh_rate
=0;
67 int vo_pts
=0; // for hw decoding
70 char *vo_subdevice
= NULL
;
71 int vo_directrendering
=0;
73 int vo_colorkey
= 0x0000ff00; // default colorkey is green
74 // (0xff000000 means that colorkey has been disabled)
76 // name to be used instead of the vo's default
78 // title to be applied to movie window
82 // Externally visible list of all vo drivers
84 extern struct vo_driver video_out_mga
;
85 extern struct vo_driver video_out_xmga
;
86 extern struct vo_driver video_out_x11
;
87 extern struct vo_driver video_out_xover
;
88 extern struct vo_driver video_out_xvmc
;
89 extern struct vo_driver video_out_vdpau
;
90 extern struct vo_driver video_out_xv
;
91 extern struct vo_driver video_out_gl
;
92 extern struct vo_driver video_out_gl2
;
93 extern struct vo_driver video_out_matrixview
;
94 extern struct vo_driver video_out_dga
;
95 extern struct vo_driver video_out_sdl
;
96 extern struct vo_driver video_out_3dfx
;
97 extern struct vo_driver video_out_tdfxfb
;
98 extern struct vo_driver video_out_s3fb
;
99 extern struct vo_driver video_out_wii
;
100 extern struct vo_driver video_out_null
;
101 extern struct vo_driver video_out_zr
;
102 extern struct vo_driver video_out_zr2
;
103 extern struct vo_driver video_out_bl
;
104 extern struct vo_driver video_out_fbdev
;
105 extern struct vo_driver video_out_fbdev2
;
106 extern struct vo_driver video_out_svga
;
107 extern struct vo_driver video_out_png
;
108 extern struct vo_driver video_out_ggi
;
109 extern struct vo_driver video_out_aa
;
110 extern struct vo_driver video_out_caca
;
111 extern struct vo_driver video_out_mpegpes
;
112 extern struct vo_driver video_out_yuv4mpeg
;
113 extern struct vo_driver video_out_direct3d
;
114 extern struct vo_driver video_out_directx
;
115 extern struct vo_driver video_out_kva
;
116 extern struct vo_driver video_out_dxr2
;
117 extern struct vo_driver video_out_dxr3
;
118 extern struct vo_driver video_out_ivtv
;
119 extern struct vo_driver video_out_v4l2
;
120 extern struct vo_driver video_out_jpeg
;
121 extern struct vo_driver video_out_gif89a
;
122 extern struct vo_driver video_out_vesa
;
123 extern struct vo_driver video_out_directfb
;
124 extern struct vo_driver video_out_dfbmga
;
125 extern struct vo_driver video_out_xvidix
;
126 extern struct vo_driver video_out_winvidix
;
127 extern struct vo_driver video_out_cvidix
;
128 extern struct vo_driver video_out_tdfx_vid
;
129 extern struct vo_driver video_out_xvr100
;
130 extern struct vo_driver video_out_tga
;
131 extern struct vo_driver video_out_corevideo
;
132 extern struct vo_driver video_out_quartz
;
133 extern struct vo_driver video_out_pnm
;
134 extern struct vo_driver video_out_md5sum
;
136 const struct vo_driver
*video_out_drivers
[] =
141 #ifdef CONFIG_TDFX_VID
144 #ifdef CONFIG_DIRECTX
147 #ifdef CONFIG_DIRECT3D
153 #ifdef CONFIG_COREVIDEO
154 &video_out_corevideo
,
191 #ifdef CONFIG_MATRIXVIEW
192 &video_out_matrixview
,
207 #ifdef CONFIG_SVGALIB
225 #ifdef CONFIG_V4L2_DECODER
245 #if defined(__MINGW32__) || defined(__CYGWIN__)
251 // should not be auto-selected
252 #ifdef CONFIG_DIRECTFB
253 // vo directfb can call exit() if initialization fails
260 #ifdef CONFIG_YUV4MPEG
263 #ifdef CONFIG_LIBAVCODEC
285 static int vo_preinit(struct vo
*vo
, const char *arg
)
287 return vo
->driver
->preinit(vo
, arg
);
290 int vo_control(struct vo
*vo
, uint32_t request
, void *data
)
292 return vo
->driver
->control(vo
, request
, data
);
295 // Return -1 if driver appears not to support a draw_image interface,
296 // 0 otherwise (whether the driver actually drew something or not).
297 int vo_draw_image(struct vo
*vo
, struct mp_image
*mpi
, double pts
)
301 if (vo
->driver
->buffer_frames
) {
302 vo
->driver
->draw_image(vo
, mpi
, pts
);
305 vo
->frame_loaded
= true;
307 if (vo_control(vo
, VOCTRL_DRAW_IMAGE
, mpi
) == VO_NOTIMPL
)
312 int vo_get_buffered_frame(struct vo
*vo
, bool eof
)
316 if (vo
->frame_loaded
)
318 if (!vo
->driver
->buffer_frames
)
320 vo
->driver
->get_buffered_frame(vo
, eof
);
321 return vo
->frame_loaded
? 0 : -1;
324 int vo_draw_frame(struct vo
*vo
, uint8_t *src
[])
326 assert(!vo
->driver
->is_new
);
329 return old_vo_draw_frame(vo
, src
);
332 int vo_draw_slice(struct vo
*vo
, uint8_t *src
[], int stride
[], int w
, int h
, int x
, int y
)
334 return vo
->driver
->draw_slice(vo
, src
, stride
, w
, h
, x
, y
);
337 void vo_draw_osd(struct vo
*vo
, struct osd_state
*osd
)
341 vo
->driver
->draw_osd(vo
, osd
);
344 void vo_flip_page(struct vo
*vo
, unsigned int pts_us
, int duration
)
348 vo
->frame_loaded
= false;
349 vo
->next_pts
= MP_NOPTS_VALUE
;
350 if (vo
->driver
->flip_page_timed
)
351 vo
->driver
->flip_page_timed(vo
, pts_us
, duration
);
353 vo
->driver
->flip_page(vo
);
356 void vo_check_events(struct vo
*vo
)
360 vo
->driver
->check_events(vo
);
363 void vo_seek_reset(struct vo
*vo
)
365 vo_control(vo
, VOCTRL_RESET
, NULL
);
366 vo
->frame_loaded
= false;
369 void vo_destroy(struct vo
*vo
)
371 vo
->driver
->uninit(vo
);
375 void list_video_out(void)
378 mp_tmsg(MSGT_CPLAYER
, MSGL_INFO
, "Available video output drivers:\n");
379 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VIDEO_OUTPUTS\n");
380 while (video_out_drivers
[i
]) {
381 const vo_info_t
*info
= video_out_drivers
[i
++]->info
;
382 mp_msg(MSGT_GLOBAL
, MSGL_INFO
,"\t%s\t%s\n", info
->short_name
, info
->name
);
384 mp_msg(MSGT_GLOBAL
, MSGL_INFO
,"\n");
387 struct vo
*init_best_video_out(struct MPOpts
*opts
, struct vo_x11_state
*x11
,
388 struct mp_fifo
*key_fifo
,
389 struct input_ctx
*input_ctx
)
391 char **vo_list
= opts
->video_driver_list
;
393 struct vo
*vo
= talloc_ptrtype(NULL
, vo
);
394 struct vo initial_values
= {
397 .key_fifo
= key_fifo
,
398 .input_ctx
= input_ctx
,
400 // first try the preferred drivers, with their optional subdevice param:
401 if (vo_list
&& vo_list
[0])
402 while (vo_list
[0][0]) {
403 char *name
= strdup(vo_list
[0]);
405 vo_subdevice
= strchr(name
,':');
406 if (!strcmp(name
, "pgm"))
407 mp_tmsg(MSGT_CPLAYER
, MSGL_ERR
, "The pgm video output driver has been replaced by -vo pnm:pgmyuv.\n");
408 if (!strcmp(name
, "md5"))
409 mp_tmsg(MSGT_CPLAYER
, MSGL_ERR
, "The md5 video output driver has been replaced by -vo md5sum.\n");
414 for (i
= 0; video_out_drivers
[i
]; i
++) {
415 const struct vo_driver
*video_driver
= video_out_drivers
[i
];
416 const vo_info_t
*info
= video_driver
->info
;
417 if (!strcmp(info
->short_name
, name
)) {
418 // name matches, try it
419 *vo
= initial_values
;
420 vo
->driver
= video_driver
;
421 if (!vo_preinit(vo
, vo_subdevice
)) {
423 return vo
; // success!
425 talloc_free_children(vo
);
432 return NULL
; // do NOT fallback to others
436 OSVERSIONINFO winver
;
437 memset(&winver
, 0, sizeof(OSVERSIONINFO
));
438 winver
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
439 GetVersionEx(&winver
);
441 if(winver
.dwMajorVersion
>= 6) { // If Vista+
442 vo_subdevice
= strdup("yuv=2"); // Use -vo gl:yuv=2 by default
443 *vo
= initial_values
; // Since directdraw is deprecated
444 vo
->driver
= &video_out_gl
; // And direct3d is buggy
445 if (!vo_preinit(vo
, vo_subdevice
)) {
447 return vo
; // it works!
449 talloc_free_children(vo
);
453 // now try the rest...
455 for (i
= 0; video_out_drivers
[i
]; i
++) {
456 const struct vo_driver
*video_driver
= video_out_drivers
[i
];
457 *vo
= initial_values
;
458 vo
->driver
= video_driver
;
459 if (!vo_preinit(vo
, vo_subdevice
))
460 return vo
; // success!
461 talloc_free_children(vo
);
467 int vo_config(struct vo
*vo
, uint32_t width
, uint32_t height
,
468 uint32_t d_width
, uint32_t d_height
, uint32_t flags
,
469 char *title
, uint32_t format
)
471 struct MPOpts
*opts
= vo
->opts
;
473 aspect_save_orig(vo
, width
, height
);
474 aspect_save_prescale(vo
, d_width
, d_height
);
476 if (vo_control(vo
, VOCTRL_UPDATE_SCREENINFO
, NULL
) == VO_TRUE
) {
477 aspect(vo
, &d_width
, &d_height
, A_NOZOOM
);
478 vo
->dx
= (int)(opts
->vo_screenwidth
- d_width
) / 2;
479 vo
->dy
= (int)(opts
->vo_screenheight
- d_height
) / 2;
480 geometry(&vo
->dx
, &vo
->dy
, &d_width
, &d_height
,
481 opts
->vo_screenwidth
, opts
->vo_screenheight
);
482 vo
->dx
+= xinerama_x
;
483 vo
->dy
+= xinerama_y
;
484 vo
->dwidth
= d_width
;
485 vo
->dheight
= d_height
;
488 int ret
= vo
->driver
->config(vo
, width
, height
, d_width
, d_height
, flags
,
490 vo
->config_ok
= (ret
== 0);
491 vo
->config_count
+= vo
->config_ok
;
496 * \brief lookup an integer in a table, table must have 0 as the last key
497 * \param key key to search for
498 * \result translation corresponding to key or "to" value of last mapping
501 int lookup_keymap_table(const struct keymap
*map
, int key
) {
502 while (map
->from
&& map
->from
!= key
) map
++;
507 * \brief helper function for the kind of panscan-scaling that needs a source
508 * and destination rectangle like Direct3D and VDPAU
510 static void src_dst_split_scaling(int src_size
, int dst_size
, int scaled_src_size
,
511 int *src_start
, int *src_end
, int *dst_start
, int *dst_end
) {
512 if (scaled_src_size
> dst_size
) {
513 int border
= src_size
* (scaled_src_size
- dst_size
) / scaled_src_size
;
514 // round to a multiple of 2, this is at least needed for vo_direct3d and ATI cards
515 border
= (border
/ 2 + 1) & ~1;
517 *src_end
= src_size
- border
;
523 *dst_start
= (dst_size
- scaled_src_size
) / 2;
524 *dst_end
= *dst_start
+ scaled_src_size
;
529 * Calculate the appropriate source and destination rectangle to
530 * get a correctly scaled picture, including pan-scan.
531 * Can be extended to take future cropping support into account.
533 * \param crop specifies the cropping border size in the left, right, top and bottom members, may be NULL
534 * \param borders the border values as e.g. EOSD (ASS) and properly placed DVD highlight support requires,
535 * may be NULL and only left and top are currently valid.
537 void calc_src_dst_rects(struct vo
*vo
, int src_width
, int src_height
,
538 struct vo_rect
*src
, struct vo_rect
*dst
,
539 struct vo_rect
*borders
, const struct vo_rect
*crop
)
541 static const struct vo_rect no_crop
= {0, 0, 0, 0, 0, 0};
542 int scaled_width
= 0;
543 int scaled_height
= 0;
544 if (!crop
) crop
= &no_crop
;
545 src_width
-= crop
->left
+ crop
->right
;
546 src_height
-= crop
->top
+ crop
->bottom
;
547 if (src_width
< 2) src_width
= 2;
548 if (src_height
< 2) src_height
= 2;
549 dst
->left
= 0; dst
->right
= vo
->dwidth
;
550 dst
->top
= 0; dst
->bottom
= vo
->dheight
;
551 src
->left
= 0; src
->right
= src_width
;
552 src
->top
= 0; src
->bottom
= src_height
;
554 borders
->left
= 0; borders
->top
= 0;
556 if (aspect_scaling()) {
557 aspect(vo
, &scaled_width
, &scaled_height
, A_WINZOOM
);
558 panscan_calc_windowed(vo
);
559 scaled_width
+= vo
->panscan_x
;
560 scaled_height
+= vo
->panscan_y
;
562 borders
->left
= (vo
->dwidth
- scaled_width
) / 2;
563 borders
->top
= (vo
->dheight
- scaled_height
) / 2;
565 src_dst_split_scaling(src_width
, vo
->dwidth
, scaled_width
,
566 &src
->left
, &src
->right
, &dst
->left
, &dst
->right
);
567 src_dst_split_scaling(src_height
, vo
->dheight
, scaled_height
,
568 &src
->top
, &src
->bottom
, &dst
->top
, &dst
->bottom
);
570 src
->left
+= crop
->left
; src
->right
+= crop
->left
;
571 src
->top
+= crop
->top
; src
->bottom
+= crop
->top
;
572 src
->width
= src
->right
- src
->left
;
573 src
->height
= src
->bottom
- src
->top
;
574 dst
->width
= dst
->right
- dst
->left
;
575 dst
->height
= dst
->bottom
- dst
->top
;
578 #if defined(CONFIG_FBDEV) || defined(CONFIG_VESA)
579 /* Borrowed from vo_fbdev.c
580 Monitor ranges related functions*/
582 char *monitor_hfreq_str
= NULL
;
583 char *monitor_vfreq_str
= NULL
;
584 char *monitor_dotclock_str
= NULL
;
586 float range_max(range_t
*r
)
590 for (/* NOTHING */; (r
->min
!= -1 && r
->max
!= -1); r
++)
591 if (max
< r
->max
) max
= r
->max
;
596 int in_range(range_t
*r
, float f
)
598 for (/* NOTHING */; (r
->min
!= -1 && r
->max
!= -1); r
++)
599 if (f
>= r
->min
&& f
<= r
->max
)
604 range_t
*str2range(char *s
)
606 float tmp_min
, tmp_max
;
607 char *endptr
= s
; // to start the loop
613 for (i
= 0; *endptr
; i
++) {
616 if (!(r
= (range_t
*) realloc(r
, sizeof(*r
) * (i
+ 2)))) {
617 mp_msg(MSGT_GLOBAL
, MSGL_WARN
,"can't realloc 'r'\n");
620 tmp_min
= strtod(s
, &endptr
);
621 if (*endptr
== 'k' || *endptr
== 'K') {
624 } else if (*endptr
== 'm' || *endptr
== 'M') {
625 tmp_min
*= 1000000.0;
628 if (*endptr
== '-') {
629 tmp_max
= strtod(endptr
+ 1, &endptr
);
630 if (*endptr
== 'k' || *endptr
== 'K') {
633 } else if (*endptr
== 'm' || *endptr
== 'M') {
634 tmp_max
*= 1000000.0;
637 if (*endptr
!= ',' && *endptr
)
639 } else if (*endptr
== ',' || !*endptr
) {
645 if (r
[i
].min
< 0 || r
[i
].max
< 0)
649 r
[i
].min
= r
[i
].max
= -1;
657 /* Borrowed from vo_fbdev.c END */