glupload/download/convert: provide transform_caps functions
[platform/upstream/gstreamer.git] / ext / gl / gstglmixer.c
1 /* Generic video mixer plugin
2  *
3  * GStreamer
4  * Copyright (C) 2009 Julien Isorce <julien.isorce@gmail.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include <gst/gst.h>
27 #include <gst/base/gstcollectpads.h>
28 #include <gst/video/video.h>
29
30 #ifdef HAVE_STDLIB_H
31 #include <stdlib.h>
32 #endif
33 #ifdef HAVE_STRING_H
34 #include <string.h>
35 #endif
36
37 #include "gstglmixer.h"
38
39 #if GST_GL_HAVE_PLATFORM_EGL
40 #include <gst/gl/egl/gsteglimagememory.h>
41 #endif
42
43 #define gst_gl_mixer_parent_class parent_class
44 G_DEFINE_ABSTRACT_TYPE (GstGLMixer, gst_gl_mixer, GST_TYPE_VIDEO_AGGREGATOR);
45 static gboolean gst_gl_mixer_do_bufferpool (GstGLMixer * mix,
46     GstCaps * outcaps);
47
48
49 #define GST_CAT_DEFAULT gst_gl_mixer_debug
50 GST_DEBUG_CATEGORY (gst_gl_mixer_debug);
51
52 static void gst_gl_mixer_pad_get_property (GObject * object, guint prop_id,
53     GValue * value, GParamSpec * pspec);
54 static void gst_gl_mixer_pad_set_property (GObject * object, guint prop_id,
55     const GValue * value, GParamSpec * pspec);
56 static void gst_gl_mixer_pad_finalize (GObject * object);
57 static GstBuffer *_default_pad_upload_buffer (GstGLMixer * mix,
58     GstGLMixerFrameData * frame, GstBuffer * buffer);
59
60 static void gst_gl_mixer_set_context (GstElement * element,
61     GstContext * context);
62
63 enum
64 {
65   PROP_PAD_0
66 };
67
68 #define GST_GL_MIXER_GET_PRIVATE(obj)  \
69     (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_GL_MIXER, GstGLMixerPrivate))
70
71 struct _GstGLMixerPrivate
72 {
73   gboolean negotiated;
74
75   GstBufferPool *pool;
76   gboolean pool_active;
77   GstAllocator *allocator;
78   GstAllocationParams params;
79   GstQuery *query;
80
81   gboolean gl_resource_ready;
82   GMutex gl_resource_lock;
83   GCond gl_resource_cond;
84 };
85
86 G_DEFINE_TYPE (GstGLMixerPad, gst_gl_mixer_pad, GST_TYPE_VIDEO_AGGREGATOR_PAD);
87
88 static void
89 gst_gl_mixer_pad_class_init (GstGLMixerPadClass * klass)
90 {
91   GObjectClass *gobject_class = (GObjectClass *) klass;
92   GstVideoAggregatorPadClass *vaggpad_class =
93       (GstVideoAggregatorPadClass *) klass;
94
95   gobject_class->set_property = gst_gl_mixer_pad_set_property;
96   gobject_class->get_property = gst_gl_mixer_pad_get_property;
97
98   gobject_class->finalize = gst_gl_mixer_pad_finalize;
99
100   vaggpad_class->set_info = NULL;
101   vaggpad_class->prepare_frame = NULL;
102   vaggpad_class->clean_frame = NULL;
103
104   klass->upload_buffer = _default_pad_upload_buffer;
105 }
106
107 static void
108 gst_gl_mixer_pad_finalize (GObject * object)
109 {
110   GstGLMixerPad *pad = GST_GL_MIXER_PAD (object);
111
112   if (pad->upload) {
113     gst_object_unref (pad->upload);
114     pad->upload = NULL;
115   }
116
117   G_OBJECT_CLASS (gst_gl_mixer_pad_parent_class)->finalize (object);
118 }
119
120 static void
121 _init_upload (GstGLMixer * mix, GstGLMixerPad * pad)
122 {
123   GstVideoAggregatorPad *vaggpad = GST_VIDEO_AGGREGATOR_PAD (pad);
124
125   if (!pad->upload) {
126     GstCaps *in_caps = gst_pad_get_current_caps (GST_PAD (pad));
127     GstCaps *upload_caps = gst_caps_copy (in_caps);
128     GstCapsFeatures *gl_features =
129         gst_caps_features_from_string (GST_CAPS_FEATURE_MEMORY_GL_MEMORY);
130
131     pad->upload = gst_gl_upload_new (mix->context);
132
133     gst_caps_set_features (upload_caps, 0,
134         gst_caps_features_copy (gl_features));
135     gst_gl_upload_set_caps (pad->upload, in_caps, upload_caps);
136     gst_caps_unref (in_caps);
137
138     if (!pad->convert) {
139       GstVideoInfo gl_info;
140       GstCaps *gl_caps;
141
142       gst_video_info_set_format (&gl_info,
143           GST_VIDEO_FORMAT_RGBA,
144           GST_VIDEO_INFO_WIDTH (&vaggpad->info),
145           GST_VIDEO_INFO_HEIGHT (&vaggpad->info));
146       gl_caps = gst_video_info_to_caps (&gl_info);
147       gst_caps_set_features (gl_caps, 0, gst_caps_features_copy (gl_features));
148
149       pad->convert = gst_gl_color_convert_new (mix->context);
150
151       gst_gl_color_convert_set_caps (pad->convert, upload_caps, gl_caps);
152       gst_caps_unref (gl_caps);
153     }
154
155     gst_caps_unref (upload_caps);
156     gst_caps_features_free (gl_features);
157   }
158 }
159
160 static void
161 gst_gl_mixer_pad_get_property (GObject * object, guint prop_id,
162     GValue * value, GParamSpec * pspec)
163 {
164   switch (prop_id) {
165     default:
166       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
167       break;
168   }
169 }
170
171 static void
172 gst_gl_mixer_pad_set_property (GObject * object, guint prop_id,
173     const GValue * value, GParamSpec * pspec)
174 {
175   switch (prop_id) {
176     default:
177       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
178       break;
179   }
180 }
181
182 static gboolean
183 _negotiated_caps (GstVideoAggregator * vagg, GstCaps * caps)
184 {
185   GstGLMixer *mix = GST_GL_MIXER (vagg);
186   gboolean ret = gst_gl_mixer_do_bufferpool (mix, caps);
187
188   mix->priv->negotiated = ret;
189
190   gst_caps_replace (&mix->out_caps, caps);
191
192   return ret;
193 }
194
195 static gboolean
196 gst_gl_mixer_propose_allocation (GstGLMixer * mix, GstGLMixerPad * pad,
197     GstQuery * decide_query, GstQuery * query)
198 {
199   GstGLMixerClass *mix_class = GST_GL_MIXER_GET_CLASS (mix);
200   GstBufferPool *pool;
201   GstStructure *config;
202   GstCaps *caps;
203   guint size = 0;
204   gboolean need_pool;
205   GError *error = NULL;
206
207   gst_query_parse_allocation (query, &caps, &need_pool);
208
209   if (caps == NULL)
210     goto no_caps;
211
212   if ((pool = mix->priv->pool))
213     gst_object_ref (pool);
214
215   if (pool != NULL) {
216     GstCaps *pcaps;
217
218     /* we had a pool, check caps */
219     GST_DEBUG_OBJECT (mix, "check existing pool caps");
220     config = gst_buffer_pool_get_config (pool);
221     gst_buffer_pool_config_get_params (config, &pcaps, &size, NULL, NULL);
222
223     if (!gst_caps_is_equal (caps, pcaps)) {
224       GST_DEBUG_OBJECT (mix, "pool has different caps");
225       /* different caps, we can't use this pool */
226       gst_object_unref (pool);
227       pool = NULL;
228     }
229     gst_structure_free (config);
230   }
231
232   if (!gst_gl_ensure_element_data (mix, &mix->display, &mix->other_context))
233     return FALSE;
234
235   gst_gl_display_filter_gl_api (mix->display, mix_class->supported_gl_api);
236
237   if (!mix->context) {
238     mix->context = gst_gl_context_new (mix->display);
239     if (!gst_gl_context_create (mix->context, mix->other_context, &error))
240       goto context_error;
241   }
242
243   if (pool == NULL && need_pool) {
244     GstVideoInfo info;
245
246     if (!gst_video_info_from_caps (&info, caps))
247       goto invalid_caps;
248
249     GST_DEBUG_OBJECT (mix, "create new pool");
250     pool = gst_gl_buffer_pool_new (mix->context);
251
252     /* the normal size of a frame */
253     size = info.size;
254
255     config = gst_buffer_pool_get_config (pool);
256     gst_buffer_pool_config_set_params (config, caps, size, 0, 0);
257     if (!gst_buffer_pool_set_config (pool, config))
258       goto config_failed;
259   }
260
261   if (pool) {
262     gst_query_add_allocation_pool (query, pool, size, 1, 0);
263     gst_object_unref (pool);
264   }
265
266   /* we also support various metadata */
267   if (mix->context->gl_vtable->FenceSync)
268     gst_query_add_allocation_meta (query, GST_GL_SYNC_META_API_TYPE, 0);
269
270   _init_upload (mix, pad);
271
272   gst_gl_upload_propose_allocation (pad->upload, decide_query, query);
273
274   return TRUE;
275
276   /* ERRORS */
277 no_caps:
278   {
279     GST_DEBUG_OBJECT (mix, "no caps specified");
280     return FALSE;
281   }
282 invalid_caps:
283   {
284     GST_DEBUG_OBJECT (mix, "invalid caps specified");
285     return FALSE;
286   }
287 config_failed:
288   {
289     GST_DEBUG_OBJECT (mix, "failed setting config");
290     return FALSE;
291   }
292 context_error:
293   {
294     GST_ELEMENT_ERROR (mix, RESOURCE, NOT_FOUND, ("%s", error->message),
295         (NULL));
296     return FALSE;
297   }
298 }
299
300 static gboolean
301 gst_gl_mixer_pad_sink_acceptcaps (GstPad * pad, GstGLMixer * mix,
302     GstCaps * caps)
303 {
304   gboolean ret;
305   GstCaps *template_caps;
306
307   GST_DEBUG_OBJECT (pad, "try accept caps of %" GST_PTR_FORMAT, caps);
308
309   template_caps = gst_pad_get_pad_template_caps (pad);
310   template_caps = gst_caps_make_writable (template_caps);
311
312   ret = gst_caps_can_intersect (caps, template_caps);
313   GST_DEBUG_OBJECT (pad, "%saccepted caps %" GST_PTR_FORMAT,
314       (ret ? "" : "not "), caps);
315   gst_caps_unref (template_caps);
316
317   return ret;
318 }
319
320 static GstCaps *
321 gst_gl_mixer_set_caps_features (const GstCaps * caps,
322     const gchar * feature_name)
323 {
324   GstCaps *ret = gst_gl_caps_replace_all_caps_features (caps, feature_name);
325   gst_caps_set_simple (ret, "format", G_TYPE_STRING, "RGBA", NULL);
326   return ret;
327 }
328
329 /* copies the given caps */
330 static GstCaps *
331 gst_gl_mixer_caps_remove_format_info (GstCaps * caps)
332 {
333   GstStructure *st;
334   GstCapsFeatures *f;
335   gint i, n;
336   GstCaps *res;
337
338   res = gst_caps_new_empty ();
339
340   n = gst_caps_get_size (caps);
341   for (i = 0; i < n; i++) {
342     st = gst_caps_get_structure (caps, i);
343     f = gst_caps_get_features (caps, i);
344
345     /* If this is already expressed by the existing caps
346      * skip this structure */
347     if (i > 0 && gst_caps_is_subset_structure_full (res, st, f))
348       continue;
349
350     st = gst_structure_copy (st);
351     /* Only remove format info for the cases when we can actually convert */
352     if (!gst_caps_features_is_any (f)
353         && gst_caps_features_is_equal (f,
354             GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY))
355       gst_structure_remove_fields (st, "format", "colorimetry", "chroma-site",
356           NULL);
357     gst_structure_remove_fields (st, "width", "height", NULL);
358
359     gst_caps_append_structure_full (res, st, gst_caps_features_copy (f));
360   }
361
362   return res;
363 }
364
365 GstCaps *
366 gst_gl_mixer_update_caps (GstGLMixer * mix, GstCaps * caps)
367 {
368   GstCaps *result, *tmp, *gl_caps;
369
370   gl_caps = gst_caps_from_string ("video/x-raw(memory:GLMemory),format=RGBA");
371
372   result =
373       gst_gl_color_convert_transform_caps (mix->context, GST_PAD_SRC, gl_caps,
374       NULL);
375   tmp = result;
376   GST_DEBUG_OBJECT (mix, "convert returned caps %" GST_PTR_FORMAT, tmp);
377
378   result = gst_gl_mixer_caps_remove_format_info (tmp);
379   gst_caps_unref (tmp);
380   tmp = result;
381   GST_DEBUG_OBJECT (mix, "remove format returned caps %" GST_PTR_FORMAT, tmp);
382
383   result = gst_gl_upload_transform_caps (mix->context, GST_PAD_SRC, tmp, NULL);
384   gst_caps_unref (tmp);
385   tmp = result;
386   GST_DEBUG_OBJECT (mix, "transfer returned caps %" GST_PTR_FORMAT, tmp);
387
388   return result;
389 }
390
391 static GstCaps *
392 gst_gl_mixer_pad_sink_getcaps (GstPad * pad, GstGLMixer * mix, GstCaps * filter)
393 {
394   GstCaps *sinkcaps;
395   GstCaps *template_caps;
396   GstCaps *filtered_caps;
397   GstCaps *returned_caps;
398   gboolean had_current_caps = TRUE;
399
400   template_caps = gst_pad_get_pad_template_caps (pad);
401
402   sinkcaps = gst_pad_get_current_caps (pad);
403   if (sinkcaps == NULL) {
404     had_current_caps = FALSE;
405     sinkcaps = template_caps;
406   } else {
407     sinkcaps =
408         gst_caps_merge (sinkcaps, gst_gl_mixer_update_caps (mix, sinkcaps));
409   }
410
411   filtered_caps = sinkcaps;
412   if (filter)
413     filtered_caps = gst_caps_intersect (sinkcaps, filter);
414   returned_caps = gst_caps_intersect (filtered_caps, template_caps);
415
416   if (filter)
417     gst_caps_unref (filtered_caps);
418   if (had_current_caps)
419     gst_caps_unref (template_caps);
420
421   GST_DEBUG_OBJECT (pad, "returning %" GST_PTR_FORMAT, returned_caps);
422
423   return returned_caps;
424 }
425
426 static gboolean
427 gst_gl_mixer_sink_query (GstAggregator * agg, GstAggregatorPad * bpad,
428     GstQuery * query)
429 {
430   gboolean ret = FALSE;
431   GstGLMixer *mix = GST_GL_MIXER (agg);
432   GstGLMixerClass *mix_class = GST_GL_MIXER_GET_CLASS (mix);
433   GstGLMixerPad *pad = GST_GL_MIXER_PAD (bpad);
434
435   GST_TRACE ("QUERY %" GST_PTR_FORMAT, query);
436
437   switch (GST_QUERY_TYPE (query)) {
438     case GST_QUERY_CAPS:
439     {
440       GstCaps *filter, *caps;
441
442       gst_query_parse_caps (query, &filter);
443       caps = gst_gl_mixer_pad_sink_getcaps (GST_PAD (bpad), mix, filter);
444       gst_query_set_caps_result (query, caps);
445       gst_caps_unref (caps);
446       ret = TRUE;
447       break;
448     }
449     case GST_QUERY_ACCEPT_CAPS:
450     {
451       GstCaps *caps;
452
453       gst_query_parse_accept_caps (query, &caps);
454       ret = gst_gl_mixer_pad_sink_acceptcaps (GST_PAD (bpad), mix, caps);
455       gst_query_set_accept_caps_result (query, ret);
456       ret = TRUE;
457       break;
458     }
459     case GST_QUERY_ALLOCATION:
460     {
461       GstQuery *decide_query = NULL;
462
463       GST_OBJECT_LOCK (mix);
464       if (G_UNLIKELY (!mix->priv->negotiated)) {
465         GST_DEBUG_OBJECT (mix,
466             "not negotiated yet, can't answer ALLOCATION query");
467         GST_OBJECT_UNLOCK (mix);
468         return FALSE;
469       }
470       if ((decide_query = mix->priv->query))
471         gst_query_ref (decide_query);
472       GST_OBJECT_UNLOCK (mix);
473
474       GST_DEBUG_OBJECT (mix,
475           "calling propose allocation with query %" GST_PTR_FORMAT,
476           decide_query);
477
478       /* pass the query to the propose_allocation vmethod if any */
479       ret = gst_gl_mixer_propose_allocation (mix, pad, decide_query, query);
480
481       if (decide_query)
482         gst_query_unref (decide_query);
483
484       GST_DEBUG_OBJECT (mix, "ALLOCATION ret %d, %" GST_PTR_FORMAT, ret, query);
485       break;
486     }
487     case GST_QUERY_CONTEXT:
488     {
489       ret = gst_gl_handle_context_query ((GstElement *) mix, query,
490           &mix->display, &mix->other_context);
491       if (mix->display)
492         gst_gl_display_filter_gl_api (mix->display,
493             mix_class->supported_gl_api);
494       break;
495     }
496     default:
497       ret = GST_AGGREGATOR_CLASS (parent_class)->sink_query (agg, bpad, query);
498       break;
499   }
500
501   return ret;
502 }
503
504 static void
505 gst_gl_mixer_pad_init (GstGLMixerPad * mixerpad)
506 {
507 }
508
509 /* GLMixer signals and args */
510 enum
511 {
512   /* FILL ME */
513   LAST_SIGNAL
514 };
515
516 enum
517 {
518   PROP_0,
519   PROP_CONTEXT
520 };
521
522 static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
523     GST_PAD_SRC,
524     GST_PAD_ALWAYS,
525     GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE_WITH_FEATURES
526         (GST_CAPS_FEATURE_MEMORY_GL_MEMORY,
527             "RGBA") "; "
528         GST_VIDEO_CAPS_MAKE_WITH_FEATURES
529         (GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META,
530             "RGBA")
531         "; " GST_VIDEO_CAPS_MAKE (GST_GL_COLOR_CONVERT_FORMATS))
532     );
533
534 static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink_%u",
535     GST_PAD_SINK,
536     GST_PAD_REQUEST,
537     GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE_WITH_FEATURES
538         (GST_CAPS_FEATURE_MEMORY_GL_MEMORY,
539             "RGBA") "; "
540         GST_VIDEO_CAPS_MAKE_WITH_FEATURES
541         (GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META,
542             "RGBA")
543         "; " GST_VIDEO_CAPS_MAKE (GST_GL_COLOR_CONVERT_FORMATS))
544     );
545
546 static gboolean gst_gl_mixer_src_query (GstAggregator * agg, GstQuery * query);
547 static GstFlowReturn
548 gst_gl_mixer_get_output_buffer (GstVideoAggregator * videoaggregator,
549     GstBuffer ** outbuf);
550 static gboolean
551 gst_gl_mixer_src_activate_mode (GstAggregator * aggregator, GstPadMode mode,
552     gboolean active);
553 static gboolean gst_gl_mixer_stop (GstAggregator * agg);
554 static gboolean gst_gl_mixer_start (GstAggregator * agg);
555
556 static GstFlowReturn
557 gst_gl_mixer_aggregate_frames (GstVideoAggregator * vagg,
558     GstBuffer * outbuffer);
559
560 static void gst_gl_mixer_set_property (GObject * object, guint prop_id,
561     const GValue * value, GParamSpec * pspec);
562 static void gst_gl_mixer_get_property (GObject * object, guint prop_id,
563     GValue * value, GParamSpec * pspec);
564
565 static gboolean gst_gl_mixer_decide_allocation (GstGLMixer * mix,
566     GstQuery * query);
567 static gboolean gst_gl_mixer_set_allocation (GstGLMixer * mix,
568     GstBufferPool * pool, GstAllocator * allocator,
569     GstAllocationParams * params, GstQuery * query);
570
571 static void gst_gl_mixer_finalize (GObject * object);
572
573 static void
574 gst_gl_mixer_class_init (GstGLMixerClass * klass)
575 {
576   GObjectClass *gobject_class;
577   GstElementClass *element_class;
578
579   GstVideoAggregatorClass *videoaggregator_class =
580       (GstVideoAggregatorClass *) klass;
581   GstAggregatorClass *agg_class = (GstAggregatorClass *) klass;
582
583   GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "glmixer", 0, "opengl mixer");
584
585   gobject_class = (GObjectClass *) klass;
586   element_class = GST_ELEMENT_CLASS (klass);
587
588   g_type_class_add_private (klass, sizeof (GstGLMixerPrivate));
589
590   gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_gl_mixer_finalize);
591
592   gobject_class->get_property = gst_gl_mixer_get_property;
593   gobject_class->set_property = gst_gl_mixer_set_property;
594
595   gst_element_class_add_pad_template (element_class,
596       gst_static_pad_template_get (&src_factory));
597   gst_element_class_add_pad_template (element_class,
598       gst_static_pad_template_get (&sink_factory));
599
600   element_class->set_context = GST_DEBUG_FUNCPTR (gst_gl_mixer_set_context);
601
602   agg_class->sinkpads_type = GST_TYPE_GL_MIXER_PAD;
603   agg_class->sink_query = gst_gl_mixer_sink_query;
604   agg_class->src_query = gst_gl_mixer_src_query;
605   agg_class->src_activate = gst_gl_mixer_src_activate_mode;
606   agg_class->stop = gst_gl_mixer_stop;
607   agg_class->start = gst_gl_mixer_start;
608
609   videoaggregator_class->aggregate_frames = gst_gl_mixer_aggregate_frames;
610   videoaggregator_class->get_output_buffer = gst_gl_mixer_get_output_buffer;
611   videoaggregator_class->negotiated_caps = _negotiated_caps;
612   videoaggregator_class->find_best_format = NULL;
613
614   g_object_class_install_property (gobject_class, PROP_CONTEXT,
615       g_param_spec_object ("context",
616           "OpenGL context",
617           "Get OpenGL context",
618           GST_GL_TYPE_CONTEXT, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
619
620   /* Register the pad class */
621   g_type_class_ref (GST_TYPE_GL_MIXER_PAD);
622
623   klass->set_caps = NULL;
624   klass->supported_gl_api = GST_GL_API_ANY;
625 }
626
627 static void
628 gst_gl_mixer_reset (GstGLMixer * mix)
629 {
630   /* clean up collect data */
631   mix->priv->negotiated = FALSE;
632 }
633
634 static void
635 gst_gl_mixer_init (GstGLMixer * mix)
636 {
637   mix->priv = GST_GL_MIXER_GET_PRIVATE (mix);
638   mix->array_buffers = 0;
639   mix->display = NULL;
640   mix->fbo = 0;
641   mix->depthbuffer = 0;
642
643   mix->priv->gl_resource_ready = FALSE;
644   g_mutex_init (&mix->priv->gl_resource_lock);
645   g_cond_init (&mix->priv->gl_resource_cond);
646   /* initialize variables */
647   gst_gl_mixer_reset (mix);
648 }
649
650 static void
651 gst_gl_mixer_finalize (GObject * object)
652 {
653   GstGLMixer *mix = GST_GL_MIXER (object);
654   GstGLMixerPrivate *priv = mix->priv;
655
656   if (mix->other_context) {
657     gst_object_unref (mix->other_context);
658     mix->other_context = NULL;
659   }
660
661   g_mutex_clear (&priv->gl_resource_lock);
662   g_cond_clear (&priv->gl_resource_cond);
663   G_OBJECT_CLASS (parent_class)->finalize (object);
664 }
665
666 static void
667 gst_gl_mixer_set_context (GstElement * element, GstContext * context)
668 {
669   GstGLMixer *mix = GST_GL_MIXER (element);
670   GstGLMixerClass *mix_class = GST_GL_MIXER_GET_CLASS (mix);
671
672   gst_gl_handle_set_context (element, context, &mix->display,
673       &mix->other_context);
674
675   if (mix->display)
676     gst_gl_display_filter_gl_api (mix->display, mix_class->supported_gl_api);
677 }
678
679 static gboolean
680 gst_gl_mixer_activate (GstGLMixer * mix, gboolean active)
681 {
682   GstGLMixerClass *mix_class = GST_GL_MIXER_GET_CLASS (mix);
683   gboolean result = TRUE;
684
685   if (active) {
686     if (!gst_gl_ensure_element_data (mix, &mix->display, &mix->other_context))
687       return FALSE;
688
689     gst_gl_display_filter_gl_api (mix->display, mix_class->supported_gl_api);
690   }
691
692   return result;
693 }
694
695 static gboolean
696 gst_gl_mixer_src_activate_mode (GstAggregator * aggregator, GstPadMode mode,
697     gboolean active)
698 {
699   GstGLMixer *mix;
700   gboolean result = FALSE;
701
702   mix = GST_GL_MIXER (aggregator);
703
704   switch (mode) {
705     case GST_PAD_MODE_PUSH:
706     case GST_PAD_MODE_PULL:
707       result = gst_gl_mixer_activate (mix, active);
708       break;
709     default:
710       result = TRUE;
711       break;
712   }
713   return result;
714 }
715
716 static gboolean
717 gst_gl_mixer_query_caps (GstPad * pad, GstAggregator * agg, GstQuery * query)
718 {
719   GstGLMixer *mix = GST_GL_MIXER (agg);
720   GstCaps *filter, *current_caps, *retcaps, *gl_caps;
721
722   gst_query_parse_caps (query, &filter);
723
724   current_caps = gst_pad_get_current_caps (pad);
725   if (current_caps == NULL)
726     current_caps = gst_pad_get_pad_template_caps (agg->srcpad);
727
728   /* convert from current caps to GLMemory caps */
729   gl_caps =
730       gst_caps_merge (gst_caps_merge (gst_gl_mixer_set_caps_features
731           (current_caps, GST_CAPS_FEATURE_MEMORY_GL_MEMORY),
732           gst_gl_mixer_set_caps_features (current_caps,
733               GST_CAPS_FEATURE_MEMORY_EGL_IMAGE)),
734       gst_gl_mixer_set_caps_features (current_caps,
735           GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META));
736   retcaps =
737       gst_gl_download_transform_caps (mix->context, GST_PAD_SINK, current_caps,
738       NULL);
739   retcaps = gst_caps_merge (gl_caps, retcaps);
740   gst_caps_unref (current_caps);
741   current_caps = retcaps;
742
743   retcaps = gst_gl_mixer_caps_remove_format_info (current_caps);
744   gst_caps_unref (current_caps);
745
746   if (filter) {
747     current_caps =
748         gst_caps_intersect_full (filter, retcaps, GST_CAPS_INTERSECT_FIRST);
749     gst_caps_unref (retcaps);
750     retcaps = current_caps;
751   }
752
753   gst_query_set_caps_result (query, retcaps);
754   gst_caps_unref (retcaps);
755
756   return TRUE;
757 }
758
759 static gboolean
760 gst_gl_mixer_src_query (GstAggregator * agg, GstQuery * query)
761 {
762   gboolean res = FALSE;
763   GstGLMixer *mix = GST_GL_MIXER (agg);
764   GstGLMixerClass *mix_class = GST_GL_MIXER_GET_CLASS (mix);
765
766   switch (GST_QUERY_TYPE (query)) {
767     case GST_QUERY_CONTEXT:
768     {
769       res = gst_gl_handle_context_query ((GstElement *) mix, query,
770           &mix->display, &mix->other_context);
771       if (mix->display)
772         gst_gl_display_filter_gl_api (mix->display,
773             mix_class->supported_gl_api);
774       break;
775     }
776     case GST_QUERY_CAPS:
777       res = gst_gl_mixer_query_caps (agg->srcpad, agg, query);
778       break;
779     default:
780       res = GST_AGGREGATOR_CLASS (parent_class)->src_query (agg, query);
781       break;
782   }
783
784   return res;
785 }
786
787 static GstFlowReturn
788 gst_gl_mixer_get_output_buffer (GstVideoAggregator * videoaggregator,
789     GstBuffer ** outbuf)
790 {
791   GstGLMixer *mix = GST_GL_MIXER (videoaggregator);
792
793   if (!mix->priv->pool_active) {
794     if (!gst_buffer_pool_set_active (mix->priv->pool, TRUE)) {
795       GST_ELEMENT_ERROR (mix, RESOURCE, SETTINGS,
796           ("failed to activate bufferpool"), ("failed to activate bufferpool"));
797       return GST_FLOW_ERROR;
798     }
799     mix->priv->pool_active = TRUE;
800   }
801
802   return gst_buffer_pool_acquire_buffer (mix->priv->pool, outbuf, NULL);
803 }
804
805 static gboolean
806 gst_gl_mixer_decide_allocation (GstGLMixer * mix, GstQuery * query)
807 {
808   GstGLMixerClass *mixer_class = GST_GL_MIXER_GET_CLASS (mix);
809   GstBufferPool *pool = NULL;
810   GstStructure *config;
811   GstCaps *caps;
812   guint min, max, size;
813   gboolean update_pool;
814   GError *error = NULL;
815   guint idx;
816   guint out_width, out_height;
817   GstGLContext *other_context = NULL;
818   GstVideoAggregator *vagg = GST_VIDEO_AGGREGATOR (mix);
819   gboolean same_downstream_gl_context = FALSE;
820
821   if (!gst_gl_ensure_element_data (mix, &mix->display, &mix->other_context))
822     return FALSE;
823
824   gst_gl_display_filter_gl_api (mix->display, mixer_class->supported_gl_api);
825
826   if (gst_query_find_allocation_meta (query,
827           GST_VIDEO_GL_TEXTURE_UPLOAD_META_API_TYPE, &idx)) {
828     GstGLContext *context;
829     const GstStructure *upload_meta_params;
830     gpointer handle;
831     gchar *type;
832     gchar *apis;
833
834     gst_query_parse_nth_allocation_meta (query, idx, &upload_meta_params);
835     if (upload_meta_params) {
836       if (gst_structure_get (upload_meta_params, "gst.gl.GstGLContext",
837               GST_GL_TYPE_CONTEXT, &context, NULL) && context) {
838         GstGLContext *old = mix->context;
839
840         mix->context = context;
841         if (old)
842           gst_object_unref (old);
843         same_downstream_gl_context = TRUE;
844       } else if (gst_structure_get (upload_meta_params, "gst.gl.context.handle",
845               G_TYPE_POINTER, &handle, "gst.gl.context.type", G_TYPE_STRING,
846               &type, "gst.gl.context.apis", G_TYPE_STRING, &apis, NULL)
847           && handle) {
848         GstGLPlatform platform;
849         GstGLAPI gl_apis;
850
851         GST_DEBUG ("got GL context handle 0x%p with type %s and apis %s",
852             handle, type, apis);
853
854         platform = gst_gl_platform_from_string (type);
855         gl_apis = gst_gl_api_from_string (apis);
856
857         if (gl_apis && platform)
858           other_context =
859               gst_gl_context_new_wrapped (mix->display, (guintptr) handle,
860               platform, gl_apis);
861       }
862     }
863   }
864
865   if (mix->other_context) {
866     if (!other_context) {
867       other_context = mix->other_context;
868     } else {
869       GST_ELEMENT_WARNING (mix, LIBRARY, SETTINGS,
870           ("%s", "Cannot share with more than one GL context"),
871           ("%s", "Cannot share with more than one GL context"));
872     }
873   }
874
875   if (!mix->context) {
876     mix->context = gst_gl_context_new (mix->display);
877     if (!gst_gl_context_create (mix->context, other_context, &error))
878       goto context_error;
879   }
880
881   out_width = GST_VIDEO_INFO_WIDTH (&vagg->info);
882   out_height = GST_VIDEO_INFO_HEIGHT (&vagg->info);
883
884   g_mutex_lock (&mix->priv->gl_resource_lock);
885   mix->priv->gl_resource_ready = FALSE;
886   if (mix->fbo) {
887     gst_gl_context_del_fbo (mix->context, mix->fbo, mix->depthbuffer);
888     mix->fbo = 0;
889     mix->depthbuffer = 0;
890   }
891
892   if (!gst_gl_context_gen_fbo (mix->context, out_width, out_height,
893           &mix->fbo, &mix->depthbuffer)) {
894     g_cond_signal (&mix->priv->gl_resource_cond);
895     g_mutex_unlock (&mix->priv->gl_resource_lock);
896     goto context_error;
897   }
898
899   if (mix->out_tex_id)
900     gst_gl_context_del_texture (mix->context, &mix->out_tex_id);
901   gst_gl_context_gen_texture (mix->context, &mix->out_tex_id,
902       GST_VIDEO_FORMAT_RGBA, out_width, out_height);
903
904   gst_query_parse_allocation (query, &caps, NULL);
905
906   if (mixer_class->set_caps)
907     mixer_class->set_caps (mix, caps);
908
909   mix->priv->gl_resource_ready = TRUE;
910   g_cond_signal (&mix->priv->gl_resource_cond);
911   g_mutex_unlock (&mix->priv->gl_resource_lock);
912
913   if (gst_query_get_n_allocation_pools (query) > 0) {
914     gst_query_parse_nth_allocation_pool (query, 0, &pool, &size, &min, &max);
915
916     update_pool = TRUE;
917   } else {
918     GstVideoInfo vinfo;
919
920     gst_video_info_init (&vinfo);
921     gst_video_info_from_caps (&vinfo, caps);
922     size = vinfo.size;
923     min = max = 0;
924     update_pool = FALSE;
925   }
926
927   if (!pool || (!same_downstream_gl_context
928           && gst_query_find_allocation_meta (query, GST_GL_SYNC_META_API_TYPE,
929               NULL)
930           && !gst_buffer_pool_has_option (pool,
931               GST_BUFFER_POOL_OPTION_GL_SYNC_META))) {
932     /* can't use this pool */
933     if (pool)
934       gst_object_unref (pool);
935     pool = gst_gl_buffer_pool_new (mix->context);
936   }
937   config = gst_buffer_pool_get_config (pool);
938
939   gst_buffer_pool_config_set_params (config, caps, size, min, max);
940   gst_buffer_pool_config_add_option (config, GST_BUFFER_POOL_OPTION_VIDEO_META);
941   if (gst_query_find_allocation_meta (query, GST_GL_SYNC_META_API_TYPE, NULL))
942     gst_buffer_pool_config_add_option (config,
943         GST_BUFFER_POOL_OPTION_GL_SYNC_META);
944   gst_buffer_pool_config_add_option (config,
945       GST_BUFFER_POOL_OPTION_VIDEO_GL_TEXTURE_UPLOAD_META);
946
947   gst_buffer_pool_set_config (pool, config);
948
949   if (update_pool)
950     gst_query_set_nth_allocation_pool (query, 0, pool, size, min, max);
951   else
952     gst_query_add_allocation_pool (query, pool, size, min, max);
953
954   gst_object_unref (pool);
955
956   return TRUE;
957
958 context_error:
959   {
960     GST_ELEMENT_ERROR (mix, RESOURCE, NOT_FOUND, ("%s", error->message),
961         (NULL));
962     return FALSE;
963   }
964 }
965
966 /* takes ownership of the pool, allocator and query */
967 static gboolean
968 gst_gl_mixer_set_allocation (GstGLMixer * mix,
969     GstBufferPool * pool, GstAllocator * allocator,
970     GstAllocationParams * params, GstQuery * query)
971 {
972   GstAllocator *oldalloc;
973   GstBufferPool *oldpool;
974   GstQuery *oldquery;
975   GstGLMixerPrivate *priv = mix->priv;
976
977   GST_DEBUG ("storing allocation query");
978
979   GST_OBJECT_LOCK (mix);
980   oldpool = priv->pool;
981   priv->pool = pool;
982   priv->pool_active = FALSE;
983
984   oldalloc = priv->allocator;
985   priv->allocator = allocator;
986
987   oldquery = priv->query;
988   priv->query = query;
989
990   if (params)
991     priv->params = *params;
992   else
993     gst_allocation_params_init (&priv->params);
994   GST_OBJECT_UNLOCK (mix);
995
996   if (oldpool) {
997     GST_DEBUG_OBJECT (mix, "deactivating old pool %p", oldpool);
998     gst_buffer_pool_set_active (oldpool, FALSE);
999     gst_object_unref (oldpool);
1000   }
1001   if (oldalloc) {
1002     gst_object_unref (oldalloc);
1003   }
1004   if (oldquery) {
1005     gst_query_unref (oldquery);
1006   }
1007   return TRUE;
1008 }
1009
1010 static gboolean
1011 gst_gl_mixer_do_bufferpool (GstGLMixer * mix, GstCaps * outcaps)
1012 {
1013   GstQuery *query;
1014   gboolean result = TRUE;
1015   GstBufferPool *pool = NULL;
1016   GstAllocator *allocator;
1017   GstAllocationParams params;
1018   GstAggregator *agg = GST_AGGREGATOR (mix);
1019
1020   /* find a pool for the negotiated caps now */
1021   GST_DEBUG_OBJECT (mix, "doing allocation query");
1022   query = gst_query_new_allocation (outcaps, TRUE);
1023   if (!gst_pad_peer_query (agg->srcpad, query)) {
1024     /* not a problem, just debug a little */
1025     GST_DEBUG_OBJECT (mix, "peer ALLOCATION query failed");
1026   }
1027
1028   GST_DEBUG_OBJECT (mix, "calling decide_allocation");
1029   result = gst_gl_mixer_decide_allocation (mix, query);
1030
1031   GST_DEBUG_OBJECT (mix, "ALLOCATION (%d) params: %" GST_PTR_FORMAT, result,
1032       query);
1033
1034   if (!result)
1035     goto no_decide_allocation;
1036
1037   /* we got configuration from our peer or the decide_allocation method,
1038    * parse them */
1039   if (gst_query_get_n_allocation_params (query) > 0) {
1040     gst_query_parse_nth_allocation_param (query, 0, &allocator, &params);
1041   } else {
1042     allocator = NULL;
1043     gst_allocation_params_init (&params);
1044   }
1045
1046   if (gst_query_get_n_allocation_pools (query) > 0)
1047     gst_query_parse_nth_allocation_pool (query, 0, &pool, NULL, NULL, NULL);
1048
1049   /* now store */
1050   result = gst_gl_mixer_set_allocation (mix, pool, allocator, &params, query);
1051
1052   return result;
1053
1054   /* Errors */
1055 no_decide_allocation:
1056   {
1057     GST_WARNING_OBJECT (mix, "Failed to decide allocation");
1058     gst_query_unref (query);
1059
1060     return result;
1061   }
1062 }
1063
1064 static GstBuffer *
1065 _default_pad_upload_buffer (GstGLMixer * mix, GstGLMixerFrameData * frame,
1066     GstBuffer * buffer)
1067 {
1068   GstVideoAggregatorPad *vaggpad = GST_VIDEO_AGGREGATOR_PAD (frame->pad);
1069   GstGLMixerPad *pad = frame->pad;
1070   GstBuffer *uploaded_buf, *gl_buffer;
1071   GstVideoInfo gl_info;
1072   GstVideoFrame gl_frame;
1073   GstGLSyncMeta *sync_meta;
1074
1075   gst_video_info_set_format (&gl_info,
1076       GST_VIDEO_FORMAT_RGBA,
1077       GST_VIDEO_INFO_WIDTH (&vaggpad->info),
1078       GST_VIDEO_INFO_HEIGHT (&vaggpad->info));
1079
1080   _init_upload (mix, pad);
1081
1082   sync_meta = gst_buffer_get_gl_sync_meta (vaggpad->buffer);
1083   if (sync_meta)
1084     gst_gl_sync_meta_wait (sync_meta);
1085
1086   if (gst_gl_upload_perform_with_buffer (pad->upload,
1087           vaggpad->buffer, &uploaded_buf) != GST_GL_UPLOAD_DONE) {
1088     return NULL;
1089   }
1090
1091   if (!(gl_buffer = gst_gl_color_convert_perform (pad->convert, uploaded_buf))) {
1092     gst_buffer_unref (uploaded_buf);
1093     return NULL;
1094   }
1095
1096   if (!gst_video_frame_map (&gl_frame, &gl_info, gl_buffer,
1097           GST_MAP_READ | GST_MAP_GL)) {
1098     gst_buffer_unref (uploaded_buf);
1099     gst_buffer_unref (gl_buffer);
1100     return NULL;
1101   }
1102
1103   frame->texture = *(guint *) gl_frame.data[0];
1104
1105   gst_buffer_unref (uploaded_buf);
1106   gst_video_frame_unmap (&gl_frame);
1107
1108   return gl_buffer;
1109 }
1110
1111 gboolean
1112 gst_gl_mixer_process_textures (GstGLMixer * mix, GstBuffer * outbuf)
1113 {
1114   guint i;
1115   GList *walk;
1116   guint out_tex, out_tex_target;
1117   gboolean res = TRUE;
1118   guint array_index = 0;
1119   GstVideoFrame out_frame;
1120   GstElement *element = GST_ELEMENT (mix);
1121   GstVideoAggregator *vagg = GST_VIDEO_AGGREGATOR (mix);
1122   GstGLMixerClass *mix_class = GST_GL_MIXER_GET_CLASS (mix);
1123   GstGLMixerPrivate *priv = mix->priv;
1124   gboolean to_download =
1125       gst_caps_features_is_equal (GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY,
1126       gst_caps_get_features (mix->out_caps, 0));
1127   GstMapFlags out_map_flags = GST_MAP_WRITE;
1128
1129   GST_TRACE ("Processing buffers");
1130
1131   to_download |= !gst_is_gl_memory (gst_buffer_peek_memory (outbuf, 0));
1132
1133   if (!to_download)
1134     out_map_flags |= GST_MAP_GL;
1135
1136   if (!gst_video_frame_map (&out_frame, &vagg->info, outbuf, out_map_flags)) {
1137     return FALSE;
1138   }
1139
1140   if (!to_download) {
1141     out_tex = *(guint *) out_frame.data[0];
1142     out_tex_target =
1143         ((GstGLMemory *) gst_buffer_peek_memory (outbuf, 0))->tex_target;
1144   } else {
1145     GST_INFO ("Output Buffer does not contain correct memory, "
1146         "attempting to wrap for download");
1147
1148     if (!mix->download)
1149       mix->download = gst_gl_download_new (mix->context);
1150
1151     gst_gl_download_set_format (mix->download, &out_frame.info);
1152     out_tex = mix->out_tex_id;
1153     out_tex_target = GL_TEXTURE_2D;
1154   }
1155
1156   GST_OBJECT_LOCK (mix);
1157   walk = element->sinkpads;
1158
1159   i = mix->frames->len;
1160   g_ptr_array_set_size (mix->frames, element->numsinkpads);
1161   for (; i < element->numsinkpads; i++)
1162     mix->frames->pdata[i] = g_slice_new0 (GstGLMixerFrameData);
1163   while (walk) {
1164     GstGLMixerPad *pad = GST_GL_MIXER_PAD (walk->data);
1165     GstGLMixerPadClass *pad_class = GST_GL_MIXER_PAD_GET_CLASS (pad);
1166     GstVideoAggregatorPad *vaggpad = walk->data;
1167     GstGLMixerFrameData *frame;
1168
1169     frame = g_ptr_array_index (mix->frames, array_index);
1170     frame->pad = pad;
1171     frame->texture = 0;
1172
1173     walk = g_list_next (walk);
1174
1175     if (vaggpad->buffer != NULL) {
1176       g_assert (pad_class->upload_buffer);
1177
1178       if (pad->gl_buffer)
1179         gst_buffer_unref (pad->gl_buffer);
1180       pad->gl_buffer = pad_class->upload_buffer (mix, frame, vaggpad->buffer);
1181
1182       GST_DEBUG_OBJECT (pad,
1183           "uploaded buffer %" GST_PTR_FORMAT " from buffer %" GST_PTR_FORMAT,
1184           pad->gl_buffer, vaggpad->buffer);
1185     }
1186
1187     ++array_index;
1188   }
1189
1190   g_mutex_lock (&priv->gl_resource_lock);
1191   if (!priv->gl_resource_ready)
1192     g_cond_wait (&priv->gl_resource_cond, &priv->gl_resource_lock);
1193
1194   if (!priv->gl_resource_ready) {
1195     g_mutex_unlock (&priv->gl_resource_lock);
1196     GST_ERROR_OBJECT (mix,
1197         "fbo used to render can't be created, do not run process_textures");
1198     res = FALSE;
1199     goto out;
1200   }
1201
1202   mix_class->process_textures (mix, mix->frames, out_tex);
1203
1204   g_mutex_unlock (&priv->gl_resource_lock);
1205
1206   if (to_download) {
1207     if (!gst_gl_download_perform_with_data (mix->download,
1208             out_tex, out_tex_target, out_frame.data)) {
1209       GST_ELEMENT_ERROR (mix, RESOURCE, NOT_FOUND, ("%s",
1210               "Failed to download video frame"), (NULL));
1211       res = FALSE;
1212       goto out;
1213     }
1214   }
1215
1216 out:
1217   i = 0;
1218   walk = GST_ELEMENT (mix)->sinkpads;
1219   while (walk) {
1220     GstGLMixerPad *pad = GST_GL_MIXER_PAD (walk->data);
1221
1222     if (pad->upload)
1223       gst_gl_upload_release_buffer (pad->upload);
1224
1225     walk = g_list_next (walk);
1226     i++;
1227   }
1228   GST_OBJECT_UNLOCK (mix);
1229
1230   gst_video_frame_unmap (&out_frame);
1231
1232   return res;
1233 }
1234
1235 static gboolean
1236 gst_gl_mixer_process_buffers (GstGLMixer * mix, GstBuffer * outbuf)
1237 {
1238   GList *walk;
1239   guint i, array_index = 0;
1240   GstElement *element = GST_ELEMENT (mix);
1241   GstGLMixerClass *mix_class = GST_GL_MIXER_GET_CLASS (mix);
1242
1243   GST_OBJECT_LOCK (mix);
1244   walk = GST_ELEMENT (mix)->sinkpads;
1245   i = mix->frames->len;
1246   g_ptr_array_set_size (mix->frames, element->numsinkpads);
1247   for (; i < element->numsinkpads; i++)
1248     mix->frames->pdata[i] = g_slice_new0 (GstGLMixerFrameData);
1249   while (walk) {                /* We walk with this list because it's ordered */
1250     GstVideoAggregatorPad *vaggpad = walk->data;
1251
1252     walk = g_list_next (walk);
1253
1254     if (vaggpad->buffer != NULL) {
1255       /* put buffer into array */
1256       mix->array_buffers->pdata[array_index] = vaggpad->buffer;
1257     }
1258     ++array_index;
1259   }
1260   GST_OBJECT_UNLOCK (mix);
1261
1262   return mix_class->process_buffers (mix, mix->array_buffers, outbuf);
1263 }
1264
1265
1266
1267 static GstFlowReturn
1268 gst_gl_mixer_aggregate_frames (GstVideoAggregator * vagg, GstBuffer * outbuf)
1269 {
1270   gboolean res = FALSE;
1271   GstGLMixer *mix = GST_GL_MIXER (vagg);
1272   GstGLMixerClass *mix_class = GST_GL_MIXER_GET_CLASS (vagg);
1273   GstGLSyncMeta *sync_meta;
1274
1275   if (mix_class->process_buffers)
1276     res = gst_gl_mixer_process_buffers (mix, outbuf);
1277   else if (mix_class->process_textures)
1278     res = gst_gl_mixer_process_textures (mix, outbuf);
1279
1280   sync_meta = gst_buffer_get_gl_sync_meta (outbuf);
1281   if (sync_meta)
1282     gst_gl_sync_meta_set_sync_point (sync_meta, mix->context);
1283
1284   return res ? GST_FLOW_OK : GST_FLOW_ERROR;
1285 }
1286
1287 static void
1288 gst_gl_mixer_get_property (GObject * object,
1289     guint prop_id, GValue * value, GParamSpec * pspec)
1290 {
1291   GstGLMixer *mixer = GST_GL_MIXER (object);
1292
1293   switch (prop_id) {
1294     case PROP_CONTEXT:
1295       g_value_set_object (value, mixer->context);
1296       break;
1297     default:
1298       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1299       break;
1300   }
1301 }
1302
1303 static void
1304 gst_gl_mixer_set_property (GObject * object,
1305     guint prop_id, const GValue * value, GParamSpec * pspec)
1306 {
1307   switch (prop_id) {
1308     default:
1309       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1310       break;
1311   }
1312 }
1313
1314 static gboolean
1315 _clean_upload (GstAggregator * agg, GstAggregatorPad * aggpad, gpointer udata)
1316 {
1317   GstGLMixerPad *pad = GST_GL_MIXER_PAD (aggpad);
1318
1319   if (pad->gl_buffer) {
1320     gst_buffer_unref (pad->gl_buffer);
1321     pad->gl_buffer = NULL;
1322   }
1323
1324   if (pad->upload) {
1325     gst_object_unref (pad->upload);
1326     pad->upload = NULL;
1327   }
1328
1329   if (pad->convert) {
1330     gst_object_unref (pad->convert);
1331     pad->convert = NULL;
1332   }
1333
1334   return TRUE;
1335 }
1336
1337 static void
1338 _free_glmixer_frame_data (GstGLMixerFrameData * frame)
1339 {
1340   g_slice_free1 (sizeof (GstGLMixerFrameData), frame);
1341 }
1342
1343 static gboolean
1344 gst_gl_mixer_start (GstAggregator * agg)
1345 {
1346   guint i;
1347   GstGLMixer *mix = GST_GL_MIXER (agg);
1348   GstElement *element = GST_ELEMENT (agg);
1349
1350   GST_OBJECT_LOCK (mix);
1351   mix->array_buffers = g_ptr_array_new_full (element->numsinkpads,
1352       (GDestroyNotify) _free_glmixer_frame_data);
1353   mix->frames = g_ptr_array_new_full (element->numsinkpads, NULL);
1354
1355   g_ptr_array_set_size (mix->array_buffers, element->numsinkpads);
1356   g_ptr_array_set_size (mix->frames, element->numsinkpads);
1357
1358   for (i = 0; i < element->numsinkpads; i++)
1359     mix->frames->pdata[i] = g_slice_new0 (GstGLMixerFrameData);
1360
1361   GST_OBJECT_UNLOCK (mix);
1362
1363   return TRUE;
1364 }
1365
1366 static gboolean
1367 gst_gl_mixer_stop (GstAggregator * agg)
1368 {
1369   GstGLMixer *mix = GST_GL_MIXER (agg);
1370   GstGLMixerClass *mixer_class = GST_GL_MIXER_GET_CLASS (mix);
1371
1372   GST_OBJECT_LOCK (agg);
1373   g_ptr_array_free (mix->frames, TRUE);
1374   mix->frames = NULL;
1375   g_ptr_array_free (mix->array_buffers, TRUE);
1376   mix->array_buffers = NULL;
1377   GST_OBJECT_UNLOCK (agg);
1378
1379   if (mixer_class->reset)
1380     mixer_class->reset (mix);
1381   if (mix->fbo) {
1382     gst_gl_context_del_fbo (mix->context, mix->fbo, mix->depthbuffer);
1383     mix->fbo = 0;
1384     mix->depthbuffer = 0;
1385   }
1386   if (mix->download) {
1387     gst_object_unref (mix->download);
1388     mix->download = NULL;
1389   }
1390
1391   gst_aggregator_iterate_sinkpads (GST_AGGREGATOR (mix), _clean_upload, NULL);
1392
1393   if (mix->priv->query) {
1394     gst_query_unref (mix->priv->query);
1395     mix->priv->query = NULL;
1396   }
1397
1398   if (mix->priv->pool) {
1399     gst_object_unref (mix->priv->pool);
1400     mix->priv->pool = NULL;
1401   }
1402
1403   if (mix->display) {
1404     gst_object_unref (mix->display);
1405     mix->display = NULL;
1406   }
1407
1408   if (mix->context) {
1409     gst_object_unref (mix->context);
1410     mix->context = NULL;
1411   }
1412
1413   gst_gl_mixer_reset (mix);
1414
1415   return TRUE;
1416 }