From 30df7d49c5a4c5d377fed6111f8867f16be05a8c Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Sun, 11 Jun 2006 23:59:18 +0000 Subject: Reverting patch to "fix" the alsa plugin when used with dmix. It ended up breaking the alsa rate plugin, and dmix seems to work fine without it. Thanks to Skee from #mpd for testing. git-svn-id: https://svn.musicpd.org/mpd/trunk@4269 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/audioOutputs/audioOutput_alsa.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/audioOutputs/audioOutput_alsa.c') diff --git a/src/audioOutputs/audioOutput_alsa.c b/src/audioOutputs/audioOutput_alsa.c index c895a9566..a22b8e5be 100644 --- a/src/audioOutputs/audioOutput_alsa.c +++ b/src/audioOutputs/audioOutput_alsa.c @@ -240,7 +240,8 @@ static int alsa_openDevice(AudioOutput * audioOutput) if(err < 0) goto error; cmd = "snd_pcm_sw_params_set_start_threshold"; - err = snd_pcm_sw_params_set_start_threshold(ad->pcmHandle, swparams, 0); + err = snd_pcm_sw_params_set_start_threshold(ad->pcmHandle, swparams, + alsa_buffer_size - alsa_period_size); if(err < 0) goto error; cmd = "snd_pcm_sw_params_set_avail_min"; -- cgit v1.2.3