summaryrefslogtreecommitdiffstats
path: root/video/decode/vd.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/decode/vd.c')
-rw-r--r--video/decode/vd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/video/decode/vd.c b/video/decode/vd.c
index 99710f43d5..b43570f0ad 100644
--- a/video/decode/vd.c
+++ b/video/decode/vd.c
@@ -147,9 +147,8 @@ int mpcodecs_config_vo(sh_video_t *sh, int w, int h, unsigned int out_fmt)
mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_ASPECT=%1.4f\n", sh->aspect);
}
- vocfg_flags = (opts->fullscreen ? VOFLAG_FULLSCREEN : 0)
- | (opts->vidmode ? VOFLAG_MODESWITCHING : 0)
- | (flip ? VOFLAG_FLIPPING : 0);
+ vocfg_flags = (opts->fullscreen ? VOFLAG_FULLSCREEN : 0) |
+ (flip ? VOFLAG_FLIPPING : 0);
// Time to config libvo!
mp_msg(MSGT_CPLAYER, MSGL_V,