[alsa-devel] [PATCH] ASoC: soc-compress: Send correct stream event for capture start
Signed-off-by: Charles Keepax ckeepax@opensource.wolfsonmicro.com ---
Sorry little bug I missed due to some integration bugs in our setup here. Again this applies onto Takashi's sound for-next branch.
Thanks, Charles
sound/soc/soc-compress.c | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/sound/soc/soc-compress.c b/sound/soc/soc-compress.c index 3853f7e..a5107df 100644 --- a/sound/soc/soc-compress.c +++ b/sound/soc/soc-compress.c @@ -220,8 +220,13 @@ static int soc_compr_set_params(struct snd_compr_stream *cstream, goto err; }
- snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK, - SND_SOC_DAPM_STREAM_START); + if (cstream->direction == SND_COMPRESS_PLAYBACK) { + snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK, + SND_SOC_DAPM_STREAM_START); + } else { + snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE, + SND_SOC_DAPM_STREAM_START); + }
/* cancel any delayed stream shutdown that is pending */ rtd->pop_wait = 0;
On Fri, May 17, 2013 at 04:58:26PM +0100, Charles Keepax wrote:
Sorry little bug I missed due to some integration bugs in our setup here. Again this applies onto Takashi's sound for-next branch.
Now the merge window is done this matters less.
- if (cstream->direction == SND_COMPRESS_PLAYBACK) {
snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
SND_SOC_DAPM_STREAM_START);
- } else {
snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
SND_SOC_DAPM_STREAM_START);
- }
Coding style: no braces for single line if clauses unless there's a good reason.
participants (2)
-
Charles Keepax
-
Mark Brown