diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2011-04-13 22:17:05 +0200 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-04-14 11:41:56 +0100 |
commit | b49461df48f68166abb8327c12402d568339a832 (patch) | |
tree | bf98e21a971497978fa2b8018b18410c0f870b0a | |
parent | 3cadddba83beed58140c4d8540657e3e9d69d33c (diff) |
hlsdemux: dispose the fetcher from the same thread it's created
-rw-r--r-- | 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 2ff003e80..61c11c5d3 100644 --- a/gst/hls/gsthlsdemux.c +++ b/gst/hls/gsthlsdemux.c @@ -305,7 +305,7 @@ gst_hls_demux_change_state (GstElement * element, GstStateChange transition) switch (transition) { case GST_STATE_CHANGE_PAUSED_TO_READY: demux->cancelled = TRUE; - gst_hls_demux_stop_fetcher (demux, TRUE); + g_cond_signal (demux->fetcher_cond); break; default: break; |