diff options
author | Steve Chen <schen@mvista.com> | 2009-02-21 08:05:04 -0600 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-23 07:49:04 +0100 |
commit | 5370d96f85962769ea3df3a81cc885f257c51589 (patch) | |
tree | 109090f4e1660340b5932d886991be471acf01e3 /sound/core/oss/rate.c | |
parent | e8bf069c419c1dc0657e02636441fe1179a9db14 (diff) | |
download | linux-5370d96f85962769ea3df3a81cc885f257c51589.tar.gz linux-5370d96f85962769ea3df3a81cc885f257c51589.tar.bz2 linux-5370d96f85962769ea3df3a81cc885f257c51589.zip |
ALSA: fix excessive background noise introduced by OSS emulation rate shrink
Incorrect variable was used to get the next sample which caused S2
to be stuck with the same value resulting in loud background noise.
Signed-off-by: Steve Chen <schen at mvista.com>
Cc: <stable@kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/oss/rate.c')
-rw-r--r-- | sound/core/oss/rate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/oss/rate.c b/sound/core/oss/rate.c index a466443c4a26..2fa9299a440d 100644 --- a/sound/core/oss/rate.c +++ b/sound/core/oss/rate.c @@ -157,7 +157,7 @@ static void resample_shrink(struct snd_pcm_plugin *plugin, while (dst_frames1 > 0) { S1 = S2; if (src_frames1-- > 0) { - S1 = *src; + S2 = *src; src += src_step; } if (pos & ~R_MASK) { |