From 16b099b434b1971f71c1023b56833721004d8104 Mon Sep 17 00:00:00 2001 From: notaz Date: Sat, 25 Jan 2025 02:52:07 +0200 Subject: [PATCH] standalone: fix missed y scaling --- frontend/plugin_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c index e12a7981..9b2fee34 100644 --- a/frontend/plugin_lib.c +++ b/frontend/plugin_lib.c @@ -336,7 +336,7 @@ static void pl_vout_flip(const void *vram, int stride, int bgr24, // offset xoffs = x * pl_vout_scale_w; - doffs = xoffs + y * dstride; + doffs = xoffs + y * pl_vout_scale_h * dstride; if (dims_changed) flip_clear_counter = 3; -- 2.39.5