2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
|
|
|
|
This file is part of polypaudio.
|
|
|
|
|
|
|
|
|
|
polypaudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-07-16 19:56:36 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
polypaudio is distributed in the hope that it will be useful, but
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2004-07-16 19:56:36 +00:00
|
|
|
along with polypaudio; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-07-10 19:04:21 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
2004-07-06 00:08:44 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
2006-02-17 12:10:58 +00:00
|
|
|
#include <polyp/polypaudio.h>
|
|
|
|
|
#include <polyp/mainloop.h>
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
#include <polypcore/native-common.h>
|
|
|
|
|
#include <polypcore/xmalloc.h>
|
|
|
|
|
#include <polypcore/log.h>
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2006-02-17 12:10:58 +00:00
|
|
|
#include "simple.h"
|
|
|
|
|
|
2006-02-20 23:32:12 +00:00
|
|
|
#define CHECK_VALIDITY_RETURN_ANY(rerror, expression, error, ret) do { \
|
|
|
|
|
if (!(expression)) { \
|
|
|
|
|
if (rerror) \
|
|
|
|
|
*(rerror) = error; \
|
|
|
|
|
return ret; \
|
|
|
|
|
} \
|
|
|
|
|
} while(0);
|
|
|
|
|
|
2004-06-23 23:17:30 +00:00
|
|
|
struct pa_simple {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_mainloop *mainloop;
|
|
|
|
|
pa_context *context;
|
|
|
|
|
pa_stream *stream;
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_stream_direction_t direction;
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2004-09-12 19:37:04 +00:00
|
|
|
int dead;
|
2004-07-10 19:04:21 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
const void *read_data;
|
2004-07-10 19:04:21 +00:00
|
|
|
size_t read_index, read_length;
|
2004-09-12 19:37:04 +00:00
|
|
|
pa_usec_t latency;
|
2004-06-23 23:17:30 +00:00
|
|
|
};
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int check_error(pa_simple *p, int *rerror) {
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_context_state_t cst;
|
|
|
|
|
pa_stream_state_t sst;
|
2004-07-09 23:26:10 +00:00
|
|
|
assert(p);
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
if ((cst = pa_context_get_state(p->context)) == PA_CONTEXT_FAILED)
|
|
|
|
|
goto fail;
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
assert(cst != PA_CONTEXT_TERMINATED);
|
|
|
|
|
|
|
|
|
|
if (p->stream) {
|
|
|
|
|
if ((sst = pa_stream_get_state(p->stream)) == PA_STREAM_FAILED)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
assert(sst != PA_STREAM_TERMINATED);
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
return 0;
|
2004-08-14 20:25:32 +00:00
|
|
|
|
|
|
|
|
fail:
|
2006-01-11 01:17:39 +00:00
|
|
|
if (rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
p->dead = 1;
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
return -1;
|
2004-07-09 23:26:10 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int iterate(pa_simple *p, int block, int *rerror) {
|
2004-07-07 22:02:15 +00:00
|
|
|
assert(p && p->context && p->mainloop);
|
2004-07-07 00:22:46 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (check_error(p, rerror) < 0)
|
2004-07-09 23:26:10 +00:00
|
|
|
return -1;
|
|
|
|
|
|
2006-04-12 22:45:57 +00:00
|
|
|
if (block || pa_context_is_pending(p->context)) {
|
|
|
|
|
do {
|
|
|
|
|
if (pa_mainloop_iterate(p->mainloop, 1, NULL) < 0) {
|
|
|
|
|
if (rerror)
|
|
|
|
|
*rerror = PA_ERR_INTERNAL;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (check_error(p, rerror) < 0)
|
|
|
|
|
return -1;
|
|
|
|
|
} while (pa_context_is_pending(p->context));
|
|
|
|
|
}
|
2004-07-07 00:22:46 +00:00
|
|
|
|
2006-04-12 22:45:57 +00:00
|
|
|
for (;;) {
|
|
|
|
|
int r;
|
2004-09-19 00:03:12 +00:00
|
|
|
|
2006-04-12 22:45:57 +00:00
|
|
|
if ((r = pa_mainloop_iterate(p->mainloop, 0, NULL)) < 0) {
|
2006-01-11 01:17:39 +00:00
|
|
|
if (rerror)
|
2006-02-20 04:05:16 +00:00
|
|
|
*rerror = PA_ERR_INTERNAL;
|
2004-09-19 00:03:12 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2006-04-12 22:45:57 +00:00
|
|
|
if (r == 0)
|
|
|
|
|
break;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (check_error(p, rerror) < 0)
|
2004-09-19 00:03:12 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-07 00:22:46 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_simple* pa_simple_new(
|
2004-06-23 23:17:30 +00:00
|
|
|
const char *server,
|
|
|
|
|
const char *name,
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_stream_direction_t dir,
|
2004-06-23 23:17:30 +00:00
|
|
|
const char *dev,
|
|
|
|
|
const char *stream_name,
|
2006-01-11 01:17:39 +00:00
|
|
|
const pa_sample_spec *ss,
|
|
|
|
|
const pa_buffer_attr *attr,
|
|
|
|
|
int *rerror) {
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_simple *p;
|
2006-02-20 23:32:12 +00:00
|
|
|
int error = PA_ERR_INTERNAL, r;
|
|
|
|
|
|
|
|
|
|
CHECK_VALIDITY_RETURN_ANY(rerror, !server || *server, PA_ERR_INVALID, NULL);
|
|
|
|
|
CHECK_VALIDITY_RETURN_ANY(rerror, dir == PA_STREAM_PLAYBACK || dir == PA_STREAM_RECORD, PA_ERR_INVALID, NULL);
|
|
|
|
|
CHECK_VALIDITY_RETURN_ANY(rerror, !dev || *dev, PA_ERR_INVALID, NULL);
|
|
|
|
|
CHECK_VALIDITY_RETURN_ANY(rerror, ss && pa_sample_spec_valid(ss), PA_ERR_INVALID, NULL);
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2006-02-20 23:32:12 +00:00
|
|
|
p = pa_xnew(pa_simple, 1);
|
2004-06-23 23:17:30 +00:00
|
|
|
p->context = NULL;
|
|
|
|
|
p->stream = NULL;
|
|
|
|
|
p->mainloop = pa_mainloop_new();
|
|
|
|
|
assert(p->mainloop);
|
|
|
|
|
p->dead = 0;
|
2004-07-10 19:04:21 +00:00
|
|
|
p->direction = dir;
|
|
|
|
|
p->read_data = NULL;
|
|
|
|
|
p->read_index = p->read_length = 0;
|
2004-09-12 19:37:04 +00:00
|
|
|
p->latency = 0;
|
2004-06-23 23:17:30 +00:00
|
|
|
|
|
|
|
|
if (!(p->context = pa_context_new(pa_mainloop_get_api(p->mainloop), name)))
|
|
|
|
|
goto fail;
|
2004-08-14 20:25:32 +00:00
|
|
|
|
2006-02-20 23:32:12 +00:00
|
|
|
if (pa_context_connect(p->context, server, 0, NULL) < 0) {
|
|
|
|
|
error = pa_context_errno(p->context);
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-07 00:22:46 +00:00
|
|
|
/* Wait until the context is ready */
|
2004-08-14 20:25:32 +00:00
|
|
|
while (pa_context_get_state(p->context) != PA_CONTEXT_READY) {
|
2004-07-07 00:22:46 +00:00
|
|
|
if (iterate(p, 1, &error) < 0)
|
2004-06-23 23:17:30 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-20 23:32:12 +00:00
|
|
|
if (!(p->stream = pa_stream_new(p->context, stream_name, ss, NULL))) {
|
|
|
|
|
error = pa_context_errno(p->context);
|
2004-06-23 23:17:30 +00:00
|
|
|
goto fail;
|
2006-02-20 23:32:12 +00:00
|
|
|
}
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
if (dir == PA_STREAM_PLAYBACK)
|
2006-02-20 23:32:12 +00:00
|
|
|
r = pa_stream_connect_playback(p->stream, dev, attr, 0, NULL, NULL);
|
2004-08-14 20:25:32 +00:00
|
|
|
else
|
2006-02-20 23:32:12 +00:00
|
|
|
r = pa_stream_connect_record(p->stream, dev, attr, 0);
|
|
|
|
|
|
|
|
|
|
if (r < 0) {
|
|
|
|
|
error = pa_context_errno(p->context);
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2004-08-14 20:25:32 +00:00
|
|
|
|
2004-07-07 00:22:46 +00:00
|
|
|
/* Wait until the stream is ready */
|
2004-08-14 20:25:32 +00:00
|
|
|
while (pa_stream_get_state(p->stream) != PA_STREAM_READY) {
|
2004-07-07 00:22:46 +00:00
|
|
|
if (iterate(p, 1, &error) < 0)
|
2004-06-23 23:17:30 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return p;
|
|
|
|
|
|
|
|
|
|
fail:
|
2006-01-11 01:17:39 +00:00
|
|
|
if (rerror)
|
|
|
|
|
*rerror = error;
|
2004-06-23 23:17:30 +00:00
|
|
|
pa_simple_free(p);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_simple_free(pa_simple *s) {
|
2004-06-23 23:17:30 +00:00
|
|
|
assert(s);
|
|
|
|
|
|
|
|
|
|
if (s->stream)
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_stream_unref(s->stream);
|
2004-06-23 23:17:30 +00:00
|
|
|
|
|
|
|
|
if (s->context)
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_context_unref(s->context);
|
2004-06-23 23:17:30 +00:00
|
|
|
|
|
|
|
|
if (s->mainloop)
|
2004-07-06 00:08:44 +00:00
|
|
|
pa_mainloop_free(s->mainloop);
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(s);
|
2004-06-23 23:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_simple_write(pa_simple *p, const void*data, size_t length, int *rerror) {
|
2006-02-20 23:32:12 +00:00
|
|
|
assert(p);
|
|
|
|
|
assert(data);
|
|
|
|
|
|
|
|
|
|
CHECK_VALIDITY_RETURN_ANY(rerror, p->direction == PA_STREAM_PLAYBACK, PA_ERR_BADSTATE, -1);
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2004-09-12 19:37:04 +00:00
|
|
|
if (p->dead) {
|
2006-01-11 01:17:39 +00:00
|
|
|
if (rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-23 23:17:30 +00:00
|
|
|
while (length > 0) {
|
|
|
|
|
size_t l;
|
|
|
|
|
|
2004-07-07 00:22:46 +00:00
|
|
|
while (!(l = pa_stream_writable_size(p->stream)))
|
2006-01-11 01:17:39 +00:00
|
|
|
if (iterate(p, 1, rerror) < 0)
|
2004-06-23 23:17:30 +00:00
|
|
|
return -1;
|
|
|
|
|
|
2004-07-06 00:08:44 +00:00
|
|
|
if (l > length)
|
|
|
|
|
l = length;
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
pa_stream_write(p->stream, data, l, NULL, 0, PA_SEEK_RELATIVE);
|
2006-01-11 01:17:39 +00:00
|
|
|
data = (const uint8_t*) data + l;
|
2004-06-23 23:17:30 +00:00
|
|
|
length -= l;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-07 00:22:46 +00:00
|
|
|
/* Make sure that no data is pending for write */
|
2006-01-11 01:17:39 +00:00
|
|
|
if (iterate(p, 0, rerror) < 0)
|
2004-07-07 00:22:46 +00:00
|
|
|
return -1;
|
|
|
|
|
|
2004-06-23 23:17:30 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_simple_read(pa_simple *p, void*data, size_t length, int *rerror) {
|
2006-02-20 23:32:12 +00:00
|
|
|
assert(p);
|
|
|
|
|
assert(data);
|
2004-07-10 19:04:21 +00:00
|
|
|
|
2006-02-20 23:32:12 +00:00
|
|
|
CHECK_VALIDITY_RETURN_ANY(rerror, p->direction == PA_STREAM_RECORD, PA_ERR_BADSTATE, -1);
|
|
|
|
|
|
2004-09-12 19:37:04 +00:00
|
|
|
if (p->dead) {
|
2006-01-11 01:17:39 +00:00
|
|
|
if (rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-10 19:04:21 +00:00
|
|
|
while (length > 0) {
|
2006-02-20 04:05:16 +00:00
|
|
|
|
|
|
|
|
if (!p->read_data)
|
|
|
|
|
if (pa_stream_peek(p->stream, &p->read_data, &p->read_length) >= 0)
|
|
|
|
|
p->read_index = 0;
|
|
|
|
|
|
2004-07-10 19:04:21 +00:00
|
|
|
if (p->read_data) {
|
|
|
|
|
size_t l = length;
|
|
|
|
|
|
|
|
|
|
if (p->read_length <= l)
|
|
|
|
|
l = p->read_length;
|
|
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
memcpy(data, (const uint8_t*) p->read_data+p->read_index, l);
|
2004-07-10 19:04:21 +00:00
|
|
|
|
2004-09-01 00:46:56 +00:00
|
|
|
data = (uint8_t*) data + l;
|
2004-07-10 19:04:21 +00:00
|
|
|
length -= l;
|
|
|
|
|
|
|
|
|
|
p->read_index += l;
|
|
|
|
|
p->read_length -= l;
|
|
|
|
|
|
|
|
|
|
if (!p->read_length) {
|
2006-02-20 04:05:16 +00:00
|
|
|
pa_stream_drop(p->stream);
|
2004-07-10 19:04:21 +00:00
|
|
|
p->read_data = NULL;
|
2006-02-20 04:05:16 +00:00
|
|
|
p->read_length = 0;
|
2004-07-10 19:04:21 +00:00
|
|
|
p->read_index = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!length)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
assert(!p->read_data);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (iterate(p, 1, rerror) < 0)
|
2004-07-10 19:04:21 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2004-07-07 22:02:15 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void drain_or_flush_complete(pa_stream *s, int success, void *userdata) {
|
|
|
|
|
pa_simple *p = userdata;
|
2006-02-20 23:32:12 +00:00
|
|
|
|
|
|
|
|
assert(s);
|
|
|
|
|
assert(p);
|
|
|
|
|
|
2004-09-12 19:37:04 +00:00
|
|
|
if (!success)
|
|
|
|
|
p->dead = 1;
|
2004-07-07 22:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_simple_drain(pa_simple *p, int *rerror) {
|
|
|
|
|
pa_operation *o;
|
2006-02-20 23:32:12 +00:00
|
|
|
|
|
|
|
|
assert(p);
|
|
|
|
|
|
|
|
|
|
CHECK_VALIDITY_RETURN_ANY(rerror, p->direction == PA_STREAM_PLAYBACK, PA_ERR_BADSTATE, -1);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
if (p->dead) {
|
2006-01-11 01:17:39 +00:00
|
|
|
if (rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-20 23:32:12 +00:00
|
|
|
if (!(o = pa_stream_drain(p->stream, drain_or_flush_complete, p))) {
|
|
|
|
|
if (rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
while (pa_operation_get_state(o) == PA_OPERATION_RUNNING) {
|
2006-01-11 01:17:39 +00:00
|
|
|
if (iterate(p, 1, rerror) < 0) {
|
2004-09-12 19:37:04 +00:00
|
|
|
pa_operation_cancel(o);
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (p->dead && rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
return p->dead ? -1 : 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-04-07 01:29:33 +00:00
|
|
|
static void timing_complete(pa_stream *s, int success, void *userdata) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_simple *p = userdata;
|
2006-02-20 23:32:12 +00:00
|
|
|
|
|
|
|
|
assert(s);
|
|
|
|
|
assert(p);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
2006-04-07 00:25:19 +00:00
|
|
|
if (!success)
|
2004-09-12 19:37:04 +00:00
|
|
|
p->dead = 1;
|
2004-11-08 23:48:19 +00:00
|
|
|
else {
|
|
|
|
|
int negative = 0;
|
2006-04-07 00:25:19 +00:00
|
|
|
if (pa_stream_get_latency(s, &p->latency, &negative) < 0)
|
|
|
|
|
p->dead = 1;
|
|
|
|
|
else if (negative)
|
2004-11-08 23:48:19 +00:00
|
|
|
p->latency = 0;
|
|
|
|
|
}
|
2004-09-12 19:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_usec_t pa_simple_get_playback_latency(pa_simple *p, int *rerror) {
|
|
|
|
|
pa_operation *o;
|
2006-02-20 23:32:12 +00:00
|
|
|
|
|
|
|
|
assert(p);
|
|
|
|
|
|
|
|
|
|
CHECK_VALIDITY_RETURN_ANY(rerror, p->direction == PA_STREAM_PLAYBACK, PA_ERR_BADSTATE, -1);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
if (p->dead) {
|
2006-01-11 01:17:39 +00:00
|
|
|
if (rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
return (pa_usec_t) -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p->latency = 0;
|
2006-04-07 01:29:33 +00:00
|
|
|
if (!(o = pa_stream_update_timing_info(p->stream, timing_complete, p))) {
|
2006-02-20 23:32:12 +00:00
|
|
|
if (rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
|
|
|
|
return (pa_usec_t) -1;
|
|
|
|
|
}
|
2004-08-14 20:25:32 +00:00
|
|
|
|
2004-09-12 19:37:04 +00:00
|
|
|
while (pa_operation_get_state(o) == PA_OPERATION_RUNNING) {
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (iterate(p, 1, rerror) < 0) {
|
2004-09-12 19:37:04 +00:00
|
|
|
pa_operation_cancel(o);
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (p->dead && rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
return p->dead ? (pa_usec_t) -1 : p->latency;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_simple_flush(pa_simple *p, int *rerror) {
|
|
|
|
|
pa_operation *o;
|
2006-02-20 23:32:12 +00:00
|
|
|
|
|
|
|
|
assert(p);
|
|
|
|
|
|
|
|
|
|
CHECK_VALIDITY_RETURN_ANY(rerror, p->direction == PA_STREAM_PLAYBACK, PA_ERR_BADSTATE, -1);
|
2004-07-07 22:02:15 +00:00
|
|
|
|
2004-09-12 19:37:04 +00:00
|
|
|
if (p->dead) {
|
2006-01-11 01:17:39 +00:00
|
|
|
if (rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-20 23:32:12 +00:00
|
|
|
if (!(o = pa_stream_flush(p->stream, drain_or_flush_complete, p))) {
|
|
|
|
|
if (rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2004-09-12 19:37:04 +00:00
|
|
|
|
|
|
|
|
while (pa_operation_get_state(o) == PA_OPERATION_RUNNING) {
|
2006-01-11 01:17:39 +00:00
|
|
|
if (iterate(p, 1, rerror) < 0) {
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_operation_cancel(o);
|
|
|
|
|
pa_operation_unref(o);
|
2004-07-07 22:02:15 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_operation_unref(o);
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (p->dead && rerror)
|
|
|
|
|
*rerror = pa_context_errno(p->context);
|
2004-08-14 20:25:32 +00:00
|
|
|
|
2004-09-12 19:37:04 +00:00
|
|
|
return p->dead ? -1 : 0;
|
2004-07-07 22:02:15 +00:00
|
|
|
}
|