mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
dfbvideosink: Unref pad template caps after usage
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=734518
This commit is contained in:
parent
64f92ce628
commit
1b56e80147
1 changed files with 4 additions and 2 deletions
|
@ -1349,8 +1349,10 @@ gst_dfbvideosink_getcaps (GstBaseSink * bsink, GstCaps * filter)
|
|||
dfbvideosink = GST_DFBVIDEOSINK (bsink);
|
||||
|
||||
if (!dfbvideosink->setup) {
|
||||
caps = gst_caps_copy (gst_pad_get_pad_template_caps (GST_VIDEO_SINK_PAD
|
||||
(dfbvideosink)));
|
||||
GstCaps *tcaps =
|
||||
gst_pad_get_pad_template_caps (GST_VIDEO_SINK_PAD (dfbvideosink));
|
||||
caps = gst_caps_copy (tcaps);
|
||||
gst_caps_unref (tcaps);
|
||||
GST_DEBUG_OBJECT (dfbvideosink, "getcaps called and we are not setup yet, "
|
||||
"returning template %" GST_PTR_FORMAT, caps);
|
||||
goto beach;
|
||||
|
|
Loading…
Reference in a new issue