summaryrefslogtreecommitdiffstats
path: root/core/cfg-mplayer.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-11-15 19:08:21 +0100
committerwm4 <wm4@nowhere>2012-11-16 21:21:15 +0100
commit1197e13c2f86ea0c521c206fa3412d50587376da (patch)
tree197e381ab8f62574932fdfd2afd355d7d081b70a /core/cfg-mplayer.h
parent2b851c6ed3de92c22837d44f16e7033e926b72e9 (diff)
downloadmpv-1197e13c2f86ea0c521c206fa3412d50587376da.tar.bz2
mpv-1197e13c2f86ea0c521c206fa3412d50587376da.tar.xz
options: rename -sub-fuzziness to -autosub-match, change option values
"--autosub-match" is close to "--autosub", and reflects what this option does slightly better. Replace the magic number option values with choices: --sub-fuzziness=0 becomes --autosub-match=exact --sub-fuzziness=1 becomes --autosub-match=fuzzy --sub-fuzziness=2 becomes --autosub-match=all
Diffstat (limited to 'core/cfg-mplayer.h')
-rw-r--r--core/cfg-mplayer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/cfg-mplayer.h b/core/cfg-mplayer.h
index b5b15df0d1..26649b42f6 100644
--- a/core/cfg-mplayer.h
+++ b/core/cfg-mplayer.h
@@ -510,7 +510,8 @@ const m_option_t common_opts[] = {
// enable Closed Captioning display
{"overlapsub", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 2, NULL},
{"sub-no-text-pp", &sub_no_text_pp, CONF_TYPE_FLAG, 0, 0, 1, NULL},
- {"sub-fuzziness", &sub_match_fuzziness, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
+ {"autosub-match", &sub_match_fuzziness, CONF_TYPE_CHOICE, 0,
+ M_CHOICES(({"exact", 0}, {"fuzzy", 1}, {"all", 2}))},
{"font", &font_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
{"subfont", &sub_font_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
{"sub-pos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},