summaryrefslogtreecommitdiffstats
path: root/cfg-common.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-10 22:53:34 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-10 22:53:34 +0000
commitd459e644632cb9b0c277aac391cfc55f4d553033 (patch)
tree3dbad68b33ffadfdae3b803c9f2bdc9dd7dea0f7 /cfg-common.h
parent2d6269f3d41bd43c5795b2227490ae501592ad1e (diff)
downloadmpv-d459e644632cb9b0c277aac391cfc55f4d553033.tar.bz2
mpv-d459e644632cb9b0c277aac391cfc55f4d553033.tar.xz
Overlapping subs are a feature mainly present in subtitling
software formats, such as JACOsub and SSA. This patch enables them, by default, only with this formats; however the user can force both enabling and disabling overlapping subtitles by the mean of -overlapsub and -nooverlapsub options. The code itself should avoid all the 'jumping subtitles' problems reported by the users. patch by salvatore.falco@katamail.com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8883 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-common.h')
-rw-r--r--cfg-common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cfg-common.h b/cfg-common.h
index 9dd6e6b787..7d6c707a67 100644
--- a/cfg-common.h
+++ b/cfg-common.h
@@ -178,6 +178,7 @@
{"ifo", &spudec_ifo, CONF_TYPE_STRING, 0, 0, 0, NULL},
// enable Closed Captioning display
{"subcc", &subcc_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL},
+ {"overlapsub", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 2, NULL},
{"nooverlapsub", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 0, NULL},
{"sub-bg-color", &sub_bg_color, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL},
{"sub-bg-alpha", &sub_bg_alpha, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL},