summaryrefslogtreecommitdiffstats
path: root/video/out/wayland_common.c
diff options
context:
space:
mode:
authorAlexander Preisinger <alexander.preisinger@gmail.com>2014-01-07 21:12:24 +0100
committerAlexander Preisinger <alexander.preisinger@gmail.com>2014-01-07 21:12:24 +0100
commit374f40de30178e080f24bfd9f1dc3ece2f97c8bd (patch)
tree249283ad3ccf293a91ee4c5d5cef9b28299a5e02 /video/out/wayland_common.c
parentbde15f33016edc61c612b9f99cf01094633caa97 (diff)
downloadmpv-374f40de30178e080f24bfd9f1dc3ece2f97c8bd.tar.bz2
mpv-374f40de30178e080f24bfd9f1dc3ece2f97c8bd.tar.xz
wayland: fix fullscreen & resizing for good
I added enough logic to never set ontop or fullscreen twitce. This commit keeps also the size of the video if multiple videos are played. If the ratio differs the width will be kept at the same size and only the height changes.
Diffstat (limited to 'video/out/wayland_common.c')
-rw-r--r--video/out/wayland_common.c38
1 files changed, 27 insertions, 11 deletions
diff --git a/video/out/wayland_common.c b/video/out/wayland_common.c
index 67ec2cb4c1..d6a569d0c5 100644
--- a/video/out/wayland_common.c
+++ b/video/out/wayland_common.c
@@ -683,6 +683,8 @@ static void shedule_resize(struct vo_wayland_state *wl,
int32_t x, y;
float temp_aspect = width / (float) MPMAX(height, 1);
+ MP_DBG(wl, "shedule resize: %dx%d\n", width, height);
+
if (width < minimum_size)
width = minimum_size;
@@ -907,13 +909,11 @@ void vo_wayland_uninit (struct vo *vo)
static void vo_wayland_ontop (struct vo *vo)
{
- MP_DBG(vo->wayland, "going ontop\n");
- vo->opts->ontop = 0;
- vo->opts->fullscreen = 1;
-
- /* use the already existing code to leave fullscreen mode and go into
- * toplevel mode */
- vo_wayland_fullscreen(vo);
+ struct vo_wayland_state *wl = vo->wayland;
+ MP_DBG(wl, "going ontop\n");
+ vo->opts->ontop = 1;
+ wl_shell_surface_set_toplevel(wl->window.shell_surface);
+ shedule_resize(wl, 0, wl->window.width, wl->window.height);
}
static void vo_wayland_border (struct vo *vo)
@@ -1089,6 +1089,9 @@ static void vo_wayland_update_screeninfo (struct vo *vo)
}
}
+ wl->window.fs_width = opts->screenwidth;
+ wl->window.fs_height = opts->screenheight;
+
aspect_save_screenres(vo, opts->screenwidth, opts->screenheight);
}
@@ -1150,13 +1153,26 @@ bool vo_wayland_config (struct vo *vo, uint32_t d_width,
{
struct vo_wayland_state *wl = vo->wayland;
- wl->window.width = d_width;
- wl->window.height = d_height;
wl->window.p_width = d_width;
wl->window.p_height = d_height;
- wl->window.aspect = wl->window.width / (float) MPMAX(wl->window.height, 1);
+ wl->window.aspect = d_width / (float) MPMAX(d_height, 1);
- vo_wayland_fullscreen(vo);
+ if (!(flags & VOFLAG_HIDDEN)) {
+ if (!wl->window.is_init) {
+ wl->window.width = d_width;
+ wl->window.height = d_height;
+ }
+
+ if (vo->opts->fullscreen) {
+ if (wl->window.is_fullscreen)
+ shedule_resize(wl, 0, wl->window.fs_width, wl->window.fs_height);
+ else
+ vo_wayland_fullscreen(vo);
+ }
+ else
+ vo_wayland_ontop(vo);
+ wl->window.is_init = true;
+ }
return true;
}