[alsa-devel] [PATCH] ASoC: Fix check for symmetric rate enforcement
Sascha Hauer
s.hauer at pengutronix.de
Wed Aug 17 08:27:53 CEST 2011
The ASoC core tries to not enforce symmetric rates when
two streams open simultaneously. It does so by checking
rtd->rate being zero. This works exactly once after booting
because it is not set to zero again when the streams close.
Fix this by clearing rtd->rate when no active stream is left.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
sound/soc/soc-core.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index d75043e..c25649a 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -746,6 +746,9 @@ static int soc_codec_close(struct snd_pcm_substream *substream)
codec_dai->active--;
codec->active--;
+ if (!cpu_dai->active && !codec_dai->active)
+ rtd->rate = 0;
+
/* Muting the DAC suppresses artifacts caused during digital
* shutdown, for example from stopping clocks.
*/
--
1.7.5.4
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
More information about the Alsa-devel
mailing list