]> git.sesse.net Git - vlc/commitdiff
pulse: fix race where the device list was empty at start
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 5 May 2014 16:30:50 +0000 (19:30 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 5 May 2014 16:30:50 +0000 (19:30 +0300)
modules/audio_output/pulse.c

index 2a4e67ba7faf28231c439473fbb53ad5675b6375..fd0e9db3bb939f646e1b02271f8c66392f70e4f6 100644 (file)
@@ -114,7 +114,10 @@ static void sink_add_cb(pa_context *ctx, const pa_sink_info *i, int eol,
     aout_sys_t *sys = aout->sys;
 
     if (eol)
+    {
+        pa_threaded_mainloop_signal(sys->mainloop, 0);
         return;
+    }
     (void) ctx;
 
     msg_Dbg(aout, "adding sink %"PRIu32": %s (%s)", i->index, i->name,
@@ -1064,8 +1067,12 @@ static int Open(vlc_object_t *obj)
     pa_threaded_mainloop_lock(sys->mainloop);
     /* Sinks (output devices) list */
     op = pa_context_get_sink_info_list(sys->context, sink_add_cb, aout);
-    if (op != NULL)
+    if (likely(op != NULL))
+    {
+        while (pa_operation_get_state(op) == PA_OPERATION_RUNNING)
+            pa_threaded_mainloop_wait(sys->mainloop);
         pa_operation_unref(op);
+    }
 
     /* Context events */
     const pa_subscription_mask_t mask = PA_SUBSCRIPTION_MASK_SINK