diff --git a/backends/mixer_oss.cpp b/backends/mixer_oss.cpp --- a/backends/mixer_oss.cpp +++ b/backends/mixer_oss.cpp @@ -146,7 +146,7 @@ { if( devmask & ( 1 << idx ) ) // device active? { - Volume playbackVol( 100, 1, true, false ); + Volume playbackVol( 100, 0, true, false ); playbackVol.addVolumeChannel(VolumeChannel(Volume::LEFT)); if ( stereodevs & ( 1 << idx ) ) playbackVol.addVolumeChannel(VolumeChannel(Volume::RIGHT)); @@ -163,7 +163,7 @@ // Tutorial: Howto add a simple capture switch if ( recmask & ( 1 << idx ) ) { // can be captured => add capture volume, with no capture volume - Volume captureVol( 100, 1, true, true ); + Volume captureVol( 100, 0, true, true ); md->addCaptureVolume(captureVol); }