mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
mfvideosrc: Fix buffer leak
The allocated buffer should be released Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3479>
This commit is contained in:
parent
581481c12f
commit
a3b352c99d
1 changed files with 6 additions and 2 deletions
|
@ -451,16 +451,20 @@ gst_mf_video_src_create (GstPushSrc * pushsrc, GstBuffer ** buffer)
|
||||||
ret = GST_BASE_SRC_CLASS (parent_class)->alloc (GST_BASE_SRC (self), 0,
|
ret = GST_BASE_SRC_CLASS (parent_class)->alloc (GST_BASE_SRC (self), 0,
|
||||||
GST_VIDEO_INFO_SIZE (&self->info), &buf);
|
GST_VIDEO_INFO_SIZE (&self->info), &buf);
|
||||||
|
|
||||||
if (ret != GST_FLOW_OK)
|
if (ret != GST_FLOW_OK) {
|
||||||
|
gst_clear_buffer (&buf);
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
ret = gst_mf_source_object_fill (self->source, buf);
|
ret = gst_mf_source_object_fill (self->source, buf);
|
||||||
} else {
|
} else {
|
||||||
ret = gst_mf_source_object_create (self->source, &buf);
|
ret = gst_mf_source_object_create (self->source, &buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ret != GST_FLOW_OK)
|
if (ret != GST_FLOW_OK) {
|
||||||
|
gst_clear_buffer (&buf);
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
/* DirectShow capture object will set caps if it's got updated */
|
/* DirectShow capture object will set caps if it's got updated */
|
||||||
if (sample) {
|
if (sample) {
|
||||||
|
|
Loading…
Reference in a new issue