diff --git a/player/playloop.c b/player/playloop.c index 60596da76d..3a10f6faee 100644 --- a/player/playloop.c +++ b/player/playloop.c @@ -1030,8 +1030,12 @@ int handle_force_window(struct MPContext *mpctx, bool force) break; } } + + // Use a 16:9 aspect ratio so that fullscreen on a 16:9 screen will not + // have vertical margins, which can lead to a different size or position + // of subtitles than with 16:9 videos. int w = 960; - int h = 480; + int h = 540; struct mp_image_params p = { .imgfmt = config_format, .w = w, .h = h,