From 500208ba8178333282ff4f79a0e7aebc5d6a570c Mon Sep 17 00:00:00 2001 From: Kamal Mostafa Date: Sat, 11 Aug 2012 10:28:20 -0700 Subject: [PATCH] simpleaudio-alsa: do not allow soft_resample --- src/simpleaudio-alsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simpleaudio-alsa.c b/src/simpleaudio-alsa.c index 7a6b6f9..963cf59 100644 --- a/src/simpleaudio-alsa.c +++ b/src/simpleaudio-alsa.c @@ -129,7 +129,7 @@ simpleaudio_open_stream_alsa( SND_PCM_ACCESS_RW_INTERLEAVED, channels, rate, - 1 /* soft_resample (allow) */, + 0 /* soft_resample (allow) */, -1 /* latency */); if (error) { fprintf(stderr, "E: %s\n", snd_strerror(error));