summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authorpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-03 14:17:53 +0000
committerpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-03 14:17:53 +0000
commitfd28ff2c130b9555be4e8e87aed3b29c313647d1 (patch)
tree10cec7c8ecd755d6c24b127591d2cd1d905f0c91 /cfg-mplayer.h
parent9301c0157c28116d17f0a1cf58c7be5b04bea4b7 (diff)
downloadmpv-fd28ff2c130b9555be4e8e87aed3b29c313647d1.tar.bz2
mpv-fd28ff2c130b9555be4e8e87aed3b29c313647d1.tar.xz
Extrastereo plugin: increases linearly the difference between left and right
channels (as the XMMS extrastereo plugin) which has some of "live" effect (use it to hear what I mean) ex: mplayer media.avi -aop list=extrastereo[:mul=3.4] The default coefficient (mul) is a float number that defaults to 2.5. If you set it to 0.0, you will have a mono sound (average of both channels), if you set it to 1.0, you will have unchanged sound. A patch for DOCS/sound.html is about to be sent to Gabucino. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4928 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index cee794dd83..55d028dd77 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -107,6 +107,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},
{NULL, NULL, 0, 0, 0, 0, NULL}
};