[0.11] gst-plugins-bad: hlsdemux: do not make the update_thread joinable
Wim Taymans
wtay at kemper.freedesktop.org
Tue Sep 6 07:14:30 PDT 2011
Module: gst-plugins-bad
Branch: 0.11
Commit: 108493ee5151832adb7bd66ed5f074ef0921cebf
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-bad/commit/?id=108493ee5151832adb7bd66ed5f074ef0921cebf
Author: Youness Alaoui <youness.alaoui at collabora.co.uk>
Date: Fri Aug 26 00:47:53 2011 +0000
hlsdemux: do not make the update_thread joinable
---
gst/hls/gsthlsdemux.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gst/hls/gsthlsdemux.c b/gst/hls/gsthlsdemux.c
index 2c0ec55..18c0bc0 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);
}
More information about the gstreamer-commits
mailing list