]> code.delx.au - pulseaudio/commitdiff
The extra stream ref actually did some good. Re-add it, but with some more
authorPierre Ossman <ossman@cendio.se>
Tue, 7 Mar 2006 18:29:27 +0000 (18:29 +0000)
committerPierre Ossman <ossman@cendio.se>
Tue, 7 Mar 2006 18:29:27 +0000 (18:29 +0000)
symmetry, assertions and comments.

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@635 fefdeb5f-60dc-0310-8127-8f9354f1896f

src/polyp/stream.c

index 746ea9f99c780cf4ee46066202fb9bf5ded4573f..f4436ff5e73678b0a3f895c246df157aa8a6a687 100644 (file)
@@ -103,6 +103,10 @@ pa_stream *pa_stream_new(pa_context *c, const char *name, const pa_sample_spec *
 
     PA_LLIST_PREPEND(pa_stream, c->streams, s);
 
+    /* The context and stream will point at each other. We cannot ref count
+       both though since that will create a loop. */
+    pa_context_ref(s->context);
+
     return s;
 }
 
@@ -111,7 +115,11 @@ static void hashmap_free_func(void *p, void *userdata) {
 }
 
 static void stream_free(pa_stream *s) {
-    assert(s);
+    assert(s && s->context && !s->channel_valid);
+
+    PA_LLIST_REMOVE(pa_stream, s->context->streams, s);
+
+    pa_context_unref(s->context);
 
     if (s->ipol_event) {
         assert(s->mainloop);
@@ -187,7 +195,10 @@ void pa_stream_set_state(pa_stream *s, pa_stream_state_t st) {
         if (s->channel_valid)
             pa_dynarray_put((s->direction == PA_STREAM_PLAYBACK) ? s->context->playback_streams : s->context->record_streams, s->channel, NULL);
 
-        PA_LLIST_REMOVE(pa_stream, s->context->streams, s);
+        s->channel = 0;
+        s->channel_valid = 0;
+
+        /* We keep a ref as long as we're connected */
         pa_stream_unref(s);
     }
 
@@ -358,6 +369,9 @@ void pa_create_stream_callback(pa_pdispatch *pd, uint32_t command, PA_GCC_UNUSED
     s->channel_valid = 1;
     pa_dynarray_put((s->direction == PA_STREAM_RECORD) ? s->context->record_streams : s->context->playback_streams, s->channel, s);
 
+    /* We add an extra ref as long as we're connected (i.e. in the dynarray) */
+    pa_stream_ref(s);
+
     if (s->interpolate) {
         struct timeval tv;
         pa_operation_unref(pa_stream_get_latency_info(s, NULL, NULL));