summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorOron Peled <oron.peled@xorcom.com>2017-12-19 10:52:54 +0200
committerSean Bright <sean.bright@gmail.com>2018-02-03 09:41:07 -0500
commit5b8fea93d106332bc0faa4b7fa8a6ea71e546cac (patch)
tree0015d4820779a679b9724498acaa9724ad89e2a1 /channels
parent4142eacfef109d5ac850deee6027a81f37fcc314 (diff)
chan_console: don't read and write at the same time
It seems that the ALSA backend of PortAudio doesn't know how to both read and write at the same time by adding a per-device mutex. FIXME: currently only a draft version. Need to either auto-detect we work with the ALSA backend or add an extra configuration option to use this mutex. ASTERISK-27426 #close Change-Id: I635eacee45f5413faa18f5a3b606af03b926dacb
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_console.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/channels/chan_console.c b/channels/chan_console.c
index 7c57ec4ff..7692b26cc 100644
--- a/channels/chan_console.c
+++ b/channels/chan_console.c
@@ -278,7 +278,9 @@ static void *stream_monitor(void *data)
for (;;) {
pthread_testcancel();
+ console_pvt_lock(pvt);
res = Pa_ReadStream(pvt->stream, buf, sizeof(buf) / sizeof(int16_t));
+ console_pvt_unlock(pvt);
pthread_testcancel();
if (!pvt->owner) {
@@ -611,7 +613,9 @@ static int console_write(struct ast_channel *chan, struct ast_frame *f)
{
struct console_pvt *pvt = ast_channel_tech_pvt(chan);
+ console_pvt_lock(pvt);
Pa_WriteStream(pvt->stream, f->data.ptr, f->samples);
+ console_pvt_unlock(pvt);
return 0;
}