diff options
author | pl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-24 14:15:24 +0000 |
---|---|---|
committer | pl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-03-24 14:15:24 +0000 |
commit | afa6b65c25f37ecd809c1aa0a87be0349226f021 (patch) | |
tree | c1f647a65fbfd4a654b0dc16c35c6930a5e06541 /cfg-mplayer.h | |
parent | a0399163e6070c43bab32ada1cd250c586173548 (diff) | |
download | mpv-afa6b65c25f37ecd809c1aa0a87be0349226f021.tar.bz2 mpv-afa6b65c25f37ecd809c1aa0a87be0349226f021.tar.xz |
allow negative mul values
(-1.0 => will reverse channels L&R)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5307 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r-- | cfg-mplayer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h index b74ed54940..ddf180fbaa 100644 --- a/cfg-mplayer.h +++ b/cfg-mplayer.h @@ -109,7 +109,7 @@ struct config ao_plugin_conf[]={ {"format", &ao_plugin_cfg.pl_format_type, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, {"fout", &ao_plugin_cfg.pl_resample_fout, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, {"volume", &ao_plugin_cfg.pl_volume_volume, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL}, - {"mul", &ao_plugin_cfg.pl_extrastereo_mul, CONF_TYPE_FLOAT, CONF_MIN, 0, 0, NULL}, + {"mul", &ao_plugin_cfg.pl_extrastereo_mul, CONF_TYPE_FLOAT, CONF_RANGE, -10.0, 10.0, NULL}, {"softclip", &ao_plugin_cfg.pl_volume_softclip, CONF_TYPE_FLAG, 0, 0, 1, NULL}, {NULL, NULL, 0, 0, 0, 0, NULL} }; |