From 70346d3be623bc5edc31a15bd1ca205c33050219 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 24 Feb 2013 23:36:40 +0100 Subject: video/out: remove video mode switching (--vm) This allowed making the player switch the monitor video mode when creating the video window. This was a questionable feature, and with today's LCD screens certainly not useful anymore. Switching to a random video mode (going by video width/height) doesn't sound too useful either. I'm not sure about the win32 implementation, but the X part had several bugs. Even in mplayer-svn (where x11_common.c hasn't been receiving any larger changes for a long time), this code is buggy and doesn't do the right thing anyway. (And what the hell _did_ it do when using multiple physical monitors?) If you really want this, write a shell script that calls xrandr before and after calling mpv. vo_sdl still can do mode switching, because SDL has native support for it, and using it is trivial. Add a new sub-option for this. --- video/filter/vf_vo.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'video/filter') diff --git a/video/filter/vf_vo.c b/video/filter/vf_vo.c index bb29684b10..d8d00130d7 100644 --- a/video/filter/vf_vo.c +++ b/video/filter/vf_vo.c @@ -48,13 +48,12 @@ static int config(struct vf_instance *vf, } const vo_info_t *info = video_out->driver->info; - mp_msg(MSGT_CPLAYER, MSGL_INFO, "VO: [%s] %dx%d => %dx%d %s %s%s%s\n", + mp_msg(MSGT_CPLAYER, MSGL_INFO, "VO: [%s] %dx%d => %dx%d %s %s%s\n", info->short_name, width, height, d_width, d_height, vo_format_name(outfmt), (flags & VOFLAG_FULLSCREEN) ? " [fs]" : "", - (flags & VOFLAG_MODESWITCHING) ? " [vm]" : "", (flags & VOFLAG_FLIPPING) ? " [flip]" : ""); mp_msg(MSGT_CPLAYER, MSGL_V, "VO: Description: %s\n", info->name); mp_msg(MSGT_CPLAYER, MSGL_V, "VO: Author: %s\n", info->author); -- cgit v1.2.3