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:
Guillaume Desmottes 2016-07-28 14:46:34 +02:00 committed by Edward Hervey
parent 500e4117bb
commit ba74c06721

View file

@ -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));
}
}
}