[pulseaudio-commits] r1916 - /branches/lennart/src/modules/module-combine.c

svnmailer-noreply at 0pointer.de svnmailer-noreply at 0pointer.de
Fri Sep 28 06:02:29 PDT 2007


Author: lennart
Date: Fri Sep 28 15:02:28 2007
New Revision: 1916

URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=1916&root=pulseaudio&view=rev
Log:
rework module-combine once again. We now run the data generation always in a seperate thread. This should help use to avoid all the awful race conditions we had in previously

Modified:
    branches/lennart/src/modules/module-combine.c

Modified: branches/lennart/src/modules/module-combine.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/branches/lennart/src/modules/module-combine.c?rev=1916&root=pulseaudio&r1=1915&r2=1916&view=diff
==============================================================================
--- branches/lennart/src/modules/module-combine.c (original)
+++ branches/lennart/src/modules/module-combine.c Fri Sep 28 15:02:28 2007
@@ -84,11 +84,12 @@
 
 struct output {
     struct userdata *userdata;
+
     pa_sink *sink;
     pa_sink_input *sink_input;
 
-    pa_asyncmsgq *inq,    /* Message queue from the master to this sink input */
-                 *outq;   /* Message queue from this sink input to the master */
+    pa_asyncmsgq *inq,    /* Message queue from the sink thread to this sink input */
+                 *outq;   /* Message queue from this sink input to the sink thread */
     pa_rtpoll_item *inq_rtpoll_item, *outq_rtpoll_item;
 
     pa_memblockq *memblockq;
@@ -107,35 +108,33 @@
     pa_thread_mq thread_mq;
     pa_rtpoll *rtpoll;
 
-    struct output *master;
-
     pa_time_event *time_event;
     uint32_t adjust_time;
 
-    int automatic;
+    pa_bool_t automatic;
     size_t block_size;
 
-    struct timespec timestamp;
-
     pa_hook_slot *sink_new_slot, *sink_unlink_slot, *sink_state_changed_slot;
 
     pa_resample_method_t resample_method;
 
     struct timespec adjust_timestamp;
 
+    struct output *master;
     pa_idxset* outputs; /* managed in main context */
 
     struct {
-        PA_LLIST_HEAD(struct output, outputs); /* managed in IO thread context */
-        struct output *master;
+        PA_LLIST_HEAD(struct output, active_outputs); /* managed in IO thread context */
+        pa_atomic_t running;  /* we cache that value here, so that every thread can query it cheaply */
+        struct timespec timestamp;
+        pa_bool_t in_null_mode;
     } thread_info;
 };
 
 enum {
     SINK_MESSAGE_ADD_OUTPUT = PA_SINK_MESSAGE_MAX,
     SINK_MESSAGE_REMOVE_OUTPUT,
-    SINK_MESSAGE_NEED,
-    SINK_MESSAGE_SET_MASTER
+    SINK_MESSAGE_NEED
 };
 
 enum {
@@ -143,9 +142,9 @@
 };
 
 static void output_free(struct output *o);
-static int output_create_sink_input(struct userdata *u, struct output *o);
-static int update_master(struct userdata *u, struct output *o);
-static int pick_master(struct userdata *u, struct output *except);
+static int output_create_sink_input(struct output *o);
+static void update_master(struct userdata *u, struct output *o);
+static void pick_master(struct userdata *u, struct output *except);
 
 static void adjust_rates(struct userdata *u) {
     struct output *o;
@@ -159,22 +158,25 @@
     if (pa_idxset_size(u->outputs) <= 0)
         return;
 
+    if (!u->master)
+        return;
+
     if (!PA_SINK_OPENED(pa_sink_get_state(u->sink)))
         return;
 
     for (o = pa_idxset_first(u->outputs, &idx); o; o = pa_idxset_next(u->outputs, &idx)) {
-        uint32_t sink_latency;
+        pa_usec_t sink_latency;
 
         if (!o->sink_input || !PA_SINK_OPENED(pa_sink_get_state(o->sink)))
             continue;
 
-        sink_latency = o->sink_input->sink ? pa_sink_get_latency(o->sink_input->sink) : 0;
+        sink_latency = pa_sink_get_latency(o->sink);
         o->total_latency = sink_latency + pa_sink_input_get_latency(o->sink_input);
 
         if (sink_latency > max_sink_latency)
             max_sink_latency = sink_latency;
 
-        if (o->total_latency < min_total_latency)
+        if (min_total_latency == (pa_usec_t) -1 || o->total_latency < min_total_latency)
             min_total_latency = o->total_latency;
     }
 
@@ -184,7 +186,7 @@
     target_latency = max_sink_latency > min_total_latency ? max_sink_latency : min_total_latency;
 
     pa_log_info("[%s] target latency is %0.0f usec.", u->sink->name, (float) target_latency);
-    pa_log_info("[%s] master is %s", u->sink->name, u->master->sink->description);
+    pa_log_info("[%s] master %s latency %0.0f usec.", u->sink->name, u->master->sink->name, (float) u->master->total_latency);
 
     base_rate = u->sink->sample_spec.rate;
 
@@ -195,9 +197,9 @@
             continue;
 
         if (o->total_latency < target_latency)
-            r -= (uint32_t) (((((double) target_latency - o->total_latency))/u->adjust_time)*r/ 1000000);
+            r -= (uint32_t) (((((double) target_latency - o->total_latency))/u->adjust_time)*r/PA_USEC_PER_SEC);
         else if (o->total_latency > target_latency)
-            r += (uint32_t) (((((double) o->total_latency - target_latency))/u->adjust_time)*r/ 1000000);
+            r += (uint32_t) (((((double) o->total_latency - target_latency))/u->adjust_time)*r/PA_USEC_PER_SEC);
 
         if (r < (uint32_t) (base_rate*0.9) || r > (uint32_t) (base_rate*1.1)) {
             pa_log_warn("[%s] sample rates too different, not adjusting (%u vs. %u).", o->sink_input->name, base_rate, r);
@@ -231,36 +233,46 @@
 
     pa_log_debug("Thread starting up");
 
+    if (u->core->high_priority)
+        pa_make_realtime();
+
     pa_thread_mq_install(&u->thread_mq);
     pa_rtpoll_install(u->rtpoll);
 
-    pa_rtclock_get(&u->timestamp);
-
-    /* This is only run when we are in NULL mode, to make sure that
-     * playback doesn't stop. In all other cases we hook our stuff
-     * into the master sink. */
+    pa_rtclock_get(&u->thread_info.timestamp);
+    u->thread_info.in_null_mode = FALSE;
 
     for (;;) {
         int ret;
 
-        /* Render some data and drop it immediately */
-        if (u->sink->thread_info.state == PA_SINK_RUNNING) {
+        /* If no outputs are connected, render some data and drop it immediately. */
+        if (u->sink->thread_info.state == PA_SINK_RUNNING && !u->thread_info.active_outputs) {
             struct timespec now;
 
             pa_rtclock_get(&now);
 
-            if (pa_timespec_cmp(&u->timestamp, &now) <= 0) {
+            if (!u->thread_info.in_null_mode || pa_timespec_cmp(&u->thread_info.timestamp, &now) <= 0) {
                 pa_sink_skip(u->sink, u->block_size);
-                pa_timespec_add(&u->timestamp, pa_bytes_to_usec(u->block_size, &u->sink->sample_spec));
+
+                if (!u->thread_info.in_null_mode)
+                    u->thread_info.timestamp = now;
+
+                pa_timespec_add(&u->thread_info.timestamp, pa_bytes_to_usec(u->block_size, &u->sink->sample_spec));
             }
 
-            pa_rtpoll_set_timer_absolute(u->rtpoll, &u->timestamp);
-        } else
+            pa_rtpoll_set_timer_absolute(u->rtpoll, &u->thread_info.timestamp);
+            u->thread_info.in_null_mode = TRUE;
+
+        } else {
             pa_rtpoll_set_timer_disabled(u->rtpoll);
+            u->thread_info.in_null_mode = FALSE;
+        }
 
         /* Hmm, nothing to do. Let's sleep */
-        if ((ret = pa_rtpoll_run(u->rtpoll, 1)) < 0)
+        if ((ret = pa_rtpoll_run(u->rtpoll, TRUE)) < 0) {
+            pa_log_info("pa_rtpoll_run() = %i", ret);
             goto fail;
+        }
 
         if (ret == 0)
             goto finish;
@@ -281,12 +293,13 @@
     pa_assert(u);
     pa_assert(o);
 
-    if (!PA_SINK_OPENED(u->sink->thread_info.state))
+    /* We are run by the sink thread, on behalf of an output (o). The
+     * other output is waiting for us, hence it is safe to access its
+     * mainblockq and asyncmsgq directly. */
+
+    /* If we are not running, we cannot produce any data */
+    if (!pa_atomic_load(&u->thread_info.running))
         return;
-
-    /* We are run by the master output (u->master), possibly on behalf
-     * of another output (o). The other output is waiting for us,
-     * hence it is safe to access its mainblockq directly. */
 
     /* Maybe there's some data in the requesting output's queue
      * now? */
@@ -302,19 +315,16 @@
         pa_sink_render(u->sink, length, &chunk);
 
         /* OK, let's send this data to the other threads */
-        for (j = o->userdata->thread_info.outputs; j; j = j->next)
+        for (j = u->thread_info.active_outputs; j; j = j->next)
 
             /* Send to other outputs, which are not the requesting
-             * one, and not the master */
-
-            if (j != o && j != u->thread_info.master && j->sink_input)
+             * one */
+
+            if (j != o)
                 pa_asyncmsgq_post(j->inq, PA_MSGOBJECT(j->sink_input), SINK_INPUT_MESSAGE_POST, NULL, 0, &chunk, NULL);
 
-        /* Now push it into the master queue */
-        pa_memblockq_push_align(u->thread_info.master->memblockq, &chunk);
-
-        /* And into the requesting output's queue */
-        if (o != u->thread_info.master)
+        /* And place it directly into the requesting output's queue */
+        if (o)
             pa_memblockq_push_align(o->memblockq, &chunk);
 
         pa_memblock_unref(chunk.memblock);
@@ -337,16 +347,8 @@
     if (pa_memblockq_is_readable(o->memblockq))
         return;
 
-    /* OK, we need to prepare new data */
-
-    if (o == o->userdata->thread_info.master)
-        /* OK, we're the master, so let's render some data */
-        render_memblock(o->userdata, o, length);
-
-    else
-        /* We're not the master, we need to ask the master to do the
-         * rendering for us */
-
+    /* OK, we need to prepare new data, but only if the sink is actually running */
+    if (pa_atomic_load(&o->userdata->thread_info.running))
         pa_asyncmsgq_send(o->outq, PA_MSGOBJECT(o->userdata->sink), SINK_MESSAGE_NEED, o, length, NULL);
 }
 
@@ -360,7 +362,7 @@
     /* If necessary, get some new data */
     request_memblock(o, length);
 
-    return  pa_memblockq_peek(o->memblockq, chunk);
+    return pa_memblockq_peek(o->memblockq, chunk);
 }
 
 /* Called from I/O thread context */
@@ -374,49 +376,6 @@
     pa_memblockq_drop(o->memblockq, length);
 }
 
-/* Called from I/O thread context for the master */
-static void create_master_rtpolls(struct userdata *u) {
-    struct output *k;
-
-    pa_assert(u);
-
-    pa_assert(!u->master->outq_rtpoll_item);
-
-    /* Set up the queues from the outputs to the master */
-    for (k = u->thread_info.outputs; k; k = k->next) {
-
-        pa_assert(!k->outq_rtpoll_item);
-
-        if (k == u->master)
-            continue;
-
-        k->outq_rtpoll_item = pa_rtpoll_item_new_asyncmsgq(
-                u->master->sink->rtpoll,
-                PA_RTPOLL_EARLY+1,  /* This one has a slightly lower priority than the normal message handling */
-                k->outq);
-    }
-}
-
-/* Called from I/O thread context for the master */
-static void free_master_rtpolls(struct userdata *u) {
-    struct output *k;
-
-    pa_assert(!u->master->outq_rtpoll_item);
-
-    for (k = u->thread_info.outputs; k; k = k->next) {
-
-        if (k == u->master)
-            continue;
-
-        if (k->outq_rtpoll_item) {
-            pa_rtpoll_item_free(k->outq_rtpoll_item);
-            k->outq_rtpoll_item = NULL;
-        }
-
-        pa_assert(!k->outq_rtpoll_item);
-    }
-}
-
 /* Called from I/O thread context */
 static void sink_input_attach_cb(pa_sink_input *i) {
     struct output *o;
@@ -424,22 +383,11 @@
     pa_sink_input_assert_ref(i);
     pa_assert_se(o = i->userdata);
 
-    if (o->userdata->thread_info.master == o) {
-        create_master_rtpolls(o->userdata);
-
-        /* Calling these two functions here is safe, because both
-         * threads that might access this sink are known to be
-         * waiting for us. */
-        pa_sink_set_asyncmsgq(o->userdata->sink, i->sink->asyncmsgq);
-        pa_sink_set_rtpoll(o->userdata->sink, i->sink->rtpoll);
-        pa_sink_attach_within_thread(o->userdata->sink);
-    }
-
-    /* Set up the queues from the inputs to the master */
+    /* Set up the queue from the sink thread to us */
     pa_assert(!o->inq_rtpoll_item);
     o->inq_rtpoll_item = pa_rtpoll_item_new_asyncmsgq(
             i->sink->rtpoll,
-            PA_RTPOLL_NORMAL,  /* This one has a lower priority than the normal message handling */
+            PA_RTPOLL_LATE,  /* This one is not that important, since we check for data in _peek() anyway. */
             o->inq);
 }
 
@@ -450,16 +398,10 @@
     pa_sink_input_assert_ref(i);
     pa_assert_se(o = i->userdata);
 
-/*     pa_log("detaching %s", i->sink->name); */
-
+    /* Shut down the queue from the sink thread to us */
     pa_assert(o->inq_rtpoll_item);
     pa_rtpoll_item_free(o->inq_rtpoll_item);
     o->inq_rtpoll_item = NULL;
-
-    if (o->userdata->thread_info.master == o) {
-        pa_sink_detach_within_thread(o->userdata->sink);
-        free_master_rtpolls(o->userdata);
-    }
 }
 
 /* Called from main context */
@@ -467,14 +409,10 @@
     struct output *o;
 
     pa_sink_input_assert_ref(i);
-    o = i->userdata;
-    pa_assert(o);
-
-    pa_sink_input_unlink(o->sink_input);
-    pa_sink_input_unref(o->sink_input);
-    o->sink_input = NULL;
+    pa_assert(o = i->userdata);
 
     pa_module_unload_request(o->userdata->module);
+    output_free(o);
 }
 
 /* Called from thread context */
@@ -493,7 +431,7 @@
             break;
         }
 
-        case SINK_INPUT_MESSAGE_POST: {
+        case SINK_INPUT_MESSAGE_POST:
 
             if (PA_SINK_OPENED(o->sink_input->sink->thread_info.state))
                 pa_memblockq_push_align(o->memblockq, chunk);
@@ -501,66 +439,78 @@
                 pa_memblockq_flush(o->memblockq);
 
             break;
-        }
     }
 
     return pa_sink_input_process_msg(obj, code, data, offset, chunk);
 }
 
 /* Called from main context */
-static int suspend(struct userdata *u) {
+static void disable_output(struct output *o) {
+    pa_assert(o);
+
+    if (!o->sink_input)
+        return;
+
+    pa_asyncmsgq_send(o->userdata->sink->asyncmsgq, PA_MSGOBJECT(o->userdata->sink), SINK_MESSAGE_REMOVE_OUTPUT, o, 0, NULL);
+    pa_sink_input_unlink(o->sink_input);
+    pa_sink_input_unref(o->sink_input);
+    o->sink_input = NULL;
+
+}
+
+/* Called from main context */
+static void enable_output(struct output *o) {
+    pa_assert(o);
+
+    if (o->sink_input)
+        return;
+
+    if (output_create_sink_input(o) >= 0) {
+
+        pa_memblockq_flush(o->memblockq);
+
+        pa_sink_input_put(o->sink_input);
+
+        if (o->userdata->sink && PA_SINK_LINKED(pa_sink_get_state(o->userdata->sink)))
+            pa_asyncmsgq_send(o->userdata->sink->asyncmsgq, PA_MSGOBJECT(o->userdata->sink), SINK_MESSAGE_ADD_OUTPUT, o, 0, NULL);
+    }
+}
+
+/* Called from main context */
+static void suspend(struct userdata *u) {
     struct output *o;
     uint32_t idx;
 
     pa_assert(u);
 
     /* Let's suspend by unlinking all streams */
-
-    if (update_master(u, NULL) < 0)
-        pa_module_unload_request(u->module);
-
+    for (o = pa_idxset_first(u->outputs, &idx); o; o = pa_idxset_next(u->outputs, &idx))
+        disable_output(o);
+
+    pick_master(u, NULL);
+
+    pa_log_info("Device suspended...");
+}
+
+/* Called from main context */
+static void unsuspend(struct userdata *u) {
+    struct output *o;
+    uint32_t idx;
+
+    pa_assert(u);
+
+    /* Let's resume */
     for (o = pa_idxset_first(u->outputs, &idx); o; o = pa_idxset_next(u->outputs, &idx)) {
 
-        if (o->sink_input) {
-            pa_sink_input_unlink(o->sink_input);
-            pa_sink_input_unref(o->sink_input);
-            o->sink_input = NULL;
-        }
-    }
-
-    pa_log_info("Device suspended...");
-
-    return 0;
-}
-
-/* Called from main context */
-static int unsuspend(struct userdata *u) {
-    struct output *o;
-    uint32_t idx;
-
-    pa_assert(u);
-
-    /* Let's resume */
-
-    for (o = pa_idxset_first(u->outputs, &idx); o; o = pa_idxset_next(u->outputs, &idx)) {
-
-        pa_sink_suspend(o->sink, 0);
-
-        if (PA_SINK_OPENED(pa_sink_get_state(o->sink))) {
-            if (output_create_sink_input(u, o) < 0)
-                output_free(o);
-        }
-    }
-
-    if (pick_master(u, NULL) < 0)
-        pa_module_unload_request(u->module);
-
-    for (o = pa_idxset_first(u->outputs, &idx); o; o = pa_idxset_next(u->outputs, &idx))
-        if (o->sink_input && pa_sink_get_state(o->sink_input) == PA_SINK_INPUT_INIT)
-             pa_sink_input_put(o->sink_input);
+        pa_sink_suspend(o->sink, FALSE);
+
+        if (PA_SINK_OPENED(pa_sink_get_state(o->sink)))
+            enable_output(o);
+    }
+
+    pick_master(u, NULL);
 
     pa_log_info("Resumed successfully...");
-    return 0;
 }
 
 /* Called from main context */
@@ -577,18 +527,14 @@
         case PA_SINK_SUSPENDED:
             pa_assert(PA_SINK_OPENED(pa_sink_get_state(u->sink)));
 
-            if (suspend(u) < 0)
-                return -1;
-
+            suspend(u);
             break;
 
         case PA_SINK_IDLE:
         case PA_SINK_RUNNING:
 
-            if (pa_sink_get_state(u->sink) == PA_SINK_SUSPENDED) {
-                if (unsuspend(u) < 0)
-                    return -1;
-            }
+            if (pa_sink_get_state(u->sink) == PA_SINK_SUSPENDED)
+                unsuspend(u);
 
             break;
 
@@ -607,67 +553,41 @@
     switch (code) {
 
         case PA_SINK_MESSAGE_SET_STATE:
-
-            if ((pa_sink_state_t) PA_PTR_TO_UINT(data) == PA_SINK_RUNNING) {
-                /* Only useful when running in NULL mode, i.e. when no
-                 * master sink is attached */
-                pa_rtclock_get(&u->timestamp);
+            pa_atomic_store(&u->thread_info.running, PA_PTR_TO_UINT(data) == PA_SINK_RUNNING);
+            break;
+
+        case PA_SINK_MESSAGE_GET_LATENCY:
+
+            /* This code will only be called when running in NULL
+             * mode, i.e. when no output is attached. See
+             * sink_get_latency_cb() below */
+
+            if (u->thread_info.in_null_mode) {
+                struct timespec now;
+
+                if (pa_timespec_cmp(&u->thread_info.timestamp, pa_rtclock_get(&now)) > 0) {
+                    *((pa_usec_t*) data) = pa_timespec_diff(&u->thread_info.timestamp, &now);
+                    break;
+                }
             }
 
+            *((pa_usec_t*) data) = 0;
+
             break;
-
-        case PA_SINK_MESSAGE_GET_LATENCY: {
-            struct timespec now;
-
-            /* This code will only be called when running in NULL
-             * mode, i.e. when no master sink is attached. See
-             * sink_get_latency_cb() below */
-            pa_rtclock_get(&now);
-
-            if (pa_timespec_cmp(&u->timestamp, &now) > 0)
-                *((pa_usec_t*) data) = 0;
-            else
-                *((pa_usec_t*) data) = pa_timespec_diff(&u->timestamp, &now);
-            break;
-        }
-
-        case SINK_MESSAGE_SET_MASTER:
-
-            if (u->thread_info.master && data != u->thread_info.master) {
-
-                if (u->thread_info.master->sink_input->thread_info.attached)
-                    free_master_rtpolls(u);
-
-            }
-
-            if ((u->thread_info.master = data)) {
-
-                /* There's now a master, and we're being executed in
-                 * its thread, let's register the asyncmsgqs from other
-                 * outputs to us */
-
-                if (u->thread_info.master->sink_input->thread_info.attached)
-                    create_master_rtpolls(u);
-
-            }
-
-            return 0;
 
         case SINK_MESSAGE_ADD_OUTPUT: {
             struct output *op = data;
 
-            PA_LLIST_PREPEND(struct output, u->thread_info.outputs, op);
+            PA_LLIST_PREPEND(struct output, u->thread_info.active_outputs, op);
 
             pa_assert(!op->outq_rtpoll_item);
 
-            if (op != u->thread_info.master) {
-                /* Create pa_asyncmsgq to master */
-
-                op->outq_rtpoll_item = pa_rtpoll_item_new_asyncmsgq(
-                        u->thread_info.master->sink->rtpoll,
-                        PA_RTPOLL_EARLY+1,  /* This one has a slightly lower priority than the normal message handling */
-                        op->outq);
-            }
+            /* Create pa_asyncmsgq to the sink thread */
+
+            op->outq_rtpoll_item = pa_rtpoll_item_new_asyncmsgq(
+                    u->rtpoll,
+                    PA_RTPOLL_EARLY-1,  /* This item is very important */
+                    op->outq);
 
             return 0;
         }
@@ -675,14 +595,13 @@
         case SINK_MESSAGE_REMOVE_OUTPUT: {
             struct output *op = data;
 
-            PA_LLIST_REMOVE(struct output, u->thread_info.outputs, op);
-
-            /* Remove the q that leads from this output to the master output */
-
-            if (op->outq_rtpoll_item) {
-                pa_rtpoll_item_free(op->outq_rtpoll_item);
-                op->outq_rtpoll_item = NULL;
-            }
+            PA_LLIST_REMOVE(struct output, u->thread_info.active_outputs, op);
+
+            /* Remove the q that leads from this output to the sink thread */
+
+            pa_assert(op->outq_rtpoll_item);
+            pa_rtpoll_item_free(op->outq_rtpoll_item);
+            op->outq_rtpoll_item = NULL;
 
             return 0;
         }
@@ -700,8 +619,7 @@
     struct userdata *u;
 
     pa_sink_assert_ref(s);
-    u = s->userdata;
-    pa_assert(u);
+    pa_assert_se(u = s->userdata);
 
     if (u->master) {
         /* If we have a master sink, we just return the latency of it
@@ -712,10 +630,10 @@
 
         return
             pa_sink_input_get_latency(u->master->sink_input) +
-            pa_sink_get_latency(u->master->sink_input->sink);
+            pa_sink_get_latency(u->master->sink);
 
     } else {
-        pa_usec_t usec;
+        pa_usec_t usec = 0;
 
         /* We have no master, hence let's ask our own thread which
          * implements the NULL sink */
@@ -759,94 +677,50 @@
     pa_xfree(t);
 }
 
-static int update_master(struct userdata *u, struct output *o) {
+static void update_master(struct userdata *u, struct output *o) {
     pa_assert(u);
 
-    /* Make sure everything is detached from the old thread before we move our stuff to a new thread */
-    if (u->sink && PA_SINK_LINKED(pa_sink_get_state(u->sink))) {
-        pa_sink_detach(u->sink);
-        pa_asyncmsgq_send(u->sink->asyncmsgq, PA_MSGOBJECT(u->sink), SINK_MESSAGE_SET_MASTER, NULL, 0, NULL);
-    } else
-        u->thread_info.master = NULL;
-
-    if (o) {
-        /* If we have a master sink we run our own sink in its thread */
-
-        pa_assert(o->sink_input);
-        pa_assert(PA_SINK_OPENED(pa_sink_get_state(o->sink)));
-
-        if (u->thread) {
-            /* If we previously were in NULL mode, let's kill the thread */
-            pa_asyncmsgq_send(u->thread_mq.inq, NULL, PA_MESSAGE_SHUTDOWN, NULL, 0, NULL);
-            pa_thread_free(u->thread);
-            u->thread = NULL;
-
-            pa_assert(u->rtpoll);
-            pa_rtpoll_free(u->rtpoll);
-            u->rtpoll = NULL;
-        }
-
-        pa_sink_set_asyncmsgq(u->sink, o->sink->asyncmsgq);
-        pa_sink_set_rtpoll(u->sink, o->sink->rtpoll);
-        u->master = o;
-
+    if (u->master == o)
+        return;
+
+    if ((u->master = o))
         pa_log_info("Master sink is now '%s'", o->sink_input->sink->name);
-
-    } else {
-
-        /* We have no master sink, let's create our own thread */
-
-        pa_sink_set_asyncmsgq(u->sink, u->thread_mq.inq);
-        u->master = NULL;
-
-        if (!u->thread) {
-            pa_assert(!u->rtpoll);
-
-            u->rtpoll = pa_rtpoll_new();
-            pa_rtpoll_item_new_asyncmsgq(u->rtpoll, PA_RTPOLL_EARLY, u->thread_mq.inq);
-
-            pa_sink_set_rtpoll(u->sink, u->rtpoll);
-
-            if (!(u->thread = pa_thread_new(thread_func, u))) {
-                pa_log("Failed to create thread.");
-                return -1;
-            }
-        }
-
-        pa_log_info("No suitable master sink found, going to NULL mode\n");
-    }
-
-    /* Now attach everything again */
-    if (u->sink && PA_SINK_LINKED(pa_sink_get_state(u->sink))) {
-        pa_asyncmsgq_send(u->sink->asyncmsgq, PA_MSGOBJECT(u->sink), SINK_MESSAGE_SET_MASTER, u->master, 0, NULL);
-        pa_sink_attach(u->sink);
-    } else
-        u->thread_info.master = u->master;
-
-    return 0;
-}
-
-static int pick_master(struct userdata *u, struct output *except) {
+    else
+        pa_log_info("No master selected, lacking suitable outputs.");
+}
+
+static void pick_master(struct userdata *u, struct output *except) {
     struct output *o;
     uint32_t idx;
     pa_assert(u);
 
-    if (u->master && u->master != except && u->master->sink_input && PA_SINK_OPENED(pa_sink_get_state(u->master->sink)))
-        return update_master(u, u->master);
+    if (u->master &&
+        u->master != except &&
+        u->master->sink_input &&
+        PA_SINK_OPENED(pa_sink_get_state(u->master->sink))) {
+        update_master(u, u->master);
+        return;
+    }
 
     for (o = pa_idxset_first(u->outputs, &idx); o; o = pa_idxset_next(u->outputs, &idx))
-        if (o != except && o->sink_input && PA_SINK_OPENED(pa_sink_get_state(o->sink)))
-            return update_master(u, o);
-
-    return update_master(u, NULL);
-}
-
-static int output_create_sink_input(struct userdata *u, struct output *o) {
+        if (o != except &&
+            o->sink_input &&
+            PA_SINK_OPENED(pa_sink_get_state(o->sink))) {
+            update_master(u, o);
+            return;
+        }
+
+    update_master(u, NULL);
+}
+
+static int output_create_sink_input(struct output *o) {
     pa_sink_input_new_data data;
     char *t;
 
-    pa_assert(u);
-    pa_assert(!o->sink_input);
+    pa_assert(o);
+
+    if (o->sink_input)
+        return 0;
 
     t = pa_sprintf_malloc("Simultaneous output on %s", o->sink->description);
 
@@ -854,12 +728,12 @@
     data.sink = o->sink;
     data.driver = __FILE__;
     data.name = t;
-    pa_sink_input_new_data_set_sample_spec(&data, &u->sink->sample_spec);
-    pa_sink_input_new_data_set_channel_map(&data, &u->sink->channel_map);
-    data.module = u->module;
-    data.resample_method = u->resample_method;
-
-    o->sink_input = pa_sink_input_new(u->core, &data, PA_SINK_INPUT_VARIABLE_RATE|PA_SINK_INPUT_DONT_MOVE);
+    pa_sink_input_new_data_set_sample_spec(&data, &o->userdata->sink->sample_spec);
+    pa_sink_input_new_data_set_channel_map(&data, &o->userdata->sink->channel_map);
+    data.module = o->userdata->module;
+    data.resample_method = o->userdata->resample_method;
+
+    o->sink_input = pa_sink_input_new(o->userdata->core, &data, PA_SINK_INPUT_VARIABLE_RATE|PA_SINK_INPUT_DONT_MOVE);
 
     pa_xfree(t);
 
@@ -873,6 +747,7 @@
     o->sink_input->detach = sink_input_detach_cb;
     o->sink_input->kill = sink_input_kill_cb;
     o->sink_input->userdata = o;
+
 
     return 0;
 }
@@ -901,29 +776,38 @@
             0,
             NULL);
 
-
     pa_assert_se(pa_idxset_put(u->outputs, o, NULL) == 0);
-
-    update_description(u);
 
     if (u->sink && PA_SINK_LINKED(pa_sink_get_state(u->sink)))
         pa_asyncmsgq_send(u->sink->asyncmsgq, PA_MSGOBJECT(u->sink), SINK_MESSAGE_ADD_OUTPUT, o, 0, NULL);
-    else
-        PA_LLIST_PREPEND(struct output, u->thread_info.outputs, o);
+    else {
+        /* If the sink is not yet started, we need to do the activation ourselves */
+        PA_LLIST_PREPEND(struct output, u->thread_info.active_outputs, o);
+
+        o->outq_rtpoll_item = pa_rtpoll_item_new_asyncmsgq(
+                u->rtpoll,
+                PA_RTPOLL_EARLY-1,  /* This item is very important */
+                o->outq);
+    }
 
     if (PA_SINK_OPENED(pa_sink_get_state(u->sink)) || pa_sink_get_state(u->sink) == PA_SINK_INIT) {
-        pa_sink_suspend(sink, 0);
+        pa_sink_suspend(sink, FALSE);
 
         if (PA_SINK_OPENED(pa_sink_get_state(sink)))
-            if (output_create_sink_input(u, o) < 0)
+            if (output_create_sink_input(o) < 0)
                 goto fail;
     }
 
+
+    update_description(u);
+
     return o;
 
 fail:
 
     if (o) {
+        pa_idxset_remove_by_data(u->outputs, o, NULL);
+
         if (o->sink_input) {
             pa_sink_input_unlink(o->sink_input);
             pa_sink_input_unref(o->sink_input);
@@ -962,11 +846,10 @@
         return PA_HOOK_OK;
     }
 
-    if (pick_master(u, NULL) < 0)
-        pa_module_unload_request(u->module);
-
     if (o->sink_input)
         pa_sink_input_put(o->sink_input);
+
+    pick_master(u, NULL);
 
     return PA_HOOK_OK;
 }
@@ -1014,24 +897,13 @@
     state = pa_sink_get_state(s);
 
     if (PA_SINK_OPENED(state) && PA_SINK_OPENED(pa_sink_get_state(u->sink)) && !o->sink_input) {
-        output_create_sink_input(u, o);
-
-        if (pick_master(u, NULL) < 0)
-            pa_module_unload_request(u->module);
-
-        if (o->sink_input)
-            pa_sink_input_put(o->sink_input);
+        enable_output(o);
+        pick_master(u, NULL);
     }
 
     if (state == PA_SINK_SUSPENDED && o->sink_input) {
-        pa_sink_input_unlink(o->sink_input);
-        pa_sink_input_unref(o->sink_input);
-        o->sink_input = NULL;
-
-        pa_memblockq_flush(o->memblockq);
-
-        if (pick_master(u, o) < 0)
-            pa_module_unload_request(u->module);
+        disable_output(o);
+        pick_master(u, o);
     }
 
     return PA_HOOK_OK;
@@ -1067,16 +939,20 @@
     u->module = m;
     m->userdata = u;
     u->sink = NULL;
-    u->thread_info.master = u->master = NULL;
+    u->master = NULL;
     u->time_event = NULL;
     u->adjust_time = DEFAULT_ADJUST_TIME;
     pa_thread_mq_init(&u->thread_mq, m->core->mainloop);
-    u->rtpoll = NULL;
+    u->rtpoll = pa_rtpoll_new();
     u->thread = NULL;
-    PA_LLIST_HEAD_INIT(struct output, u->thread_info.outputs);
     u->resample_method = resample_method;
     u->outputs = pa_idxset_new(NULL, NULL);
     pa_timespec_reset(&u->adjust_timestamp);
+    u->sink_new_slot = u->sink_unlink_slot = u->sink_state_changed_slot = NULL;
+    PA_LLIST_HEAD_INIT(struct output, u->thread_info.active_outputs);
+    pa_atomic_store(&u->thread_info.running, FALSE);
+    u->thread_info.in_null_mode = FALSE;
+    pa_rtpoll_item_new_asyncmsgq(u->rtpoll, PA_RTPOLL_EARLY, u->thread_mq.inq);
 
     if (pa_modargs_get_value_u32(ma, "adjust_time", &u->adjust_time) < 0) {
         pa_log("Failed to parse adjust_time value");
@@ -1097,11 +973,11 @@
         }
 
         ss = master_sink->sample_spec;
-        u->automatic = 0;
+        u->automatic = FALSE;
     } else {
         master_sink = NULL;
         ss = m->core->default_sample_spec;
-        u->automatic = 1;
+        u->automatic = TRUE;
     }
 
     if ((pa_modargs_get_sample_spec(ma, &ss) < 0)) {
@@ -1137,6 +1013,8 @@
     u->sink->flags = PA_SINK_LATENCY;
     pa_sink_set_module(u->sink, m);
     pa_sink_set_description(u->sink, "Simultaneous output");
+    pa_sink_set_rtpoll(u->sink, u->rtpoll);
+    pa_sink_set_asyncmsgq(u->sink, u->thread_mq.inq);
 
     u->block_size = pa_bytes_per_second(&ss) / 20; /* 50 ms */
     if (u->block_size <= 0)
@@ -1200,8 +1078,12 @@
     u->sink_unlink_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_UNLINK], (pa_hook_cb_t) sink_unlink_hook_cb, u);
     u->sink_state_changed_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_STATE_CHANGED], (pa_hook_cb_t) sink_state_changed_hook_cb, u);
 
-    if (pick_master(u, NULL) < 0)
+    pick_master(u, NULL);
+
+    if (!(u->thread = pa_thread_new(thread_func, u))) {
+        pa_log("Failed to create thread.");
         goto fail;
+    }
 
     /* Activate the sink and the sink inputs */
     pa_sink_put(u->sink);
@@ -1234,21 +1116,11 @@
 static void output_free(struct output *o) {
     pa_assert(o);
 
-    /* Make sure the master points to a different output */
-    if (pick_master(o->userdata, o) < 0)
-        pa_module_unload_request(o->userdata->module);
-
-    if (o->userdata->sink && PA_SINK_LINKED(pa_sink_get_state(o->userdata->sink)))
-        pa_asyncmsgq_send(o->userdata->sink->asyncmsgq, PA_MSGOBJECT(o->userdata->sink), SINK_MESSAGE_REMOVE_OUTPUT, o, 0, NULL);
-    else
-        PA_LLIST_REMOVE(struct output, o->userdata->thread_info.outputs, o);
+    pick_master(o->userdata, o);
+
+    disable_output(o);
 
     pa_assert_se(pa_idxset_remove_by_data(o->userdata->outputs, o, NULL));
-
-    if (o->sink_input) {
-        pa_sink_input_unlink(o->sink_input);
-        pa_sink_input_unref(o->sink_input);
-    }
 
     update_description(o->userdata);
 
@@ -1287,9 +1159,6 @@
 
     if (u->sink_state_changed_slot)
         pa_hook_slot_free(u->sink_state_changed_slot);
-
-    if (u->sink)
-        pa_sink_unlink(u->sink);
 
     if (u->outputs) {
         while ((o = pa_idxset_first(u->outputs, NULL)))
@@ -1298,6 +1167,9 @@
         pa_idxset_free(u->outputs, NULL, NULL);
     }
 
+    if (u->sink)
+        pa_sink_unlink(u->sink);
+
     if (u->thread) {
         pa_asyncmsgq_send(u->thread_mq.inq, NULL, PA_MESSAGE_SHUTDOWN, NULL, 0, NULL);
         pa_thread_free(u->thread);




More information about the pulseaudio-commits mailing list