summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-04-30 14:25:23 +0200
committerwm4 <wm4@nowhere>2016-04-30 14:25:23 +0200
commit3a8058658d3c0fadc607460d0411bbdea55a8edb (patch)
treea09ba5fcc3268e33fa7b4a8994399ba8a923c376 /options/options.c
parent8d51f080104f33e6ba4b0749e0722e68c108ce23 (diff)
downloadmpv-3a8058658d3c0fadc607460d0411bbdea55a8edb.tar.bz2
mpv-3a8058658d3c0fadc607460d0411bbdea55a8edb.tar.xz
sd_add: replace --sub-ass=no with --ass-style-override=strip
--sub-ass=no / --ass=no still work, but --ass-style-override=strip is preferred now. With this change, --ass-style-override can control all the types of style overriding.
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 90a72ee7c3..30ae218ba2 100644
--- a/options/options.c
+++ b/options/options.c
@@ -374,7 +374,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}, {"signfs", 4})),
+ ({"no", 0}, {"yes", 1}, {"force", 3}, {"signfs", 4}, {"strip", 5})),
OPT_FLAG("sub-scale-by-window", sub_scale_by_window, 0),
OPT_FLAG("sub-scale-with-window", sub_scale_with_window, 0),
OPT_FLAG("ass-scale-with-window", ass_scale_with_window, 0),