summaryrefslogtreecommitdiffstats
path: root/core/options.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-11-15 19:22:01 +0100
committerwm4 <wm4@nowhere>2012-11-16 21:21:15 +0100
commit25a098fe78ad2aee0ad7e18f8d4326e5cd29aeb1 (patch)
treeeb7630929380192859eeae40d1671910b43bedfb /core/options.h
parent1197e13c2f86ea0c521c206fa3412d50587376da (diff)
downloadmpv-25a098fe78ad2aee0ad7e18f8d4326e5cd29aeb1.tar.bz2
mpv-25a098fe78ad2aee0ad7e18f8d4326e5cd29aeb1.tar.xz
options: add --mute for setting initial audio mute status
Similar to --volume. Takes this as opportunity to move the variable corresponding to --volume into MPOpts.
Diffstat (limited to 'core/options.h')
-rw-r--r--core/options.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/options.h b/core/options.h
index 03298554cd..0ceef0f25a 100644
--- a/core/options.h
+++ b/core/options.h
@@ -11,6 +11,8 @@ typedef struct MPOpts {
char *mixer_device;
char *mixer_channel;
int softvol;
+ float mixer_init_volume;
+ int mixer_init_mute;
float softvol_max;
int gapless_audio;
int ao_buffersize;