hlsdemux: do not make the update_thread joinable

This commit is contained in:
Youness Alaoui 2011-08-26 00:47:53 +00:00 committed by Sebastian Dröge
parent 8c04ea47d2
commit 108493ee51

View file

@ -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);
}