mirror of
https://github.com/mpv-player/mpv
synced 2025-01-05 03:06:28 +01:00
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
This commit is contained in:
parent
a0399163e6
commit
afa6b65c25
@ -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}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user