mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
decodebin3: fix collection ref handling
gst_stream_collection_add_stream() consumes the collection reference passed to it but gst_stream_collection_get_stream() is (transfer none). Fix this pipeline: playbin3 uri=http://127.0.0.1:8079/defaults/exMPD_BIP_TC1/exMPD_BIP_TC1.mpd https://bugzilla.gnome.org/show_bug.cgi?id=769270
This commit is contained in:
parent
500e4117bb
commit
ba74c06721
1 changed files with 2 additions and 2 deletions
|
@ -1047,7 +1047,7 @@ get_merged_collection (GstDecodebin3 * dbin)
|
|||
for (i = 0; i < nb_stream; i++) {
|
||||
GstStream *stream =
|
||||
gst_stream_collection_get_stream (dbin->main_input->collection, i);
|
||||
gst_stream_collection_add_stream (res, stream);
|
||||
gst_stream_collection_add_stream (res, gst_object_ref (stream));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1061,7 +1061,7 @@ get_merged_collection (GstDecodebin3 * dbin)
|
|||
for (i = 0; i < nb_stream; i++) {
|
||||
GstStream *stream =
|
||||
gst_stream_collection_get_stream (input->collection, i);
|
||||
gst_stream_collection_add_stream (res, stream);
|
||||
gst_stream_collection_add_stream (res, gst_object_ref (stream));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue