summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-13 00:59:27 +0200
committerwm4 <wm4@nowhere>2013-06-13 00:59:27 +0200
commita9bbe0a576fdb3a0629e2164134f449e229f9523 (patch)
tree7382bf0735d7365c07fe27952e536e89a55dbd2d /core
parentaadf0abbf2dae7050ee3314cd5d99578839644c1 (diff)
downloadmpv-a9bbe0a576fdb3a0629e2164134f449e229f9523.tar.bz2
mpv-a9bbe0a576fdb3a0629e2164134f449e229f9523.tar.xz
options: remove --stereo
Whatever this was supposed to be originally, it doesn't have much value anymore. It just forced ad_mpg123 to upmix mono to stereo by default (the audio chain can do that). As an option, it was mostly useless and misleading, so get rid of it.
Diffstat (limited to 'core')
-rw-r--r--core/options.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/core/options.c b/core/options.c
index dd527d5538..55297bf983 100644
--- a/core/options.c
+++ b/core/options.c
@@ -45,9 +45,6 @@ extern char *lirc_configfile;
extern int mp_msg_color;
extern int mp_msg_module;
-/* from dec_audio, currently used for ac3surround decoder only */
-extern int fakemono;
-
extern int dvd_speed; /* stream/stream_dvd.c */
/* defined in demux: */
@@ -452,9 +449,6 @@ const m_option_t mp_opts[] = {
// ------------------------- codec/vfilter options --------------------
- // MP3-only: select stereo/left/right
- {"stereo", &fakemono, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
-
{"af*", &af_cfg.list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
OPT_SETTINGSLIST("vf*", vf_settings, 0, (void *) &vf_obj_list),