summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-04-15 14:26:54 +0200
committerwm4 <wm4@nowhere>2015-04-15 14:27:40 +0200
commite6d7e550125873f46126f3d23c4970df1976a269 (patch)
tree12a76b20244b333cf010b69645a09b48114120f1 /options
parent3f8b8b8c0c6781771f83a726a389dc4b784b70ce (diff)
downloadmpv-e6d7e550125873f46126f3d23c4970df1976a269.tar.bz2
mpv-e6d7e550125873f46126f3d23c4970df1976a269.tar.xz
options: --hr-seek=always is the same as --hr-seek=yes
It seems this choice was never documented. "always" is actually older than "yes", so just declare it a compatibility value for "yes". (Also move it before "always" in the C code to make this clear.)
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index 8dc5cab255..4906d500a4 100644
--- a/options/options.c
+++ b/options/options.c
@@ -511,7 +511,7 @@ const m_option_t mp_opts[] = {
({"auto", 0}, {"decoder", 1}, {"sort", 2})),
OPT_FLAG("initial-audio-sync", initial_audio_sync, 0),
OPT_CHOICE("hr-seek", hr_seek, 0,
- ({"no", -1}, {"absolute", 0}, {"always", 1}, {"yes", 1})),
+ ({"no", -1}, {"absolute", 0}, {"yes", 1}, {"always", 1})),
OPT_FLOATRANGE("hr-seek-demuxer-offset", hr_seek_demuxer_offset, 0, -9, 99),
OPT_FLAG("hr-seek-framedrop", hr_seek_framedrop, 0),
OPT_CHOICE_OR_INT("autosync", autosync, 0, 0, 10000,