standalone: fix missed y scaling
authornotaz <notasas@gmail.com>
Sat, 25 Jan 2025 00:52:07 +0000 (02:52 +0200)
committernotaz <notasas@gmail.com>
Sat, 25 Jan 2025 00:52:07 +0000 (02:52 +0200)
frontend/plugin_lib.c

index e12a798..9b2fee3 100644 (file)
@@ -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;