mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-08 23:42:28 +00:00
h265parse: fix caps leak in renegotiation
This commit is contained in:
parent
a06423efa4
commit
9fae0055e7
1 changed files with 3 additions and 1 deletions
|
@ -341,7 +341,6 @@ gst_h265_parse_negotiate (GstH265Parse * h265parse, gint in_format,
|
||||||
/* fixate to avoid ambiguity with lists when parsing */
|
/* fixate to avoid ambiguity with lists when parsing */
|
||||||
caps = gst_caps_fixate (caps);
|
caps = gst_caps_fixate (caps);
|
||||||
gst_h265_parse_format_from_caps (caps, &format, &align);
|
gst_h265_parse_format_from_caps (caps, &format, &align);
|
||||||
gst_caps_unref (caps);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* default */
|
/* default */
|
||||||
|
@ -358,6 +357,9 @@ gst_h265_parse_negotiate (GstH265Parse * h265parse, gint in_format,
|
||||||
h265parse->align = align;
|
h265parse->align = align;
|
||||||
|
|
||||||
h265parse->transform = (in_format != h265parse->format);
|
h265parse->transform = (in_format != h265parse->format);
|
||||||
|
|
||||||
|
if (caps)
|
||||||
|
gst_caps_unref (caps);
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstBuffer *
|
static GstBuffer *
|
||||||
|
|
Loading…
Reference in a new issue