mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
rtpmux: Unref pad template caps after usage
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=734473
This commit is contained in:
parent
421b00cd17
commit
1a35bf9647
1 changed files with 8 additions and 5 deletions
|
@ -632,21 +632,24 @@ gst_rtp_mux_getcaps (GstPad * pad, GstRTPMux * mux, GstCaps * filter)
|
|||
GstIteratorResult res;
|
||||
GstCaps *peercaps;
|
||||
GstCaps *othercaps;
|
||||
GstCaps *tcaps;
|
||||
|
||||
peercaps = gst_pad_peer_query_caps (mux->srcpad, filter);
|
||||
|
||||
if (peercaps) {
|
||||
othercaps = gst_caps_intersect_full (peercaps,
|
||||
gst_pad_get_pad_template_caps (pad), GST_CAPS_INTERSECT_FIRST);
|
||||
tcaps = gst_pad_get_pad_template_caps (pad);
|
||||
othercaps = gst_caps_intersect_full (peercaps, tcaps,
|
||||
GST_CAPS_INTERSECT_FIRST);
|
||||
gst_caps_unref (peercaps);
|
||||
} else {
|
||||
tcaps = gst_pad_get_pad_template_caps (mux->srcpad);
|
||||
if (filter)
|
||||
othercaps = gst_caps_intersect_full (filter,
|
||||
gst_pad_get_pad_template_caps (mux->srcpad),
|
||||
othercaps = gst_caps_intersect_full (filter, tcaps,
|
||||
GST_CAPS_INTERSECT_FIRST);
|
||||
else
|
||||
othercaps = gst_caps_copy (gst_pad_get_pad_template_caps (mux->srcpad));
|
||||
othercaps = gst_caps_copy (tcaps);
|
||||
}
|
||||
gst_caps_unref (tcaps);
|
||||
|
||||
clear_caps (othercaps, FALSE);
|
||||
|
||||
|
|
Loading…
Reference in a new issue