From 696a8c5609ca1bf260176cb9c43f483463a72c97 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 26 Sep 2013 17:49:54 +0200 Subject: osd_libass: add "Default" dummy style This is pretty much a hack for the OSC. It will allow it to rely on a somewhat predictable style, instead of having to overwrite all user OSD settings manually with override tags. --- sub/osd_libass.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sub/osd_libass.c') diff --git a/sub/osd_libass.c b/sub/osd_libass.c index 45edbc7cc8..29db58f464 100644 --- a/sub/osd_libass.c +++ b/sub/osd_libass.c @@ -90,6 +90,13 @@ static void create_osd_ass_track(struct osd_state *osd, struct osd_object *obj) mp_ass_set_style(style, MP_ASS_FONT_PLAYRESY, osd->opts->osd_style); // Set to neutral base direction, as opposed to VSFilter LTR default style->Encoding = -1; + + sid = ass_alloc_style(track); + style = track->styles + sid; + style->Name = strdup("Default"); + const struct osd_style_opts *def = osd_style_conf.defaults; + mp_ass_set_style(style, MP_ASS_FONT_PLAYRESY, def); + style->Encoding = -1; } obj->osd_track = track; -- cgit v1.2.3