From ae64f29930e1fc86b8abd3b71a1335912511e751 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 7 Sep 2013 08:53:04 +0200 Subject: options: fix --volume option range, add some explanations to manpage The --volume option accepted values up to 10000, but internally, the value is always clipped to 0-100 range. What makes this even worse is that --softvol-max suggests that it extends the range of --volume, which is not the case. (And passing a volume larger than 100 to --volume didn't even print a warning.) --- mpvcore/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mpvcore') diff --git a/mpvcore/options.c b/mpvcore/options.c index 62bbfc0101..c63aa7342a 100644 --- a/mpvcore/options.c +++ b/mpvcore/options.c @@ -555,7 +555,7 @@ const m_option_t mp_opts[] = { {"auto", SOFTVOL_AUTO})), OPT_FLOATRANGE("softvol-max", softvol_max, 0, 10, 10000), OPT_INTRANGE("volstep", volstep, 0, 0, 100), - OPT_FLOATRANGE("volume", mixer_init_volume, 0, -1, 10000), + OPT_FLOATRANGE("volume", mixer_init_volume, 0, -1, 100), OPT_CHOICE("mute", mixer_init_mute, M_OPT_OPTIONAL_PARAM, ({"auto", -1}, {"no", 0}, -- cgit v1.2.3