summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-06-06 18:58:20 +0200
committerwm4 <wm4@nowhere>2017-06-06 18:58:20 +0200
commitc075b48ee0c7552e3807cdb10e3d50eb5c60b1e0 (patch)
tree6af09496fbe4dcae4a65b3113f751b0990591ebd
parentfdd75f90ae841a1b380d8d8916a2ece5cbf626fd (diff)
downloadmpv-c075b48ee0c7552e3807cdb10e3d50eb5c60b1e0.tar.bz2
mpv-c075b48ee0c7552e3807cdb10e3d50eb5c60b1e0.tar.xz
options: change --sub-fix-timing default
Why? Better than wasting time by arguing with idiots. Fixes #4484.
-rw-r--r--DOCS/man/options.rst8
-rw-r--r--options/options.c1
2 files changed, 4 insertions, 5 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 2e781e2272..473937684d 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -1808,10 +1808,10 @@ Subtitles
removed in mpv 0.24.0.
-``--sub-fix-timing``, ``--no-sub-fix-timing``
- By default, subtitle timing is adjusted to remove minor gaps or overlaps
- between subtitles (if the difference is smaller than 210 ms, the gap or
- overlap is removed).
+``--sub-fix-timing=<yes|no>``
+ Adjust subtitle timing is to remove minor gaps or overlaps between
+ subtitles (if the difference is smaller than 210 ms, the gap or overlap
+ is removed).
``--sub-forced-only``
Display only forced subtitles for the DVD subtitle stream selected by e.g.
diff --git a/options/options.c b/options/options.c
index 6664820ae3..949de1945b 100644
--- a/options/options.c
+++ b/options/options.c
@@ -957,7 +957,6 @@ const struct MPOpts mp_default_opts = {
.ass_style_override = 1,
.ass_shaper = 1,
.use_embedded_fonts = 1,
- .sub_fix_timing = 1,
.screenshot_template = "mpv-shot%n",
.hwdec_api = HAVE_RPI ? HWDEC_RPI : 0,