summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-04-20 20:03:05 +0200
committerwm4 <wm4@nowhere>2015-04-20 20:03:05 +0200
commitc5654e400587a8358e486da7da468a775dcd8cc2 (patch)
treec9505f0e8470d82288d503b3aaa826374830a228
parentc64e4e48d97b9af2b241179ee87765e5d17fff95 (diff)
downloadmpv-c5654e400587a8358e486da7da468a775dcd8cc2.tar.bz2
mpv-c5654e400587a8358e486da7da468a775dcd8cc2.tar.xz
options: don't restrict --hr-seek-demuxer-offset
This was limited to 99 for unknown reasons.
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index 4906d500a4..de545d9da4 100644
--- a/options/options.c
+++ b/options/options.c
@@ -512,7 +512,7 @@ const m_option_t mp_opts[] = {
OPT_FLAG("initial-audio-sync", initial_audio_sync, 0),
OPT_CHOICE("hr-seek", hr_seek, 0,
({"no", -1}, {"absolute", 0}, {"yes", 1}, {"always", 1})),
- OPT_FLOATRANGE("hr-seek-demuxer-offset", hr_seek_demuxer_offset, 0, -9, 99),
+ OPT_FLOAT("hr-seek-demuxer-offset", hr_seek_demuxer_offset, 0),
OPT_FLAG("hr-seek-framedrop", hr_seek_framedrop, 0),
OPT_CHOICE_OR_INT("autosync", autosync, 0, 0, 10000,
({"no", -1})),