summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-17 02:06:08 +0200
committerAlessandro Ghedini <alessandro@ghedini.me>2014-10-18 15:05:51 +0200
commit3c8aecb711bde4928e13a785527cea6c986a1b75 (patch)
treec88d60ed679380a80aecde91fe8d6d4d39a8bf03 /options
parentb3707f4e2166244be7de5f85aa58c7ed7c6e9d14 (diff)
downloadmpv-3c8aecb711bde4928e13a785527cea6c986a1b75.tar.bz2
mpv-3c8aecb711bde4928e13a785527cea6c986a1b75.tar.xz
sub: adjustments to --ass-style-override option
Now requires newest libass git. Since this feature wasn't part of a libass release yet, I'm not bothering making the mpv code compatible with as how it was previously implemented (it will just be disabled with any older libass). CC: @mpv-player/stable (because mpv-build uses libass git, and this breaks the feature)
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index e76a20d2c8..53fc0db097 100644
--- a/options/options.c
+++ b/options/options.c
@@ -332,7 +332,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}, {"force", 3})),
+ ({"no", 0}, {"yes", 1}, {"force", 3}, {"signfs", 4})),
OPT_FLAG("sub-scale-with-window", sub_scale_with_window, 0),
OPT_FLAG("osd-bar", osd_bar_visible, 0),
OPT_FLOATRANGE("osd-bar-align-x", osd_bar_align_x, 0, -1.0, +1.0),