mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
adaptivedemux: fixed handling errors emitted by uri handler
https://bugzilla.gnome.org/show_bug.cgi?id=757947
This commit is contained in:
parent
21a025c2a1
commit
4994f068d5
1 changed files with 2 additions and 1 deletions
|
@ -745,7 +745,8 @@ gst_adaptive_demux_handle_message (GstBin * bin, GstMessage * msg)
|
|||
|
||||
for (iter = demux->streams; iter; iter = g_list_next (iter)) {
|
||||
stream = iter->data;
|
||||
if (GST_OBJECT_CAST (stream->src) == GST_MESSAGE_SRC (msg)) {
|
||||
if (gst_object_has_as_ancestor (GST_MESSAGE_SRC (msg),
|
||||
GST_OBJECT_CAST (stream->src))) {
|
||||
gst_message_parse_error (msg, &err, &debug);
|
||||
|
||||
GST_WARNING_OBJECT (GST_ADAPTIVE_DEMUX_STREAM_PAD (stream),
|
||||
|
|
Loading…
Reference in a new issue