From a6d4ca5a7812da464b087a071a36419da1787d42 Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Tue, 26 Mar 2024 14:45:47 +0100 Subject: [PATCH] bluray: init new regions to the top/left of the video The subpicture is set to absolute so it corresponds to an absolute location in the video. It was initialized that way before b16c3726520d651c41f07efd400b466a8d94a4f0. --- modules/access/bluray.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/access/bluray.c b/modules/access/bluray.c index 948182a254..df0717ea03 100644 --- a/modules/access/bluray.c +++ b/modules/access/bluray.c @@ -2044,6 +2044,8 @@ static void blurayDrawArgbOverlay(demux_t *p_demux, const BD_ARGB_OVERLAY* const return; } p_reg->b_absolute = true; + p_reg->i_x = 0; + p_reg->i_y = 0; vlc_spu_regions_push(&ov->regions, p_reg); }