svn commit: r359884 - stable/10/sys/dev/sound/pcm

Hans Petter Selasky hselasky at FreeBSD.org
Mon Apr 13 16:30:10 UTC 2020


Author: hselasky
Date: Mon Apr 13 16:30:10 2020
New Revision: 359884
URL: https://svnweb.freebsd.org/changeset/base/359884

Log:
  MFC r359356:
  Change default microphone level from 0 to 25.
  
  Discussed with:	Horse Ma <Shichun.Ma at dell.com>
  Sponsored by:	Mellanox Technologies

Modified:
  stable/10/sys/dev/sound/pcm/mixer.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/sound/pcm/mixer.c
==============================================================================
--- stable/10/sys/dev/sound/pcm/mixer.c	Mon Apr 13 16:29:35 2020	(r359883)
+++ stable/10/sys/dev/sound/pcm/mixer.c	Mon Apr 13 16:30:10 2020	(r359884)
@@ -82,7 +82,7 @@ static u_int16_t snd_mixerdefaults[SOUND_MIXER_NRDEVIC
 	[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,


More information about the svn-src-all mailing list