From 9211468fc2a33ca9ad09743be29150be7b794e70 Mon Sep 17 00:00:00 2001 From: Hans Petter Selasky Date: Fri, 27 Mar 2020 10:28:15 +0000 Subject: [PATCH] Change default microphone level from 0 to 25. Discussed with: Horse Ma MFC after: 1 week Sponsored by: Mellanox Technologies --- sys/dev/sound/pcm/mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/sound/pcm/mixer.c b/sys/dev/sound/pcm/mixer.c index 5bc27d653552..dc9efe630732 100644 --- a/sys/dev/sound/pcm/mixer.c +++ b/sys/dev/sound/pcm/mixer.c @@ -83,7 +83,7 @@ static u_int16_t snd_mixerdefaults[SOUND_MIXER_NRDEVICES] = { [SOUND_MIXER_PCM] = 75, [SOUND_MIXER_SPEAKER] = 75, [SOUND_MIXER_LINE] = 75, - [SOUND_MIXER_MIC] = 0, + [SOUND_MIXER_MIC] = 25, [SOUND_MIXER_CD] = 75, [SOUND_MIXER_IGAIN] = 0, [SOUND_MIXER_LINE1] = 75,