mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
hlsdemux: do not make the update_thread joinable
This commit is contained in:
parent
8c04ea47d2
commit
108493ee51
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue