From d66ed2d8be41469ead1b750bc6de0ef9f32d553f Mon Sep 17 00:00:00 2001 From: Guido Cella Date: Fri, 8 Nov 2024 18:05:40 +0100 Subject: [PATCH] sub/osd_libass: don't blur the osd-bar High --osd-blur values break the osd-bar by not drawing the filled portion, and even low values just make it look worse, so don't apply --osd-blur to the osd-bar. --- sub/osd_libass.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sub/osd_libass.c b/sub/osd_libass.c index 39a8867344..41bf94e981 100644 --- a/sub/osd_libass.c +++ b/sub/osd_libass.c @@ -386,6 +386,7 @@ static void get_osd_bar_box(struct osd_state *osd, struct osd_object *obj, style->Outline = opts->osd_bar_outline_size; // Rendering with shadow is broken (because there's more than one shape) style->Shadow = 0; + style->Blur = 0; style->Alignment = 5;