sub: increase gap/overlap fixing threshold to 210ms

Don't ask why.
This commit is contained in:
wm4
2015-12-07 23:47:18 +01:00
parent c138505813
commit 3d66a5d14e
2 changed files with 3 additions and 3 deletions

View File

@@ -1584,7 +1584,7 @@ Subtitles
``--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 200 ms, the gap or
between subtitles (if the difference is smaller than 210 ms, the gap or
overlap is removed).
``--sub-forced-only``

View File

@@ -4,8 +4,8 @@
#include "dec_sub.h"
#include "demux/packet.h"
// up to 200 ms overlaps or gaps are removed
#define SUB_GAP_THRESHOLD 0.2
// up to 210 ms overlaps or gaps are removed
#define SUB_GAP_THRESHOLD 0.210
// don't change timings if durations are smaller
#define SUB_GAP_KEEP 0.4