summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index c8f9746634..95f9ccdce7 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -529,6 +529,8 @@ extern void mp_input_register_options(m_config_t* cfg);
#include "mixer.h"
mixer_t mixer;
+/// step size of mixer changes
+int volstep = 3;
#include "cfg-mplayer.h"
@@ -1921,7 +1923,7 @@ if(sh_audio){
}
mixer.audio_out = audio_out;
mixer.afilter = sh_audio ? sh_audio->afilter : NULL;
- mixer.volstep = 3;
+ mixer.volstep = volstep;
}
current_module="av_init";