mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
glmixer: update for aggregator start/stop vfunc change
This commit is contained in:
parent
c1f6ef5f53
commit
de5604483f
1 changed files with 0 additions and 6 deletions
|
@ -1313,9 +1313,6 @@ gst_gl_mixer_start (GstAggregator * agg)
|
|||
GstGLMixer *mix = GST_GL_MIXER (agg);
|
||||
GstElement *element = GST_ELEMENT (agg);
|
||||
|
||||
if (!GST_AGGREGATOR_CLASS (parent_class)->start (agg))
|
||||
return FALSE;
|
||||
|
||||
GST_OBJECT_LOCK (mix);
|
||||
mix->array_buffers = g_ptr_array_new_full (element->numsinkpads,
|
||||
(GDestroyNotify) _free_glmixer_frame_data);
|
||||
|
@ -1338,9 +1335,6 @@ gst_gl_mixer_stop (GstAggregator * agg)
|
|||
GstGLMixer *mix = GST_GL_MIXER (agg);
|
||||
GstGLMixerClass *mixer_class = GST_GL_MIXER_GET_CLASS (mix);
|
||||
|
||||
if (!GST_AGGREGATOR_CLASS (parent_class)->stop (agg))
|
||||
return FALSE;
|
||||
|
||||
GST_OBJECT_LOCK (agg);
|
||||
g_ptr_array_free (mix->frames, TRUE);
|
||||
mix->frames = NULL;
|
||||
|
|
Loading…
Reference in a new issue