aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorVinod Koul <vinod.koul@linux.intel.com>2012-06-12 06:46:18 -0400
committerTakashi Iwai <tiwai@suse.de>2012-06-12 11:55:02 -0400
commit8b21460ac6c0c88a0fec1cc70906c8e25c5aaa54 (patch)
treefec1daa406b1fe7d69340509a86c572a2a96c568 /sound
parent6b18f79399f25a0f8e2b915b2dcb8bf5c7aa470d (diff)
ALSA: compress_core: cleanup pointers on stop
as the start can be called after stop again, we need to reset state Signed-off-by: Namarta Kohli <namartax.kohli@intel.com> Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/core/compress_offload.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/core/compress_offload.c b/sound/core/compress_offload.c
index 375f7a0d66ef..ec2118d0e27a 100644
--- a/sound/core/compress_offload.c
+++ b/sound/core/compress_offload.c
@@ -542,6 +542,10 @@ static int snd_compr_stop(struct snd_compr_stream *stream)
542 if (!retval) { 542 if (!retval) {
543 stream->runtime->state = SNDRV_PCM_STATE_SETUP; 543 stream->runtime->state = SNDRV_PCM_STATE_SETUP;
544 wake_up(&stream->runtime->sleep); 544 wake_up(&stream->runtime->sleep);
545 stream->runtime->hw_pointer = 0;
546 stream->runtime->app_pointer = 0;
547 stream->runtime->total_bytes_available = 0;
548 stream->runtime->total_bytes_transferred = 0;
545 } 549 }
546 return retval; 550 return retval;
547} 551}