summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-01 02:17:58 +0100
committerwm4 <wm4@nowhere>2014-03-01 02:18:03 +0100
commitbcceeec737844a4184c1256f6490acbd8a8d1611 (patch)
treef55a13c5a6544c65fcd3123452449615715e2fc5 /options/options.c
parent32d18d77cd3afd49f8d221db50ab8fc23dbdd340 (diff)
downloadmpv-bcceeec737844a4184c1256f6490acbd8a8d1611.tar.bz2
mpv-bcceeec737844a4184c1256f6490acbd8a8d1611.tar.xz
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/options.c')
-rw-r--r--options/options.c2
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),