diff options
author | wm4 <wm4@nowhere> | 2014-03-01 02:17:58 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-03-01 02:18:03 +0100 |
commit | bcceeec737844a4184c1256f6490acbd8a8d1611 (patch) | |
tree | f55a13c5a6544c65fcd3123452449615715e2fc5 /options | |
parent | 32d18d77cd3afd49f8d221db50ab8fc23dbdd340 (diff) |
sd_ass: add a very simple and evil way to override ASS subtitle styles
--ass-style-override=force now attempts to override the 'Default' style.
May or may not work. In some situations it will work, but also mess up
seemingly unrelated things like signs typeset with ASS.
Diffstat (limited to 'options')
-rw-r--r-- | options/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c index 835ff21f9f..30564ba018 100644 --- a/options/options.c +++ b/options/options.c @@ -449,7 +449,7 @@ const m_option_t mp_opts[] = { OPT_CHOICE("ass-shaper", ass_shaper, 0, ({"simple", 0}, {"complex", 1})), OPT_CHOICE("ass-style-override", ass_style_override, 0, - ({"no", 0}, {"yes", 1})), + ({"no", 0}, {"yes", 1}, {"force", 2})), OPT_FLAG("osd-bar", osd_bar_visible, 0), OPT_FLOATRANGE("osd-bar-align-x", osd_bar_align_x, 0, -1.0, +1.0), OPT_FLOATRANGE("osd-bar-align-y", osd_bar_align_y, 0, -1.0, +1.0), |