From f86deec58be9bfbaf9bfa32660db7e6394962064 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 17 Mar 2013 22:00:42 +0100 Subject: video: apply --no-keepaspect even on fullscreen If that's what the user asked for, there's no reason to introduce special cases to ignore it on fullscreen. The old behavior is perhaps accidentally due to the fact that aspect calculations used to be disabled in windowed mode, rather than a deliberate decision. --- video/out/vo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/out/vo.c') diff --git a/video/out/vo.c b/video/out/vo.c index 138abef1d7..90497c48fd 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -516,7 +516,7 @@ void vo_get_src_dst_rects(struct vo *vo, struct mp_rect *out_src, .display_par = vo->aspdat.monitor_par, .video_par = vo->aspdat.par, }; - if (vo->opts->keepaspect || vo->opts->fs) { + if (vo->opts->keepaspect) { int scaled_width, scaled_height; aspect_calc_panscan(vo, &scaled_width, &scaled_height); int border_w = vo->dwidth - scaled_width; -- cgit v1.2.3