diff options
author | wm4 <wm4@nowhere> | 2012-11-15 19:22:01 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2012-11-16 21:21:15 +0100 |
commit | 25a098fe78ad2aee0ad7e18f8d4326e5cd29aeb1 (patch) | |
tree | eb7630929380192859eeae40d1671910b43bedfb /core/options.h | |
parent | 1197e13c2f86ea0c521c206fa3412d50587376da (diff) | |
download | mpv-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.h | 2 |
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; |