From 72e505a944ac6b519d7a2348d63dd9a1fd2fe2a2 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 24 Apr 2015 22:52:01 +0200 Subject: player: add --window-scale option Requested. Works similar to the property with the same name. --- video/out/win_state.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'video/out/win_state.c') diff --git a/video/out/win_state.c b/video/out/win_state.c index af54f8215f..f48f628173 100644 --- a/video/out/win_state.c +++ b/video/out/win_state.c @@ -90,6 +90,8 @@ void vo_calc_window_geometry(struct vo *vo, const struct mp_rect *screen, int d_h = params.d_h; if ((vo->driver->caps & VO_CAP_ROTATE90) && params.rotate % 180 == 90) MPSWAP(int, d_w, d_h); + d_w = MPCLAMP(d_w * opts->window_scale, 1, 16000); + d_h = MPCLAMP(d_h * opts->window_scale, 1, 16000); int scr_w = screen->x1 - screen->x0; int scr_h = screen->y1 - screen->y0; -- cgit v1.2.3