From 108493ee5151832adb7bd66ed5f074ef0921cebf Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Fri, 26 Aug 2011 00:47:53 +0000 Subject: [PATCH] hlsdemux: do not make the update_thread joinable --- gst/hls/gsthlsdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/hls/gsthlsdemux.c b/gst/hls/gsthlsdemux.c index 2c0ec559ee..18c0bc03ef 100644 --- a/gst/hls/gsthlsdemux.c +++ b/gst/hls/gsthlsdemux.c @@ -930,7 +930,7 @@ gst_hls_demux_start_update (GstHLSDemux * demux) /* creates a new thread for the updates */ demux->updates_thread = g_thread_create ( - (GThreadFunc) gst_hls_demux_update_thread, demux, TRUE, &error); + (GThreadFunc) gst_hls_demux_update_thread, demux, FALSE, &error); return (error != NULL); }