summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-17 02:06:08 +0200
committerwm4 <wm4@nowhere>2014-10-17 02:06:08 +0200
commit41b2927f39f08f54039093746e1d1eded826101e (patch)
tree0842aa5ab060a50ae14d95851fe5467a2e1aac54 /options
parentca038d9a228f33bef7420abadce76e9e6f57fbb6 (diff)
downloadmpv-41b2927f39f08f54039093746e1d1eded826101e.tar.bz2
mpv-41b2927f39f08f54039093746e1d1eded826101e.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 39b562ee80..3daecc125e 100644
--- a/options/options.c
+++ b/options/options.c
@@ -334,7 +334,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),