mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
glmixer: pass the proper free function to frames and buffers array
'array_buffers' contain borrowed GstBuffer and so shouldn't have a free function. 'frames' is the one containing GstGLMixerFrameData and so should use _free_glmixer_frame_data as free function. Fix GstGLMixerFrameData leaks with the validate.file.glvideomixer.simple.play_15s.synchronized scenario. https://bugzilla.gnome.org/show_bug.cgi?id=747913 Signed-off-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
This commit is contained in:
parent
917c395403
commit
481b1c921e
1 changed files with 2 additions and 2 deletions
|
@ -745,9 +745,9 @@ gst_gl_mixer_start (GstAggregator * agg)
|
||||||
GstElement *element = GST_ELEMENT (agg);
|
GstElement *element = GST_ELEMENT (agg);
|
||||||
|
|
||||||
GST_OBJECT_LOCK (mix);
|
GST_OBJECT_LOCK (mix);
|
||||||
mix->array_buffers = g_ptr_array_new_full (element->numsinkpads,
|
mix->array_buffers = g_ptr_array_new_full (element->numsinkpads, NULL);
|
||||||
|
mix->frames = g_ptr_array_new_full (element->numsinkpads,
|
||||||
(GDestroyNotify) _free_glmixer_frame_data);
|
(GDestroyNotify) _free_glmixer_frame_data);
|
||||||
mix->frames = g_ptr_array_new_full (element->numsinkpads, NULL);
|
|
||||||
|
|
||||||
g_ptr_array_set_size (mix->array_buffers, element->numsinkpads);
|
g_ptr_array_set_size (mix->array_buffers, element->numsinkpads);
|
||||||
g_ptr_array_set_size (mix->frames, element->numsinkpads);
|
g_ptr_array_set_size (mix->frames, element->numsinkpads);
|
||||||
|
|
Loading…
Reference in a new issue