summaryrefslogtreecommitdiffstats
path: root/src/polyp
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-03-02 16:32:36 +0000
committerPierre Ossman <ossman@cendio.se>2006-03-02 16:32:36 +0000
commit6cc11fbfc3094cdda5502ef9374104f1d481ab71 (patch)
treef6c01be5d13216f835772245d1da3e483207652d /src/polyp
parent7f04568444a10ae96f98787d9309cdbaed8a171b (diff)
Handle the new latency protocol. This is just a quick fix and does not
handle the new memblockq system. git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@618 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/polyp')
-rw-r--r--src/polyp/def.h2
-rw-r--r--src/polyp/internal.h3
-rw-r--r--src/polyp/stream.c24
3 files changed, 27 insertions, 2 deletions
diff --git a/src/polyp/def.h b/src/polyp/def.h
index 0d095e9a..426a0c9b 100644
--- a/src/polyp/def.h
+++ b/src/polyp/def.h
@@ -195,6 +195,8 @@ typedef struct pa_latency_info {
* 0.5 */
struct timeval timestamp; /**< The time when this latency info was current */
uint64_t counter; /**< The byte counter current when the latency info was requested. \since 0.6 */
+ int64_t write_index; /**< Current absolute write index in the buffer. \since 0.8 */
+ int64_t read_index; /**< Current absolute read index in the buffer. \since 0.8 */
} pa_latency_info;
/** A structure for the spawn api. This may be used to integrate auto
diff --git a/src/polyp/internal.h b/src/polyp/internal.h
index 2e4d859a..1443f7a8 100644
--- a/src/polyp/internal.h
+++ b/src/polyp/internal.h
@@ -37,6 +37,7 @@
#include <polypcore/strlist.h>
#include <polypcore/mcalign.h>
#include <polypcore/memblockq.h>
+#include <polypcore/hashmap.h>
#include "client-conf.h"
@@ -104,6 +105,8 @@ struct pa_stream {
pa_memchunk peek_memchunk;
pa_memblockq *record_memblockq;
+ pa_hashmap *counter_hashmap;
+
int interpolate;
int corked;
diff --git a/src/polyp/stream.c b/src/polyp/stream.c
index 8bdb9059..3ac026f1 100644
--- a/src/polyp/stream.c
+++ b/src/polyp/stream.c
@@ -33,10 +33,12 @@
#include <polypcore/pstream-util.h>
#include <polypcore/util.h>
#include <polypcore/log.h>
+#include <polypcore/hashmap.h>
#include "internal.h"
#define LATENCY_IPOL_INTERVAL_USEC (10000L)
+#define COUNTER_HASHMAP_MAXSIZE (5)
pa_stream *pa_stream_new(pa_context *c, const char *name, const pa_sample_spec *ss, const pa_channel_map *map) {
pa_stream *s;
@@ -85,6 +87,8 @@ pa_stream *pa_stream_new(pa_context *c, const char *name, const pa_sample_spec *
s->record_memblockq = NULL;
+ s->counter_hashmap = pa_hashmap_new(NULL, NULL);
+
s->counter = 0;
s->previous_time = 0;
s->previous_ipol_time = 0;
@@ -102,6 +106,10 @@ pa_stream *pa_stream_new(pa_context *c, const char *name, const pa_sample_spec *
return pa_stream_ref(s);
}
+static void hashmap_free_func(void *p, void *userdata) {
+ pa_xfree(p);
+}
+
static void stream_free(pa_stream *s) {
assert(s);
@@ -116,6 +124,9 @@ static void stream_free(pa_stream *s) {
if (s->record_memblockq)
pa_memblockq_free(s->record_memblockq);
+ if (s->counter_hashmap)
+ pa_hashmap_free(s->counter_hashmap, hashmap_free_func, NULL);
+
pa_xfree(s->name);
pa_xfree(s);
}
@@ -618,6 +629,9 @@ static void stream_get_latency_info_callback(pa_pdispatch *pd, uint32_t command,
assert(o->stream);
assert(o->context);
+ i.counter = *(uint64_t*)pa_hashmap_get(o->stream->counter_hashmap, (void*)tag);
+ pa_xfree(pa_hashmap_remove(o->stream->counter_hashmap, (void*)tag));
+
if (command != PA_COMMAND_REPLY) {
if (pa_context_handle_error(o->context, command, t) < 0)
goto finish;
@@ -629,7 +643,8 @@ static void stream_get_latency_info_callback(pa_pdispatch *pd, uint32_t command,
pa_tagstruct_getu32(t, &i.queue_length) < 0 ||
pa_tagstruct_get_timeval(t, &local) < 0 ||
pa_tagstruct_get_timeval(t, &remote) < 0 ||
- pa_tagstruct_getu64(t, &i.counter) < 0 ||
+ pa_tagstruct_gets64(t, &i.write_index) < 0 ||
+ pa_tagstruct_gets64(t, &i.read_index) < 0 ||
!pa_tagstruct_eof(t)) {
pa_context_fail(o->context, PA_ERR_PROTOCOL);
goto finish;
@@ -679,12 +694,14 @@ pa_operation* pa_stream_get_latency_info(pa_stream *s, pa_stream_get_latency_inf
pa_operation *o;
pa_tagstruct *t;
struct timeval now;
+ uint64_t *counter;
assert(s);
assert(s->ref >= 1);
PA_CHECK_VALIDITY_RETURN_NULL(s->context, s->state == PA_STREAM_READY, PA_ERR_BADSTATE);
PA_CHECK_VALIDITY_RETURN_NULL(s->context, s->direction != PA_STREAM_UPLOAD, PA_ERR_BADSTATE);
+ PA_CHECK_VALIDITY_RETURN_NULL(s->context, pa_hashmap_size(s->counter_hashmap) < COUNTER_HASHMAP_MAXSIZE, PA_ERR_INTERNAL);
o = pa_operation_new(s->context, s, (pa_operation_cb_t) cb, userdata);
@@ -696,11 +713,14 @@ pa_operation* pa_stream_get_latency_info(pa_stream *s, pa_stream_get_latency_inf
pa_gettimeofday(&now);
pa_tagstruct_put_timeval(t, &now);
- pa_tagstruct_putu64(t, s->counter);
pa_pstream_send_tagstruct(s->context->pstream, t);
pa_pdispatch_register_reply(s->context->pdispatch, tag, DEFAULT_TIMEOUT, stream_get_latency_info_callback, o);
+ counter = pa_xmalloc(sizeof(uint64_t));
+ *counter = s->counter;
+ pa_hashmap_put(s->counter_hashmap, (void*)tag, counter);
+
return pa_operation_ref(o);
}