44 lines
1.4 KiB
Diff
44 lines
1.4 KiB
Diff
|
From 507cdc13187f5eeb222eeb43550cf6a67c3b29c9 Mon Sep 17 00:00:00 2001
|
||
|
From: Takashi Iwai <tiwai@suse.de>
|
||
|
Date: Thu, 23 Jan 2014 09:46:37 +0100
|
||
|
Subject: [PATCH] pcm: initialize monotonic field for dshare and dsnoop, too
|
||
|
|
||
|
Just like the previous fix for dmix, we need update for dshare and
|
||
|
dsnoop plugins.
|
||
|
|
||
|
Signed-off-by: Takashi Iwai <tiwai@suse.de>
|
||
|
---
|
||
|
src/pcm/pcm_dshare.c | 2 +-
|
||
|
src/pcm/pcm_dsnoop.c | 2 +-
|
||
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/src/pcm/pcm_dshare.c b/src/pcm/pcm_dshare.c
|
||
|
index 5b329510481e..f2d1103a6bfb 100644
|
||
|
--- a/src/pcm/pcm_dshare.c
|
||
|
+++ b/src/pcm/pcm_dshare.c
|
||
|
@@ -792,7 +792,7 @@ int snd_pcm_dshare_open(snd_pcm_t **pcmp, const char *name,
|
||
|
|
||
|
pcm->poll_fd = dshare->poll_fd;
|
||
|
pcm->poll_events = POLLIN; /* it's different than other plugins */
|
||
|
-
|
||
|
+ pcm->monotonic = spcm->monotonic;
|
||
|
pcm->mmap_rw = 1;
|
||
|
snd_pcm_set_hw_ptr(pcm, &dshare->hw_ptr, -1, 0);
|
||
|
snd_pcm_set_appl_ptr(pcm, &dshare->appl_ptr, -1, 0);
|
||
|
diff --git a/src/pcm/pcm_dsnoop.c b/src/pcm/pcm_dsnoop.c
|
||
|
index 055e4f498343..76379140c133 100644
|
||
|
--- a/src/pcm/pcm_dsnoop.c
|
||
|
+++ b/src/pcm/pcm_dsnoop.c
|
||
|
@@ -690,7 +690,7 @@ int snd_pcm_dsnoop_open(snd_pcm_t **pcmp, const char *name,
|
||
|
|
||
|
pcm->poll_fd = dsnoop->poll_fd;
|
||
|
pcm->poll_events = POLLIN; /* it's different than other plugins */
|
||
|
-
|
||
|
+ pcm->monotonic = spcm->monotonic;
|
||
|
pcm->mmap_rw = 1;
|
||
|
snd_pcm_set_hw_ptr(pcm, &dsnoop->hw_ptr, -1, 0);
|
||
|
snd_pcm_set_appl_ptr(pcm, &dsnoop->appl_ptr, -1, 0);
|
||
|
--
|
||
|
1.9.0
|
||
|
|