various: fix pad template leaks
[platform/upstream/gstreamer.git] / gst / videomixer / videomixer2.c
1 /* Generic video mixer plugin
2  * Copyright (C) 2004, 2008 Wim Taymans <wim@fluendo.com>
3  * Copyright (C) 2010 Sebastian Dröge <sebastian.droege@collabora.co.uk>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /**
22  * SECTION:element-videomixer2
23  *
24  * Videomixer2 can accept AYUV, ARGB and BGRA video streams. For each of the requested
25  * sink pads it will compare the incoming geometry and framerate to define the
26  * output parameters. Indeed output video frames will have the geometry of the
27  * biggest incoming video stream and the framerate of the fastest incoming one.
28  *
29  * All sink pads must be either AYUV, ARGB or BGRA, but a mixture of them is not 
30  * supported. The src pad will have the same colorspace as the sinks. 
31  * No colorspace conversion is done. 
32  * 
33  * Individual parameters for each input stream can be configured on the
34  * #GstVideoMixer2Pad.
35  *
36  * At this stage, videomixer2 is considered UNSTABLE. The API provided in the
37  * properties may yet change in the near future. When videomixer2 is stable,
38  * it will replace #videomixer
39  *
40  * <refsect2>
41  * <title>Sample pipelines</title>
42  * |[
43  * gst-launch-0.10 \
44  *   videotestsrc pattern=1 ! \
45  *   video/x-raw-yuv,format=\(fourcc\)AYUV,framerate=\(fraction\)10/1,width=100,height=100 ! \
46  *   videobox border-alpha=0 top=-70 bottom=-70 right=-220 ! \
47  *   videomixer2 name=mix sink_0::alpha=0.7 sink_1::alpha=0.5 ! \
48  *   ffmpegcolorspace ! xvimagesink \
49  *   videotestsrc ! \
50  *   video/x-raw-yuv,format=\(fourcc\)AYUV,framerate=\(fraction\)5/1,width=320,height=240 ! mix.
51  * ]| A pipeline to demonstrate videomixer used together with videobox.
52  * This should show a 320x240 pixels video test source with some transparency
53  * showing the background checker pattern. Another video test source with just
54  * the snow pattern of 100x100 pixels is overlayed on top of the first one on
55  * the left vertically centered with a small transparency showing the first
56  * video test source behind and the checker pattern under it. Note that the
57  * framerate of the output video is 10 frames per second.
58  * |[
59  * gst-launch videotestsrc pattern=1 ! \
60  *   video/x-raw-rgb, framerate=\(fraction\)10/1, width=100, height=100 ! \
61  *   videomixer2 name=mix ! ffmpegcolorspace ! ximagesink \
62  *   videotestsrc !  \
63  *   video/x-raw-rgb, framerate=\(fraction\)5/1, width=320, height=240 ! mix.
64  * ]| A pipeline to demostrate bgra mixing. (This does not demonstrate alpha blending). 
65  * |[
66  * gst-launch videotestsrc pattern=1 ! \
67  *   video/x-raw-yuv,format =\(fourcc\)I420, framerate=\(fraction\)10/1, width=100, height=100 ! \
68  *   videomixer2 name=mix ! ffmpegcolorspace ! ximagesink \
69  *   videotestsrc ! \
70  *   video/x-raw-yuv,format=\(fourcc\)I420, framerate=\(fraction\)5/1, width=320, height=240 ! mix.
71  * ]| A pipeline to test I420
72  * |[
73  * gst-launch videomixer2 name=mixer sink_1::alpha=0.5 sink_1::xpos=50 sink_1::ypos=50 ! \
74  *   ffmpegcolorspace ! ximagesink \
75  *   videotestsrc pattern=snow timestamp-offset=3000000000 ! \
76  *   "video/x-raw-yuv,format=(fourcc)AYUV,width=640,height=480,framerate=(fraction)30/1" ! \
77  *   timeoverlay ! queue2 ! mixer. \
78  *   videotestsrc pattern=smpte ! \
79  *   "video/x-raw-yuv,format=(fourcc)AYUV,width=800,height=600,framerate=(fraction)10/1" ! \
80  *   timeoverlay ! queue2 ! mixer.
81  * ]| A pipeline to demonstrate synchronized mixing (the second stream starts after 3 seconds)
82  * </refsect2>
83  */
84
85 #ifdef HAVE_CONFIG_H
86 #include "config.h"
87 #endif
88
89 #include <string.h>
90
91 #include "videomixer2.h"
92 #include "videomixer2pad.h"
93
94 #include <gst/controller/gstcontroller.h>
95
96 #ifdef DISABLE_ORC
97 #define orc_memset memset
98 #else
99 #include <orc/orcfunctions.h>
100 #endif
101
102 GST_DEBUG_CATEGORY_STATIC (gst_videomixer2_debug);
103 #define GST_CAT_DEFAULT gst_videomixer2_debug
104
105 #define GST_VIDEO_MIXER2_GET_LOCK(mix) \
106   (GST_VIDEO_MIXER2(mix)->lock)
107 #define GST_VIDEO_MIXER2_LOCK(mix) \
108   (g_mutex_lock(GST_VIDEO_MIXER2_GET_LOCK (mix)))
109 #define GST_VIDEO_MIXER2_UNLOCK(mix) \
110   (g_mutex_unlock(GST_VIDEO_MIXER2_GET_LOCK (mix)))
111
112 static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
113     GST_PAD_SRC,
114     GST_PAD_ALWAYS,
115     GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("AYUV") ";" GST_VIDEO_CAPS_BGRA ";"
116         GST_VIDEO_CAPS_ARGB ";" GST_VIDEO_CAPS_RGBA ";" GST_VIDEO_CAPS_ABGR ";"
117         GST_VIDEO_CAPS_YUV ("Y444") ";" GST_VIDEO_CAPS_YUV ("Y42B") ";"
118         GST_VIDEO_CAPS_YUV ("YUY2") ";" GST_VIDEO_CAPS_YUV ("UYVY") ";"
119         GST_VIDEO_CAPS_YUV ("YVYU") ";"
120         GST_VIDEO_CAPS_YUV ("I420") ";" GST_VIDEO_CAPS_YUV ("YV12") ";"
121         GST_VIDEO_CAPS_YUV ("Y41B") ";" GST_VIDEO_CAPS_RGB ";"
122         GST_VIDEO_CAPS_BGR ";" GST_VIDEO_CAPS_xRGB ";" GST_VIDEO_CAPS_xBGR ";"
123         GST_VIDEO_CAPS_RGBx ";" GST_VIDEO_CAPS_BGRx)
124     );
125
126 static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink_%d",
127     GST_PAD_SINK,
128     GST_PAD_REQUEST,
129     GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("AYUV") ";" GST_VIDEO_CAPS_BGRA ";"
130         GST_VIDEO_CAPS_ARGB ";" GST_VIDEO_CAPS_RGBA ";" GST_VIDEO_CAPS_ABGR ";"
131         GST_VIDEO_CAPS_YUV ("Y444") ";" GST_VIDEO_CAPS_YUV ("Y42B") ";"
132         GST_VIDEO_CAPS_YUV ("YUY2") ";" GST_VIDEO_CAPS_YUV ("UYVY") ";"
133         GST_VIDEO_CAPS_YUV ("YVYU") ";"
134         GST_VIDEO_CAPS_YUV ("I420") ";" GST_VIDEO_CAPS_YUV ("YV12") ";"
135         GST_VIDEO_CAPS_YUV ("Y41B") ";" GST_VIDEO_CAPS_RGB ";"
136         GST_VIDEO_CAPS_BGR ";" GST_VIDEO_CAPS_xRGB ";" GST_VIDEO_CAPS_xBGR ";"
137         GST_VIDEO_CAPS_RGBx ";" GST_VIDEO_CAPS_BGRx)
138     );
139
140 static void gst_videomixer2_child_proxy_init (gpointer g_iface,
141     gpointer iface_data);
142 static gboolean gst_videomixer2_push_sink_event (GstVideoMixer2 * mix,
143     GstEvent * event);
144 static void gst_videomixer2_release_pad (GstElement * element, GstPad * pad);
145 static void gst_videomixer2_reset_qos (GstVideoMixer2 * mix);
146
147 static void
148 _do_init (GType object_type)
149 {
150   static const GInterfaceInfo child_proxy_info = {
151     (GInterfaceInitFunc) gst_videomixer2_child_proxy_init,
152     NULL,
153     NULL
154   };
155
156   g_type_add_interface_static (object_type, GST_TYPE_CHILD_PROXY,
157       &child_proxy_info);
158 }
159
160 struct _GstVideoMixer2Collect
161 {
162   GstCollectData2 collect;      /* we extend the CollectData */
163
164   GstVideoMixer2Pad *mixpad;
165
166   GstBuffer *queued;            /* buffer for which we don't know the end time yet */
167
168   GstBuffer *buffer;            /* buffer that should be blended now */
169   GstClockTime start_time;
170   GstClockTime end_time;
171 };
172
173 #define DEFAULT_PAD_ZORDER 0
174 #define DEFAULT_PAD_XPOS   0
175 #define DEFAULT_PAD_YPOS   0
176 #define DEFAULT_PAD_ALPHA  1.0
177 enum
178 {
179   PROP_PAD_0,
180   PROP_PAD_ZORDER,
181   PROP_PAD_XPOS,
182   PROP_PAD_YPOS,
183   PROP_PAD_ALPHA
184 };
185
186 G_DEFINE_TYPE (GstVideoMixer2Pad, gst_videomixer2_pad, GST_TYPE_PAD);
187
188 static void
189 gst_videomixer2_collect_free (GstCollectData2 * data)
190 {
191   GstVideoMixer2Collect *cdata = (GstVideoMixer2Collect *) data;
192
193   gst_buffer_replace (&cdata->buffer, NULL);
194 }
195
196 static gboolean
197 gst_videomixer2_update_src_caps (GstVideoMixer2 * mix)
198 {
199   GSList *l;
200   gint best_width = -1, best_height = -1;
201   gdouble best_fps = -1, cur_fps;
202   gint best_fps_n = -1, best_fps_d = -1;
203   gboolean ret = TRUE;
204
205   GST_VIDEO_MIXER2_LOCK (mix);
206
207   for (l = mix->sinkpads; l; l = l->next) {
208     GstVideoMixer2Pad *mpad = l->data;
209     gint this_width, this_height;
210
211     if (mpad->fps_n == 0 || mpad->fps_d == 0 ||
212         mpad->width == 0 || mpad->height == 0)
213       continue;
214
215     this_width = mpad->width + MAX (mpad->xpos, 0);
216     this_height = mpad->height + MAX (mpad->ypos, 0);
217
218     if (best_width < this_width)
219       best_width = this_width;
220     if (best_height < this_height)
221       best_height = this_height;
222
223     if (mpad->fps_d == 0)
224       cur_fps = 0.0;
225     else
226       gst_util_fraction_to_double (mpad->fps_n, mpad->fps_d, &cur_fps);
227     if (best_fps < cur_fps) {
228       best_fps = cur_fps;
229       best_fps_n = mpad->fps_n;
230       best_fps_d = mpad->fps_d;
231     }
232   }
233
234   if (best_fps_n <= 0 && best_fps_d <= 0) {
235     best_fps_n = 25;
236     best_fps_d = 1;
237     best_fps = 25.0;
238   }
239
240   if (best_width > 0 && best_height > 0 && best_fps > 0) {
241     GstCaps *caps, *peercaps;
242     GstStructure *s;
243
244     if (mix->fps_n != best_fps_n || mix->fps_d != best_fps_d) {
245       if (mix->segment.last_stop != -1) {
246         mix->ts_offset = mix->segment.last_stop - mix->segment.start;
247         mix->nframes = 0;
248       }
249     }
250
251     caps = gst_video_format_new_caps (mix->format,
252         best_width, best_height, best_fps_n, best_fps_d,
253         mix->par_n, mix->par_d);
254
255     peercaps = gst_pad_peer_get_caps (mix->srcpad);
256     if (peercaps) {
257       GstCaps *tmp;
258
259       s = gst_caps_get_structure (caps, 0);
260       gst_structure_set (s, "width", GST_TYPE_INT_RANGE, 1, G_MAXINT, "height",
261           GST_TYPE_INT_RANGE, 1, G_MAXINT, "framerate", GST_TYPE_FRACTION_RANGE,
262           0, 1, G_MAXINT, 1, NULL);
263
264       tmp = gst_caps_intersect (caps, peercaps);
265       gst_caps_unref (caps);
266       gst_caps_unref (peercaps);
267       caps = tmp;
268       if (gst_caps_is_empty (caps)) {
269         ret = FALSE;
270         GST_VIDEO_MIXER2_UNLOCK (mix);
271         goto done;
272       }
273
274       gst_caps_truncate (caps);
275       s = gst_caps_get_structure (caps, 0);
276       gst_structure_fixate_field_nearest_int (s, "width", best_width);
277       gst_structure_fixate_field_nearest_int (s, "height", best_height);
278       gst_structure_fixate_field_nearest_fraction (s, "framerate", best_fps_n,
279           best_fps_d);
280
281       gst_structure_get_int (s, "width", &best_width);
282       gst_structure_get_int (s, "height", &best_height);
283       gst_structure_get_fraction (s, "fraction", &best_fps_n, &best_fps_d);
284     }
285
286     mix->fps_n = best_fps_n;
287     mix->fps_d = best_fps_d;
288     mix->width = best_width;
289     mix->height = best_height;
290
291     GST_VIDEO_MIXER2_UNLOCK (mix);
292     ret = gst_pad_set_caps (mix->srcpad, caps);
293     gst_caps_unref (caps);
294   } else {
295     GST_VIDEO_MIXER2_UNLOCK (mix);
296   }
297
298 done:
299   return ret;
300 }
301
302
303 static gboolean
304 gst_videomixer2_pad_sink_setcaps (GstPad * pad, GstCaps * caps)
305 {
306   GstVideoMixer2 *mix;
307   GstVideoMixer2Pad *mixpad;
308   GstVideoFormat fmt;
309   gint width, height;
310   gint fps_n = 0, fps_d = 0;
311   gint par_n = 1, par_d = 1;
312   gboolean ret = FALSE;
313   GstStructure *s;
314
315   GST_INFO_OBJECT (pad, "Setting caps %" GST_PTR_FORMAT, caps);
316
317   mix = GST_VIDEO_MIXER2 (gst_pad_get_parent (pad));
318   mixpad = GST_VIDEO_MIXER2_PAD (pad);
319
320   if (!gst_video_format_parse_caps (caps, &fmt, &width, &height) ||
321       !gst_video_parse_caps_pixel_aspect_ratio (caps, &par_n, &par_d)) {
322     GST_ERROR_OBJECT (pad, "Failed to parse caps");
323     goto beach;
324   }
325
326   s = gst_caps_get_structure (caps, 0);
327   if (gst_structure_has_field (s, "framerate")
328       && !gst_video_parse_caps_framerate (caps, &fps_n, &fps_d)) {
329     GST_ERROR_OBJECT (pad, "Failed to parse caps");
330     goto beach;
331   }
332
333   GST_VIDEO_MIXER2_LOCK (mix);
334   if (mix->format != GST_VIDEO_FORMAT_UNKNOWN) {
335     if (mix->format != fmt || mix->par_n != par_n || mix->par_d != par_d) {
336       GST_ERROR_OBJECT (pad, "Caps not compatible with other pads' caps");
337       GST_VIDEO_MIXER2_UNLOCK (mix);
338       goto beach;
339     }
340   }
341
342   mix->format = fmt;
343   mix->par_n = par_n;
344   mix->par_d = par_d;
345   mixpad->fps_n = fps_n;
346   mixpad->fps_d = fps_d;
347   mixpad->width = width;
348   mixpad->height = height;
349
350   GST_VIDEO_MIXER2_UNLOCK (mix);
351
352   ret = gst_videomixer2_update_src_caps (mix);
353
354 beach:
355   gst_object_unref (mix);
356
357   return ret;
358 }
359
360 static GstCaps *
361 gst_videomixer2_pad_sink_getcaps (GstPad * pad)
362 {
363   GstVideoMixer2 *mix;
364   GstCaps *srccaps;
365   GstStructure *s;
366   gint i, n;
367
368   mix = GST_VIDEO_MIXER2 (gst_pad_get_parent (pad));
369
370   srccaps = gst_pad_get_fixed_caps_func (GST_PAD (mix->srcpad));
371   srccaps = gst_caps_make_writable (srccaps);
372
373   n = gst_caps_get_size (srccaps);
374   for (i = 0; i < n; i++) {
375     s = gst_caps_get_structure (srccaps, i);
376     gst_structure_set (s, "width", GST_TYPE_INT_RANGE, 1, G_MAXINT,
377         "height", GST_TYPE_INT_RANGE, 1, G_MAXINT,
378         "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, G_MAXINT, 1, NULL);
379     if (!gst_structure_has_field (s, "pixel-aspect-ratio"))
380       gst_structure_set (s, "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1,
381           NULL);
382   }
383
384   GST_DEBUG_OBJECT (pad, "Returning %" GST_PTR_FORMAT, srccaps);
385
386   return srccaps;
387 }
388
389 static gboolean
390 gst_videomixer2_pad_sink_acceptcaps (GstPad * pad, GstCaps * caps)
391 {
392   gboolean ret;
393   GstVideoMixer2 *mix;
394   GstCaps *accepted_caps;
395   gint i, n;
396   GstStructure *s;
397
398   mix = GST_VIDEO_MIXER2 (gst_pad_get_parent (pad));
399   GST_DEBUG_OBJECT (pad, "%" GST_PTR_FORMAT, caps);
400
401   accepted_caps = gst_pad_get_fixed_caps_func (GST_PAD (mix->srcpad));
402   accepted_caps = gst_caps_make_writable (accepted_caps);
403   GST_LOG_OBJECT (pad, "src caps %" GST_PTR_FORMAT, accepted_caps);
404
405   n = gst_caps_get_size (accepted_caps);
406   for (i = 0; i < n; i++) {
407     s = gst_caps_get_structure (accepted_caps, i);
408     gst_structure_set (s, "width", GST_TYPE_INT_RANGE, 1, G_MAXINT,
409         "height", GST_TYPE_INT_RANGE, 1, G_MAXINT,
410         "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, G_MAXINT, 1, NULL);
411     if (!gst_structure_has_field (s, "pixel-aspect-ratio"))
412       gst_structure_set (s, "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1,
413           NULL);
414   }
415
416   ret = gst_caps_can_intersect (caps, accepted_caps);
417   GST_INFO_OBJECT (pad, "%saccepted caps %" GST_PTR_FORMAT, (ret ? "" : "not "),
418       caps);
419   GST_INFO_OBJECT (pad, "acceptable caps are %" GST_PTR_FORMAT, accepted_caps);
420
421   gst_caps_unref (accepted_caps);
422
423   gst_object_unref (mix);
424   return ret;
425 }
426
427 static void
428 gst_videomixer2_pad_get_property (GObject * object, guint prop_id,
429     GValue * value, GParamSpec * pspec)
430 {
431   GstVideoMixer2Pad *pad = GST_VIDEO_MIXER2_PAD (object);
432
433   switch (prop_id) {
434     case PROP_PAD_ZORDER:
435       g_value_set_uint (value, pad->zorder);
436       break;
437     case PROP_PAD_XPOS:
438       g_value_set_int (value, pad->xpos);
439       break;
440     case PROP_PAD_YPOS:
441       g_value_set_int (value, pad->ypos);
442       break;
443     case PROP_PAD_ALPHA:
444       g_value_set_double (value, pad->alpha);
445       break;
446     default:
447       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
448       break;
449   }
450 }
451
452 static int
453 pad_zorder_compare (const GstVideoMixer2Pad * pad1,
454     const GstVideoMixer2Pad * pad2)
455 {
456   return pad1->zorder - pad2->zorder;
457 }
458
459 static void
460 gst_videomixer2_pad_set_property (GObject * object, guint prop_id,
461     const GValue * value, GParamSpec * pspec)
462 {
463   GstVideoMixer2Pad *pad = GST_VIDEO_MIXER2_PAD (object);
464   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (gst_pad_get_parent (GST_PAD (pad)));
465
466   switch (prop_id) {
467     case PROP_PAD_ZORDER:
468       GST_VIDEO_MIXER2_LOCK (mix);
469       pad->zorder = g_value_get_uint (value);
470
471       mix->sinkpads = g_slist_sort (mix->sinkpads,
472           (GCompareFunc) pad_zorder_compare);
473       GST_VIDEO_MIXER2_UNLOCK (mix);
474       break;
475     case PROP_PAD_XPOS:
476       pad->xpos = g_value_get_int (value);
477       break;
478     case PROP_PAD_YPOS:
479       pad->ypos = g_value_get_int (value);
480       break;
481     case PROP_PAD_ALPHA:
482       pad->alpha = g_value_get_double (value);
483       break;
484     default:
485       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
486       break;
487   }
488
489   gst_object_unref (mix);
490 }
491
492 static void
493 gst_videomixer2_pad_class_init (GstVideoMixer2PadClass * klass)
494 {
495   GObjectClass *gobject_class = (GObjectClass *) klass;
496
497   gobject_class->set_property = gst_videomixer2_pad_set_property;
498   gobject_class->get_property = gst_videomixer2_pad_get_property;
499
500   g_object_class_install_property (gobject_class, PROP_PAD_ZORDER,
501       g_param_spec_uint ("zorder", "Z-Order", "Z Order of the picture",
502           0, 10000, DEFAULT_PAD_ZORDER,
503           G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
504   g_object_class_install_property (gobject_class, PROP_PAD_XPOS,
505       g_param_spec_int ("xpos", "X Position", "X Position of the picture",
506           G_MININT, G_MAXINT, DEFAULT_PAD_XPOS,
507           G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
508   g_object_class_install_property (gobject_class, PROP_PAD_YPOS,
509       g_param_spec_int ("ypos", "Y Position", "Y Position of the picture",
510           G_MININT, G_MAXINT, DEFAULT_PAD_YPOS,
511           G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
512   g_object_class_install_property (gobject_class, PROP_PAD_ALPHA,
513       g_param_spec_double ("alpha", "Alpha", "Alpha of the picture", 0.0, 1.0,
514           DEFAULT_PAD_ALPHA,
515           G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
516 }
517
518 static void
519 gst_videomixer2_pad_init (GstVideoMixer2Pad * mixerpad)
520 {
521   /* setup some pad functions */
522   gst_pad_set_setcaps_function (GST_PAD (mixerpad),
523       gst_videomixer2_pad_sink_setcaps);
524   gst_pad_set_acceptcaps_function (GST_PAD (mixerpad),
525       GST_DEBUG_FUNCPTR (gst_videomixer2_pad_sink_acceptcaps));
526   gst_pad_set_getcaps_function (GST_PAD (mixerpad),
527       gst_videomixer2_pad_sink_getcaps);
528
529   mixerpad->zorder = DEFAULT_PAD_ZORDER;
530   mixerpad->xpos = DEFAULT_PAD_XPOS;
531   mixerpad->ypos = DEFAULT_PAD_YPOS;
532   mixerpad->alpha = DEFAULT_PAD_ALPHA;
533 }
534
535 /* GstVideoMixer2 */
536 #define DEFAULT_BACKGROUND VIDEO_MIXER2_BACKGROUND_CHECKER
537 enum
538 {
539   PROP_0,
540   PROP_BACKGROUND
541 };
542
543 #define GST_TYPE_VIDEO_MIXER2_BACKGROUND (gst_videomixer2_background_get_type())
544 static GType
545 gst_videomixer2_background_get_type (void)
546 {
547   static GType video_mixer_background_type = 0;
548
549   static const GEnumValue video_mixer_background[] = {
550     {VIDEO_MIXER2_BACKGROUND_CHECKER, "Checker pattern", "checker"},
551     {VIDEO_MIXER2_BACKGROUND_BLACK, "Black", "black"},
552     {VIDEO_MIXER2_BACKGROUND_WHITE, "White", "white"},
553     {VIDEO_MIXER2_BACKGROUND_TRANSPARENT,
554         "Transparent Background to enable further mixing", "transparent"},
555     {0, NULL, NULL},
556   };
557
558   if (!video_mixer_background_type) {
559     video_mixer_background_type =
560         g_enum_register_static ("GstVideoMixer2Background",
561         video_mixer_background);
562   }
563   return video_mixer_background_type;
564 }
565
566
567 GST_BOILERPLATE_FULL (GstVideoMixer2, gst_videomixer2, GstElement,
568     GST_TYPE_ELEMENT, _do_init);
569
570 static void
571 gst_videomixer2_update_qos (GstVideoMixer2 * mix, gdouble proportion,
572     GstClockTimeDiff diff, GstClockTime timestamp)
573 {
574   GST_DEBUG_OBJECT (mix,
575       "Updating QoS: proportion %lf, diff %s%" GST_TIME_FORMAT ", timestamp %"
576       GST_TIME_FORMAT, proportion, (diff < 0) ? "-" : "",
577       GST_TIME_ARGS (ABS (diff)), GST_TIME_ARGS (timestamp));
578
579   GST_OBJECT_LOCK (mix);
580   mix->proportion = proportion;
581   if (G_LIKELY (timestamp != GST_CLOCK_TIME_NONE)) {
582     if (G_UNLIKELY (diff > 0))
583       mix->earliest_time =
584           timestamp + 2 * diff + gst_util_uint64_scale_int (GST_SECOND,
585           mix->fps_d, mix->fps_n);
586     else
587       mix->earliest_time = timestamp + diff;
588   } else {
589     mix->earliest_time = GST_CLOCK_TIME_NONE;
590   }
591   GST_OBJECT_UNLOCK (mix);
592 }
593
594 static void
595 gst_videomixer2_reset_qos (GstVideoMixer2 * mix)
596 {
597   gst_videomixer2_update_qos (mix, 0.5, 0, GST_CLOCK_TIME_NONE);
598   mix->qos_processed = mix->qos_dropped = 0;
599 }
600
601 static void
602 gst_videomixer2_read_qos (GstVideoMixer2 * mix, gdouble * proportion,
603     GstClockTime * time)
604 {
605   GST_OBJECT_LOCK (mix);
606   *proportion = mix->proportion;
607   *time = mix->earliest_time;
608   GST_OBJECT_UNLOCK (mix);
609 }
610
611 static void
612 gst_videomixer2_reset (GstVideoMixer2 * mix)
613 {
614   GSList *l;
615
616   mix->format = GST_VIDEO_FORMAT_UNKNOWN;
617   mix->width = mix->height = 0;
618   mix->fps_n = mix->fps_d = 0;
619   mix->par_n = mix->par_d = 0;
620   mix->ts_offset = 0;
621   mix->nframes = 0;
622
623   gst_segment_init (&mix->segment, GST_FORMAT_TIME);
624   mix->segment.last_stop = -1;
625
626   gst_videomixer2_reset_qos (mix);
627
628   for (l = mix->sinkpads; l; l = l->next) {
629     GstVideoMixer2Pad *p = l->data;
630     GstVideoMixer2Collect *mixcol = p->mixcol;
631
632     gst_buffer_replace (&mixcol->buffer, NULL);
633     mixcol->start_time = -1;
634     mixcol->end_time = -1;
635
636     p->fps_n = p->fps_d = 0;
637     p->width = p->height = 0;
638   }
639
640   mix->newseg_pending = TRUE;
641   mix->flush_stop_pending = FALSE;
642 }
643
644 /*  1 == OK
645  *  0 == need more data
646  * -1 == EOS
647  * -2 == error
648  */
649 static gint
650 gst_videomixer2_fill_queues (GstVideoMixer2 * mix,
651     GstClockTime output_start_time, GstClockTime output_end_time)
652 {
653   GSList *l;
654   gboolean eos = TRUE;
655   gboolean need_more_data = FALSE;
656
657   for (l = mix->sinkpads; l; l = l->next) {
658     GstVideoMixer2Pad *pad = l->data;
659     GstVideoMixer2Collect *mixcol = pad->mixcol;
660     GstSegment *segment = &pad->mixcol->collect.segment;
661     GstBuffer *buf;
662
663     buf = gst_collect_pads2_peek (mix->collect, &mixcol->collect);
664     if (buf) {
665       GstClockTime start_time, end_time;
666
667       start_time = GST_BUFFER_TIMESTAMP (buf);
668       if (start_time == -1) {
669         gst_buffer_unref (buf);
670         GST_ERROR_OBJECT (pad, "Need timestamped buffers!");
671         return -2;
672       }
673
674       /* FIXME: Make all this work with negative rates */
675
676       if ((mixcol->buffer && start_time < GST_BUFFER_TIMESTAMP (mixcol->buffer))
677           || (mixcol->queued
678               && start_time < GST_BUFFER_TIMESTAMP (mixcol->queued))) {
679         GST_WARNING_OBJECT (pad, "Buffer from the past, dropping");
680         gst_buffer_unref (buf);
681         buf = gst_collect_pads2_pop (mix->collect, &mixcol->collect);
682         gst_buffer_unref (buf);
683         need_more_data = TRUE;
684         continue;
685       }
686
687       if (mixcol->queued) {
688         end_time = start_time - GST_BUFFER_TIMESTAMP (mixcol->queued);
689         start_time = GST_BUFFER_TIMESTAMP (mixcol->queued);
690         gst_buffer_unref (buf);
691         buf = gst_buffer_ref (mixcol->queued);
692       } else {
693         end_time = GST_BUFFER_DURATION (buf);
694
695         if (end_time == -1) {
696           mixcol->queued = buf;
697           need_more_data = TRUE;
698           continue;
699         }
700       }
701
702       g_assert (start_time != -1 && end_time != -1);
703       end_time += start_time;   /* convert from duration to position */
704
705       if (mixcol->end_time != -1 && mixcol->end_time > end_time) {
706         GST_WARNING_OBJECT (pad, "Buffer from the past, dropping");
707         if (buf == mixcol->queued) {
708           gst_buffer_unref (buf);
709           gst_buffer_replace (&mixcol->queued, NULL);
710         } else {
711           gst_buffer_unref (buf);
712           buf = gst_collect_pads2_pop (mix->collect, &mixcol->collect);
713           gst_buffer_unref (buf);
714         }
715
716         need_more_data = TRUE;
717         continue;
718       }
719
720       /* Check if it's inside the segment */
721       if (start_time >= segment->stop || end_time < segment->start) {
722         GST_DEBUG_OBJECT (pad, "Buffer outside the segment");
723
724         if (buf == mixcol->queued) {
725           gst_buffer_unref (buf);
726           gst_buffer_replace (&mixcol->queued, NULL);
727         } else {
728           gst_buffer_unref (buf);
729           buf = gst_collect_pads2_pop (mix->collect, &mixcol->collect);
730           gst_buffer_unref (buf);
731         }
732
733         need_more_data = TRUE;
734         continue;
735       }
736
737       /* Clip to segment and convert to running time */
738       start_time = MAX (start_time, segment->start);
739       if (segment->stop != -1)
740         end_time = MIN (end_time, segment->stop);
741       start_time =
742           gst_segment_to_running_time (segment, GST_FORMAT_TIME, start_time);
743       end_time =
744           gst_segment_to_running_time (segment, GST_FORMAT_TIME, end_time);
745       g_assert (start_time != -1 && end_time != -1);
746
747       /* Convert to the output segment rate */
748       if (mix->segment.abs_rate != 1.0) {
749         start_time *= mix->segment.abs_rate;
750         end_time *= mix->segment.abs_rate;
751       }
752
753       if (end_time >= output_start_time && start_time < output_end_time) {
754         GST_DEBUG_OBJECT (pad,
755             "Taking new buffer with start time %" GST_TIME_FORMAT,
756             GST_TIME_ARGS (start_time));
757         gst_buffer_replace (&mixcol->buffer, buf);
758         mixcol->start_time = start_time;
759         mixcol->end_time = end_time;
760
761         if (buf == mixcol->queued) {
762           gst_buffer_unref (buf);
763           gst_buffer_replace (&mixcol->queued, NULL);
764         } else {
765           gst_buffer_unref (buf);
766           buf = gst_collect_pads2_pop (mix->collect, &mixcol->collect);
767           gst_buffer_unref (buf);
768         }
769         eos = FALSE;
770       } else if (start_time >= output_end_time) {
771         GST_DEBUG_OBJECT (pad, "Keeping buffer until %" GST_TIME_FORMAT,
772             GST_TIME_ARGS (start_time));
773         gst_buffer_unref (buf);
774         eos = FALSE;
775       } else {
776         GST_DEBUG_OBJECT (pad, "Too old buffer -- dropping");
777         if (buf == mixcol->queued) {
778           gst_buffer_unref (buf);
779           gst_buffer_replace (&mixcol->queued, NULL);
780         } else {
781           gst_buffer_unref (buf);
782           buf = gst_collect_pads2_pop (mix->collect, &mixcol->collect);
783           gst_buffer_unref (buf);
784         }
785
786         need_more_data = TRUE;
787         continue;
788       }
789     } else {
790       if (mixcol->end_time != -1) {
791         if (mixcol->end_time < output_start_time) {
792           gst_buffer_replace (&mixcol->buffer, NULL);
793           mixcol->start_time = mixcol->end_time = -1;
794           if (!GST_COLLECT_PADS2_STATE_IS_SET (mixcol,
795                   GST_COLLECT_PADS2_STATE_EOS))
796             need_more_data = TRUE;
797         } else {
798           eos = FALSE;
799         }
800       }
801     }
802   }
803
804   if (need_more_data)
805     return 0;
806   if (eos)
807     return -1;
808
809   return 1;
810 }
811
812 static GstFlowReturn
813 gst_videomixer2_blend_buffers (GstVideoMixer2 * mix,
814     GstClockTime output_start_time, GstClockTime output_end_time,
815     GstBuffer ** outbuf)
816 {
817   GSList *l;
818   GstFlowReturn ret;
819   guint outsize;
820   BlendFunction composite;
821
822   outsize = gst_video_format_get_size (mix->format, mix->width, mix->height);
823   ret = gst_pad_alloc_buffer_and_set_caps (mix->srcpad, GST_BUFFER_OFFSET_NONE,
824       outsize, GST_PAD_CAPS (mix->srcpad), outbuf);
825   if (ret != GST_FLOW_OK)
826     return ret;
827
828   GST_BUFFER_TIMESTAMP (*outbuf) = output_start_time;
829   GST_BUFFER_DURATION (*outbuf) = output_end_time - output_start_time;
830
831   /* default to blending */
832   composite = mix->blend;
833   switch (mix->background) {
834     case VIDEO_MIXER2_BACKGROUND_CHECKER:
835       mix->fill_checker (GST_BUFFER_DATA (*outbuf), mix->width, mix->height);
836       break;
837     case VIDEO_MIXER2_BACKGROUND_BLACK:
838       mix->fill_color (GST_BUFFER_DATA (*outbuf), mix->width,
839           mix->height, 16, 128, 128);
840       break;
841     case VIDEO_MIXER2_BACKGROUND_WHITE:
842       mix->fill_color (GST_BUFFER_DATA (*outbuf), mix->width,
843           mix->height, 240, 128, 128);
844       break;
845     case VIDEO_MIXER2_BACKGROUND_TRANSPARENT:
846       orc_memset (GST_BUFFER_DATA (*outbuf), 0,
847           gst_video_format_get_row_stride (mix->format, 0,
848               mix->width) * mix->height);
849       /* use overlay to keep background transparent */
850       composite = mix->overlay;
851       break;
852   }
853
854   for (l = mix->sinkpads; l; l = l->next) {
855     GstVideoMixer2Pad *pad = l->data;
856     GstVideoMixer2Collect *mixcol = pad->mixcol;
857
858     if (mixcol->buffer != NULL) {
859       GstClockTime timestamp;
860       gint64 stream_time;
861       GstSegment *seg;
862
863       seg = &mixcol->collect.segment;
864
865       timestamp = GST_BUFFER_TIMESTAMP (mixcol->buffer);
866
867       stream_time =
868           gst_segment_to_stream_time (seg, GST_FORMAT_TIME, timestamp);
869
870       /* sync object properties on stream time */
871       if (GST_CLOCK_TIME_IS_VALID (stream_time))
872         gst_object_sync_values (G_OBJECT (pad), stream_time);
873
874       composite (GST_BUFFER_DATA (mixcol->buffer),
875           pad->xpos, pad->ypos, pad->width, pad->height, pad->alpha,
876           GST_BUFFER_DATA (*outbuf), mix->width, mix->height);
877     }
878   }
879
880   return GST_FLOW_OK;
881 }
882
883 /* Perform qos calculations before processing the next frame. Returns TRUE if
884  * the frame should be processed, FALSE if the frame can be dropped entirely */
885 static gint64
886 gst_videomixer2_do_qos (GstVideoMixer2 * mix, GstClockTime timestamp)
887 {
888   GstClockTime qostime, earliest_time;
889   gdouble proportion;
890   gint64 jitter;
891
892   /* no timestamp, can't do QoS => process frame */
893   if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (timestamp))) {
894     GST_LOG_OBJECT (mix, "invalid timestamp, can't do QoS, process frame");
895     return -1;
896   }
897
898   /* get latest QoS observation values */
899   gst_videomixer2_read_qos (mix, &proportion, &earliest_time);
900
901   /* skip qos if we have no observation (yet) => process frame */
902   if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (earliest_time))) {
903     GST_LOG_OBJECT (mix, "no observation yet, process frame");
904     return -1;
905   }
906
907   /* qos is done on running time */
908   qostime =
909       gst_segment_to_running_time (&mix->segment, GST_FORMAT_TIME, timestamp);
910
911   /* see how our next timestamp relates to the latest qos timestamp */
912   GST_LOG_OBJECT (mix, "qostime %" GST_TIME_FORMAT ", earliest %"
913       GST_TIME_FORMAT, GST_TIME_ARGS (qostime), GST_TIME_ARGS (earliest_time));
914
915   jitter = GST_CLOCK_DIFF (qostime, earliest_time);
916   if (qostime != GST_CLOCK_TIME_NONE && jitter > 0) {
917     GST_DEBUG_OBJECT (mix, "we are late, drop frame");
918     return jitter;
919   }
920
921   GST_LOG_OBJECT (mix, "process frame");
922   return jitter;
923 }
924
925 static GstFlowReturn
926 gst_videomixer2_collected (GstCollectPads2 * pads, GstVideoMixer2 * mix)
927 {
928   GstFlowReturn ret;
929   GstClockTime output_start_time, output_end_time;
930   GstBuffer *outbuf = NULL;
931   gint res;
932   gint64 jitter;
933
934   /* If we're not negotiated yet... */
935   if (mix->format == GST_VIDEO_FORMAT_UNKNOWN)
936     return GST_FLOW_NOT_NEGOTIATED;
937
938   if (g_atomic_int_compare_and_exchange (&mix->flush_stop_pending, TRUE, FALSE)) {
939     GST_DEBUG_OBJECT (mix, "pending flush stop");
940     gst_pad_push_event (mix->srcpad, gst_event_new_flush_stop ());
941   }
942
943   GST_VIDEO_MIXER2_LOCK (mix);
944
945   if (mix->newseg_pending) {
946     GST_DEBUG_OBJECT (mix, "Sending NEWSEGMENT event");
947     if (!gst_pad_push_event (mix->srcpad, gst_event_new_new_segment_full (FALSE,
948                 mix->segment.rate, mix->segment.applied_rate,
949                 mix->segment.format, mix->segment.start, mix->segment.stop,
950                 mix->segment.time))) {
951       ret = GST_FLOW_ERROR;
952       goto done;
953     }
954     mix->newseg_pending = FALSE;
955   }
956
957   if (mix->segment.last_stop == -1)
958     output_start_time = mix->segment.start;
959   else
960     output_start_time = mix->segment.last_stop;
961
962   if (output_start_time >= mix->segment.stop) {
963     GST_DEBUG_OBJECT (mix, "Segment done");
964     gst_pad_push_event (mix->srcpad, gst_event_new_eos ());
965     ret = GST_FLOW_UNEXPECTED;
966     goto done;
967   }
968
969   output_end_time =
970       mix->ts_offset + gst_util_uint64_scale (mix->nframes + 1,
971       GST_SECOND * mix->fps_d, mix->fps_n);
972   if (mix->segment.stop != -1)
973     output_end_time = MIN (output_end_time, mix->segment.stop);
974
975   res = gst_videomixer2_fill_queues (mix, output_start_time, output_end_time);
976
977   if (res == 0) {
978     GST_DEBUG_OBJECT (mix, "Need more data for decisions");
979     ret = GST_FLOW_OK;
980     goto done;
981   } else if (res == -1) {
982     GST_DEBUG_OBJECT (mix, "All sinkpads are EOS -- forwarding");
983     gst_pad_push_event (mix->srcpad, gst_event_new_eos ());
984     ret = GST_FLOW_UNEXPECTED;
985     goto done;
986   } else if (res == -2) {
987     GST_ERROR_OBJECT (mix, "Error collecting buffers");
988     ret = GST_FLOW_ERROR;
989     goto done;
990   }
991
992   jitter = gst_videomixer2_do_qos (mix, output_start_time);
993   if (jitter <= 0) {
994     ret =
995         gst_videomixer2_blend_buffers (mix, output_start_time,
996         output_end_time, &outbuf);
997     mix->qos_processed++;
998   } else {
999     GstMessage *msg;
1000
1001     mix->qos_dropped++;
1002
1003     /* TODO: live */
1004     msg =
1005         gst_message_new_qos (GST_OBJECT_CAST (mix), FALSE,
1006         gst_segment_to_running_time (&mix->segment, GST_FORMAT_TIME,
1007             output_start_time), gst_segment_to_stream_time (&mix->segment,
1008             GST_FORMAT_TIME, output_start_time), output_start_time,
1009         output_end_time - output_start_time);
1010     gst_message_set_qos_values (msg, jitter, mix->proportion, 1000000);
1011     gst_message_set_qos_stats (msg, GST_FORMAT_BUFFERS, mix->qos_processed,
1012         mix->qos_dropped);
1013     gst_element_post_message (GST_ELEMENT_CAST (mix), msg);
1014
1015     ret = GST_FLOW_OK;
1016   }
1017
1018   gst_segment_set_last_stop (&mix->segment, GST_FORMAT_TIME, output_end_time);
1019   mix->nframes++;
1020
1021   GST_VIDEO_MIXER2_UNLOCK (mix);
1022   if (outbuf) {
1023     GST_LOG_OBJECT (mix,
1024         "Pushing buffer with ts %" GST_TIME_FORMAT " and duration %"
1025         GST_TIME_FORMAT, GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (outbuf)),
1026         GST_TIME_ARGS (GST_BUFFER_DURATION (outbuf)));
1027     ret = gst_pad_push (mix->srcpad, outbuf);
1028   }
1029   GST_VIDEO_MIXER2_LOCK (mix);
1030
1031 done:
1032   GST_VIDEO_MIXER2_UNLOCK (mix);
1033
1034   return ret;
1035 }
1036
1037 static GstCaps *
1038 gst_videomixer2_src_getcaps (GstPad * pad)
1039 {
1040   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (gst_pad_get_parent (pad));
1041   GstCaps *caps;
1042   GstStructure *s;
1043   gint n;
1044
1045   if (mix->format != GST_VIDEO_FORMAT_UNKNOWN) {
1046     caps = gst_caps_copy (GST_PAD_CAPS (mix->srcpad));
1047   } else {
1048     caps = gst_caps_copy (gst_pad_get_pad_template_caps (mix->srcpad));
1049   }
1050
1051   n = gst_caps_get_size (caps) - 1;
1052   for (; n >= 0; n--) {
1053     s = gst_caps_get_structure (caps, n);
1054     gst_structure_set (s, "width", GST_TYPE_INT_RANGE, 1, G_MAXINT,
1055         "height", GST_TYPE_INT_RANGE, 1, G_MAXINT, NULL);
1056     if (mix->fps_d != 0) {
1057       gst_structure_set (s,
1058           "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, G_MAXINT, 1, NULL);
1059     }
1060   }
1061
1062   gst_object_unref (mix);
1063
1064   return caps;
1065 }
1066
1067 static gboolean
1068 gst_videomixer2_query_duration (GstVideoMixer2 * mix, GstQuery * query)
1069 {
1070   gint64 max;
1071   gboolean res;
1072   GstFormat format;
1073   GstIterator *it;
1074   gboolean done;
1075
1076   /* parse format */
1077   gst_query_parse_duration (query, &format, NULL);
1078
1079   max = -1;
1080   res = TRUE;
1081   done = FALSE;
1082
1083   /* Take maximum of all durations */
1084   it = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (mix));
1085   while (!done) {
1086     GstIteratorResult ires;
1087     gpointer item;
1088
1089     ires = gst_iterator_next (it, &item);
1090     switch (ires) {
1091       case GST_ITERATOR_DONE:
1092         done = TRUE;
1093         break;
1094       case GST_ITERATOR_OK:
1095       {
1096         GstPad *pad = GST_PAD_CAST (item);
1097         gint64 duration;
1098
1099         /* ask sink peer for duration */
1100         res &= gst_pad_query_peer_duration (pad, &format, &duration);
1101         /* take max from all valid return values */
1102         if (res) {
1103           /* valid unknown length, stop searching */
1104           if (duration == -1) {
1105             max = duration;
1106             done = TRUE;
1107           }
1108           /* else see if bigger than current max */
1109           else if (duration > max)
1110             max = duration;
1111         }
1112         gst_object_unref (pad);
1113         break;
1114       }
1115       case GST_ITERATOR_RESYNC:
1116         max = -1;
1117         res = TRUE;
1118         gst_iterator_resync (it);
1119         break;
1120       default:
1121         res = FALSE;
1122         done = TRUE;
1123         break;
1124     }
1125   }
1126   gst_iterator_free (it);
1127
1128   if (res) {
1129     /* and store the max */
1130     GST_DEBUG_OBJECT (mix, "Total duration in format %s: %"
1131         GST_TIME_FORMAT, gst_format_get_name (format), GST_TIME_ARGS (max));
1132     gst_query_set_duration (query, format, max);
1133   }
1134
1135   return res;
1136 }
1137
1138 static gboolean
1139 gst_videomixer2_query_latency (GstVideoMixer2 * mix, GstQuery * query)
1140 {
1141   GstClockTime min, max;
1142   gboolean live;
1143   gboolean res;
1144   GstIterator *it;
1145   gboolean done;
1146
1147   res = TRUE;
1148   done = FALSE;
1149   live = FALSE;
1150   min = 0;
1151   max = GST_CLOCK_TIME_NONE;
1152
1153   /* Take maximum of all latency values */
1154   it = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (mix));
1155   while (!done) {
1156     GstIteratorResult ires;
1157     gpointer item;
1158
1159     ires = gst_iterator_next (it, &item);
1160     switch (ires) {
1161       case GST_ITERATOR_DONE:
1162         done = TRUE;
1163         break;
1164       case GST_ITERATOR_OK:
1165       {
1166         GstPad *pad = GST_PAD_CAST (item);
1167         GstQuery *peerquery;
1168         GstClockTime min_cur, max_cur;
1169         gboolean live_cur;
1170
1171         peerquery = gst_query_new_latency ();
1172
1173         /* Ask peer for latency */
1174         res &= gst_pad_peer_query (pad, peerquery);
1175
1176         /* take max from all valid return values */
1177         if (res) {
1178           gst_query_parse_latency (peerquery, &live_cur, &min_cur, &max_cur);
1179
1180           if (min_cur > min)
1181             min = min_cur;
1182
1183           if (max_cur != GST_CLOCK_TIME_NONE &&
1184               ((max != GST_CLOCK_TIME_NONE && max_cur > max) ||
1185                   (max == GST_CLOCK_TIME_NONE)))
1186             max = max_cur;
1187
1188           live = live || live_cur;
1189         }
1190
1191         gst_query_unref (peerquery);
1192         gst_object_unref (pad);
1193         break;
1194       }
1195       case GST_ITERATOR_RESYNC:
1196         live = FALSE;
1197         min = 0;
1198         max = GST_CLOCK_TIME_NONE;
1199         res = TRUE;
1200         gst_iterator_resync (it);
1201         break;
1202       default:
1203         res = FALSE;
1204         done = TRUE;
1205         break;
1206     }
1207   }
1208   gst_iterator_free (it);
1209
1210   if (res) {
1211     /* store the results */
1212     GST_DEBUG_OBJECT (mix, "Calculated total latency: live %s, min %"
1213         GST_TIME_FORMAT ", max %" GST_TIME_FORMAT,
1214         (live ? "yes" : "no"), GST_TIME_ARGS (min), GST_TIME_ARGS (max));
1215     gst_query_set_latency (query, live, min, max);
1216   }
1217
1218   return res;
1219 }
1220
1221 static gboolean
1222 gst_videomixer2_src_query (GstPad * pad, GstQuery * query)
1223 {
1224   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (gst_pad_get_parent (pad));
1225   gboolean res = FALSE;
1226
1227   switch (GST_QUERY_TYPE (query)) {
1228     case GST_QUERY_POSITION:
1229     {
1230       GstFormat format;
1231
1232       gst_query_parse_position (query, &format, NULL);
1233
1234       switch (format) {
1235         case GST_FORMAT_TIME:
1236           gst_query_set_position (query, format,
1237               gst_segment_to_stream_time (&mix->segment, GST_FORMAT_TIME,
1238                   mix->segment.last_stop));
1239           res = TRUE;
1240           break;
1241         default:
1242           break;
1243       }
1244       break;
1245     }
1246     case GST_QUERY_DURATION:
1247       res = gst_videomixer2_query_duration (mix, query);
1248       break;
1249     case GST_QUERY_LATENCY:
1250       res = gst_videomixer2_query_latency (mix, query);
1251       break;
1252     default:
1253       /* FIXME, needs a custom query handler because we have multiple
1254        * sinkpads */
1255       res = FALSE;
1256       gst_query_unref (query);
1257       break;
1258   }
1259
1260   gst_object_unref (mix);
1261   return res;
1262 }
1263
1264 static gboolean
1265 gst_videomixer2_src_event (GstPad * pad, GstEvent * event)
1266 {
1267   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (gst_pad_get_parent (pad));
1268   gboolean result;
1269
1270   switch (GST_EVENT_TYPE (event)) {
1271     case GST_EVENT_QOS:{
1272       GstClockTimeDiff diff;
1273       GstClockTime timestamp;
1274       gdouble proportion;
1275
1276       gst_event_parse_qos (event, &proportion, &diff, &timestamp);
1277
1278       gst_videomixer2_update_qos (mix, proportion, diff, timestamp);
1279
1280       result = gst_videomixer2_push_sink_event (mix, event);
1281       break;
1282     }
1283     case GST_EVENT_SEEK:
1284     {
1285       gdouble rate;
1286       GstFormat fmt;
1287       GstSeekFlags flags;
1288       GstSeekType start_type, stop_type;
1289       gint64 start, stop;
1290       GSList *l;
1291       gdouble abs_rate;
1292
1293       /* parse the seek parameters */
1294       gst_event_parse_seek (event, &rate, &fmt, &flags, &start_type,
1295           &start, &stop_type, &stop);
1296
1297       if (rate <= 0.0) {
1298         GST_ERROR_OBJECT (mix, "Negative rates not supported yet");
1299         result = FALSE;
1300         gst_event_unref (event);
1301         break;
1302       }
1303
1304       GST_DEBUG_OBJECT (mix, "Handling SEEK event");
1305
1306       /* check if we are flushing */
1307       if (flags & GST_SEEK_FLAG_FLUSH) {
1308         /* flushing seek, start flush downstream, the flush will be done
1309          * when all pads received a FLUSH_STOP. */
1310         gst_pad_push_event (mix->srcpad, gst_event_new_flush_start ());
1311
1312         /* make sure we accept nothing anymore and return WRONG_STATE */
1313         gst_collect_pads2_set_flushing (mix->collect, TRUE);
1314       }
1315
1316       /* now wait for the collected to be finished and mark a new
1317        * segment */
1318       GST_COLLECT_PADS2_STREAM_LOCK (mix->collect);
1319
1320       abs_rate = ABS (rate);
1321
1322       GST_VIDEO_MIXER2_LOCK (mix);
1323       for (l = mix->sinkpads; l; l = l->next) {
1324         GstVideoMixer2Pad *p = l->data;
1325
1326         if (flags & GST_SEEK_FLAG_FLUSH) {
1327           gst_buffer_replace (&p->mixcol->buffer, NULL);
1328           p->mixcol->start_time = p->mixcol->end_time = -1;
1329           continue;
1330         }
1331
1332         /* Convert to the output segment rate */
1333         if (mix->segment.abs_rate != abs_rate) {
1334           if (mix->segment.abs_rate != 1.0 && p->mixcol->buffer) {
1335             p->mixcol->start_time /= mix->segment.abs_rate;
1336             p->mixcol->end_time /= mix->segment.abs_rate;
1337           }
1338           if (abs_rate != 1.0 && p->mixcol->buffer) {
1339             p->mixcol->start_time *= abs_rate;
1340             p->mixcol->end_time *= abs_rate;
1341           }
1342         }
1343       }
1344       GST_VIDEO_MIXER2_UNLOCK (mix);
1345
1346       gst_segment_set_seek (&mix->segment, rate, fmt, flags, start_type, start,
1347           stop_type, stop, NULL);
1348       mix->segment.last_stop = -1;
1349       mix->ts_offset = 0;
1350       mix->nframes = 0;
1351       mix->newseg_pending = TRUE;
1352
1353       if (flags & GST_SEEK_FLAG_FLUSH) {
1354         gst_collect_pads2_set_flushing (mix->collect, FALSE);
1355
1356         /* we can't send FLUSH_STOP here since upstream could start pushing data
1357          * after we unlock mix->collect.
1358          * We set flush_stop_pending to TRUE instead and send FLUSH_STOP after
1359          * forwarding the seek upstream or from gst_videomixer_collected,
1360          * whichever happens first.
1361          */
1362         mix->flush_stop_pending = TRUE;
1363       }
1364
1365       GST_COLLECT_PADS2_STREAM_UNLOCK (mix->collect);
1366
1367       gst_videomixer2_reset_qos (mix);
1368
1369       result = gst_videomixer2_push_sink_event (mix, event);
1370
1371       if (g_atomic_int_compare_and_exchange (&mix->flush_stop_pending, TRUE,
1372               FALSE)) {
1373         GST_DEBUG_OBJECT (mix, "pending flush stop");
1374         gst_pad_push_event (mix->srcpad, gst_event_new_flush_stop ());
1375       }
1376
1377       break;
1378     }
1379     case GST_EVENT_NAVIGATION:
1380       /* navigation is rather pointless. */
1381       result = FALSE;
1382       gst_event_unref (event);
1383       break;
1384     default:
1385       /* just forward the rest for now */
1386       result = gst_videomixer2_push_sink_event (mix, event);
1387       break;
1388   }
1389   gst_object_unref (mix);
1390
1391   return result;
1392 }
1393
1394 static gboolean
1395 gst_videomixer2_src_setcaps (GstPad * pad, GstCaps * caps)
1396 {
1397   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (gst_pad_get_parent_element (pad));
1398   gboolean ret = FALSE;
1399   GstVideoFormat fmt;
1400   gint width, height;
1401   gint fps_n, fps_d;
1402   gint par_n, par_d;
1403
1404   GST_INFO_OBJECT (pad, "set src caps: %" GST_PTR_FORMAT, caps);
1405
1406   mix->blend = NULL;
1407   mix->overlay = NULL;
1408   mix->fill_checker = NULL;
1409   mix->fill_color = NULL;
1410
1411   if (!gst_video_format_parse_caps (caps, &fmt, &width, &height) ||
1412       !gst_video_parse_caps_framerate (caps, &fps_n, &fps_d) ||
1413       !gst_video_parse_caps_pixel_aspect_ratio (caps, &par_n, &par_d))
1414     goto done;
1415
1416   GST_VIDEO_MIXER2_LOCK (mix);
1417
1418   if (mix->fps_n != fps_n || mix->fps_d != fps_d) {
1419     if (mix->segment.last_stop != -1) {
1420       mix->ts_offset = mix->segment.last_stop - mix->segment.start;
1421       mix->nframes = 0;
1422     }
1423     gst_videomixer2_reset_qos (mix);
1424   }
1425
1426   mix->format = fmt;
1427   mix->width = width;
1428   mix->height = height;
1429   mix->fps_n = fps_n;
1430   mix->fps_d = fps_d;
1431   mix->par_n = par_n;
1432   mix->par_d = par_d;
1433
1434   switch (mix->format) {
1435     case GST_VIDEO_FORMAT_AYUV:
1436       mix->blend = gst_video_mixer_blend_ayuv;
1437       mix->overlay = gst_video_mixer_overlay_ayuv;
1438       mix->fill_checker = gst_video_mixer_fill_checker_ayuv;
1439       mix->fill_color = gst_video_mixer_fill_color_ayuv;
1440       ret = TRUE;
1441       break;
1442     case GST_VIDEO_FORMAT_ARGB:
1443       mix->blend = gst_video_mixer_blend_argb;
1444       mix->overlay = gst_video_mixer_overlay_argb;
1445       mix->fill_checker = gst_video_mixer_fill_checker_argb;
1446       mix->fill_color = gst_video_mixer_fill_color_argb;
1447       ret = TRUE;
1448       break;
1449     case GST_VIDEO_FORMAT_BGRA:
1450       mix->blend = gst_video_mixer_blend_bgra;
1451       mix->overlay = gst_video_mixer_overlay_bgra;
1452       mix->fill_checker = gst_video_mixer_fill_checker_bgra;
1453       mix->fill_color = gst_video_mixer_fill_color_bgra;
1454       ret = TRUE;
1455       break;
1456     case GST_VIDEO_FORMAT_ABGR:
1457       mix->blend = gst_video_mixer_blend_abgr;
1458       mix->overlay = gst_video_mixer_overlay_abgr;
1459       mix->fill_checker = gst_video_mixer_fill_checker_abgr;
1460       mix->fill_color = gst_video_mixer_fill_color_abgr;
1461       ret = TRUE;
1462       break;
1463     case GST_VIDEO_FORMAT_RGBA:
1464       mix->blend = gst_video_mixer_blend_rgba;
1465       mix->overlay = gst_video_mixer_overlay_rgba;
1466       mix->fill_checker = gst_video_mixer_fill_checker_rgba;
1467       mix->fill_color = gst_video_mixer_fill_color_rgba;
1468       ret = TRUE;
1469       break;
1470     case GST_VIDEO_FORMAT_Y444:
1471       mix->blend = gst_video_mixer_blend_y444;
1472       mix->overlay = mix->blend;
1473       mix->fill_checker = gst_video_mixer_fill_checker_y444;
1474       mix->fill_color = gst_video_mixer_fill_color_y444;
1475       ret = TRUE;
1476       break;
1477     case GST_VIDEO_FORMAT_Y42B:
1478       mix->blend = gst_video_mixer_blend_y42b;
1479       mix->overlay = mix->blend;
1480       mix->fill_checker = gst_video_mixer_fill_checker_y42b;
1481       mix->fill_color = gst_video_mixer_fill_color_y42b;
1482       ret = TRUE;
1483       break;
1484     case GST_VIDEO_FORMAT_YUY2:
1485       mix->blend = gst_video_mixer_blend_yuy2;
1486       mix->overlay = mix->blend;
1487       mix->fill_checker = gst_video_mixer_fill_checker_yuy2;
1488       mix->fill_color = gst_video_mixer_fill_color_yuy2;
1489       ret = TRUE;
1490       break;
1491     case GST_VIDEO_FORMAT_UYVY:
1492       mix->blend = gst_video_mixer_blend_uyvy;
1493       mix->overlay = mix->blend;
1494       mix->fill_checker = gst_video_mixer_fill_checker_uyvy;
1495       mix->fill_color = gst_video_mixer_fill_color_uyvy;
1496       ret = TRUE;
1497       break;
1498     case GST_VIDEO_FORMAT_YVYU:
1499       mix->blend = gst_video_mixer_blend_yvyu;
1500       mix->overlay = mix->blend;
1501       mix->fill_checker = gst_video_mixer_fill_checker_yvyu;
1502       mix->fill_color = gst_video_mixer_fill_color_yvyu;
1503       ret = TRUE;
1504       break;
1505     case GST_VIDEO_FORMAT_I420:
1506       mix->blend = gst_video_mixer_blend_i420;
1507       mix->overlay = mix->blend;
1508       mix->fill_checker = gst_video_mixer_fill_checker_i420;
1509       mix->fill_color = gst_video_mixer_fill_color_i420;
1510       ret = TRUE;
1511       break;
1512     case GST_VIDEO_FORMAT_YV12:
1513       mix->blend = gst_video_mixer_blend_yv12;
1514       mix->overlay = mix->blend;
1515       mix->fill_checker = gst_video_mixer_fill_checker_yv12;
1516       mix->fill_color = gst_video_mixer_fill_color_yv12;
1517       ret = TRUE;
1518       break;
1519     case GST_VIDEO_FORMAT_Y41B:
1520       mix->blend = gst_video_mixer_blend_y41b;
1521       mix->overlay = mix->blend;
1522       mix->fill_checker = gst_video_mixer_fill_checker_y41b;
1523       mix->fill_color = gst_video_mixer_fill_color_y41b;
1524       ret = TRUE;
1525       break;
1526     case GST_VIDEO_FORMAT_RGB:
1527       mix->blend = gst_video_mixer_blend_rgb;
1528       mix->overlay = mix->blend;
1529       mix->fill_checker = gst_video_mixer_fill_checker_rgb;
1530       mix->fill_color = gst_video_mixer_fill_color_rgb;
1531       ret = TRUE;
1532       break;
1533     case GST_VIDEO_FORMAT_BGR:
1534       mix->blend = gst_video_mixer_blend_bgr;
1535       mix->overlay = mix->blend;
1536       mix->fill_checker = gst_video_mixer_fill_checker_bgr;
1537       mix->fill_color = gst_video_mixer_fill_color_bgr;
1538       ret = TRUE;
1539       break;
1540     case GST_VIDEO_FORMAT_xRGB:
1541       mix->blend = gst_video_mixer_blend_xrgb;
1542       mix->overlay = mix->blend;
1543       mix->fill_checker = gst_video_mixer_fill_checker_xrgb;
1544       mix->fill_color = gst_video_mixer_fill_color_xrgb;
1545       ret = TRUE;
1546       break;
1547     case GST_VIDEO_FORMAT_xBGR:
1548       mix->blend = gst_video_mixer_blend_xbgr;
1549       mix->overlay = mix->blend;
1550       mix->fill_checker = gst_video_mixer_fill_checker_xbgr;
1551       mix->fill_color = gst_video_mixer_fill_color_xbgr;
1552       ret = TRUE;
1553       break;
1554     case GST_VIDEO_FORMAT_RGBx:
1555       mix->blend = gst_video_mixer_blend_rgbx;
1556       mix->overlay = mix->blend;
1557       mix->fill_checker = gst_video_mixer_fill_checker_rgbx;
1558       mix->fill_color = gst_video_mixer_fill_color_rgbx;
1559       ret = TRUE;
1560       break;
1561     case GST_VIDEO_FORMAT_BGRx:
1562       mix->blend = gst_video_mixer_blend_bgrx;
1563       mix->overlay = mix->blend;
1564       mix->fill_checker = gst_video_mixer_fill_checker_bgrx;
1565       mix->fill_color = gst_video_mixer_fill_color_bgrx;
1566       ret = TRUE;
1567       break;
1568     default:
1569       break;
1570   }
1571   GST_VIDEO_MIXER2_UNLOCK (mix);
1572
1573 done:
1574   gst_object_unref (mix);
1575
1576   return ret;
1577 }
1578
1579 static GstFlowReturn
1580 gst_videomixer2_sink_clip (GstCollectPads2 * pads,
1581     GstCollectData2 * data, GstBuffer * buf, GstBuffer ** outbuf,
1582     GstVideoMixer2 * mix)
1583 {
1584   GstVideoMixer2Pad *pad = GST_VIDEO_MIXER2_PAD (data->pad);
1585   GstVideoMixer2Collect *mixcol = pad->mixcol;
1586   GstClockTime start_time, end_time;
1587
1588   start_time = GST_BUFFER_TIMESTAMP (buf);
1589   if (start_time == -1) {
1590     GST_ERROR_OBJECT (pad, "Timestamped buffers required!");
1591     gst_buffer_unref (buf);
1592     return GST_FLOW_ERROR;
1593   }
1594
1595   end_time = GST_BUFFER_DURATION (buf);
1596   if (end_time == -1)
1597     end_time = gst_util_uint64_scale_int (GST_SECOND, pad->fps_d, pad->fps_n);
1598   if (end_time == -1) {
1599     *outbuf = buf;
1600     return GST_FLOW_OK;
1601   }
1602
1603   start_time = MAX (start_time, mixcol->collect.segment.start);
1604   start_time =
1605       gst_segment_to_running_time (&mixcol->collect.segment,
1606       GST_FORMAT_TIME, start_time);
1607
1608   end_time += GST_BUFFER_TIMESTAMP (buf);
1609   if (mixcol->collect.segment.stop != -1)
1610     end_time = MIN (end_time, mixcol->collect.segment.stop);
1611   end_time =
1612       gst_segment_to_running_time (&mixcol->collect.segment,
1613       GST_FORMAT_TIME, end_time);
1614
1615   /* Convert to the output segment rate */
1616   if (mix->segment.abs_rate != 1.0) {
1617     start_time *= mix->segment.abs_rate;
1618     end_time *= mix->segment.abs_rate;
1619   }
1620
1621   if (mixcol->buffer != NULL && end_time < mixcol->end_time) {
1622     gst_buffer_unref (buf);
1623     *outbuf = NULL;
1624     return GST_FLOW_OK;
1625   }
1626
1627   *outbuf = buf;
1628   return GST_FLOW_OK;
1629 }
1630
1631 static gboolean
1632 gst_videomixer2_sink_event (GstCollectPads2 * pads, GstCollectData2 * cdata,
1633     GstEvent * event, GstVideoMixer2 * mix)
1634 {
1635   GstVideoMixer2Pad *pad = GST_VIDEO_MIXER2_PAD (cdata->pad);
1636   gboolean ret = TRUE;
1637
1638   GST_DEBUG_OBJECT (pad, "Got %s event on pad %s:%s",
1639       GST_EVENT_TYPE_NAME (event), GST_DEBUG_PAD_NAME (pad));
1640
1641   /* return FALSE => event will be forwarded */
1642   switch (GST_EVENT_TYPE (event)) {
1643     case GST_EVENT_NEWSEGMENT:{
1644       GstFormat fmt;
1645       gst_event_parse_new_segment (event, NULL, NULL, &fmt, NULL, NULL, NULL);
1646
1647       g_assert (fmt == GST_FORMAT_TIME);
1648       /* eat NEWSEGMENT events, collectpads2 unrefs the event */
1649       ret = FALSE;
1650       break;
1651     }
1652     case GST_EVENT_FLUSH_STOP:
1653       mix->newseg_pending = TRUE;
1654       mix->flush_stop_pending = FALSE;
1655       gst_videomixer2_reset_qos (mix);
1656       gst_buffer_replace (&pad->mixcol->buffer, NULL);
1657       pad->mixcol->start_time = -1;
1658       pad->mixcol->end_time = -1;
1659
1660       gst_segment_init (&mix->segment, GST_FORMAT_TIME);
1661       mix->segment.last_stop = -1;
1662       mix->ts_offset = 0;
1663       mix->nframes = 0;
1664
1665       gst_pad_push_event (mix->srcpad, event);
1666       break;
1667     default:
1668       gst_pad_push_event (mix->srcpad, event);
1669       break;
1670   }
1671
1672   return ret;
1673 }
1674
1675 static gboolean
1676 forward_event_func (GstPad * pad, GValue * ret, GstEvent * event)
1677 {
1678   gst_event_ref (event);
1679   GST_LOG_OBJECT (pad, "About to send event %s", GST_EVENT_TYPE_NAME (event));
1680   if (!gst_pad_push_event (pad, event)) {
1681     g_value_set_boolean (ret, FALSE);
1682     GST_WARNING_OBJECT (pad, "Sending event  %p (%s) failed.",
1683         event, GST_EVENT_TYPE_NAME (event));
1684   } else {
1685     GST_LOG_OBJECT (pad, "Sent event  %p (%s).",
1686         event, GST_EVENT_TYPE_NAME (event));
1687   }
1688   gst_object_unref (pad);
1689   return TRUE;
1690 }
1691
1692 static gboolean
1693 gst_videomixer2_push_sink_event (GstVideoMixer2 * mix, GstEvent * event)
1694 {
1695   GstIterator *it;
1696   GValue vret = { 0 };
1697
1698   GST_LOG_OBJECT (mix, "Forwarding event %p (%s)", event,
1699       GST_EVENT_TYPE_NAME (event));
1700
1701   g_value_init (&vret, G_TYPE_BOOLEAN);
1702   g_value_set_boolean (&vret, TRUE);
1703   it = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (mix));
1704   gst_iterator_fold (it, (GstIteratorFoldFunction) forward_event_func, &vret,
1705       event);
1706   gst_iterator_free (it);
1707   gst_event_unref (event);
1708
1709   return g_value_get_boolean (&vret);
1710 }
1711
1712 /* GstElement vmethods */
1713 static GstStateChangeReturn
1714 gst_videomixer2_change_state (GstElement * element, GstStateChange transition)
1715 {
1716   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (element);
1717   GstStateChangeReturn ret;
1718
1719   switch (transition) {
1720     case GST_STATE_CHANGE_READY_TO_PAUSED:
1721       GST_LOG_OBJECT (mix, "starting collectpads");
1722       gst_collect_pads2_start (mix->collect);
1723       break;
1724     case GST_STATE_CHANGE_PAUSED_TO_READY:
1725       GST_LOG_OBJECT (mix, "stopping collectpads");
1726       gst_collect_pads2_stop (mix->collect);
1727       break;
1728     default:
1729       break;
1730   }
1731
1732   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1733
1734   switch (transition) {
1735     case GST_STATE_CHANGE_PAUSED_TO_READY:
1736       gst_videomixer2_reset (mix);
1737       break;
1738     default:
1739       break;
1740   }
1741
1742   return ret;
1743 }
1744
1745 static GstPad *
1746 gst_videomixer2_request_new_pad (GstElement * element,
1747     GstPadTemplate * templ, const gchar * req_name)
1748 {
1749   GstVideoMixer2 *mix;
1750   GstVideoMixer2Pad *mixpad;
1751   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
1752
1753   mix = GST_VIDEO_MIXER2 (element);
1754
1755   if (templ == gst_element_class_get_pad_template (klass, "sink_%d")) {
1756     gint serial = 0;
1757     gchar *name = NULL;
1758     GstVideoMixer2Collect *mixcol = NULL;
1759
1760     GST_VIDEO_MIXER2_LOCK (mix);
1761     if (req_name == NULL || strlen (req_name) < 6
1762         || !g_str_has_prefix (req_name, "sink_")) {
1763       /* no name given when requesting the pad, use next available int */
1764       serial = mix->next_sinkpad++;
1765     } else {
1766       /* parse serial number from requested padname */
1767       serial = g_ascii_strtoull (&req_name[5], NULL, 10);
1768       if (serial >= mix->next_sinkpad)
1769         mix->next_sinkpad = serial + 1;
1770     }
1771     /* create new pad with the name */
1772     name = g_strdup_printf ("sink_%d", serial);
1773     mixpad = g_object_new (GST_TYPE_VIDEO_MIXER2_PAD, "name", name, "direction",
1774         templ->direction, "template", templ, NULL);
1775     g_free (name);
1776
1777     mixpad->zorder = mix->numpads;
1778     mixpad->xpos = DEFAULT_PAD_XPOS;
1779     mixpad->ypos = DEFAULT_PAD_YPOS;
1780     mixpad->alpha = DEFAULT_PAD_ALPHA;
1781
1782     mixcol = (GstVideoMixer2Collect *)
1783         gst_collect_pads2_add_pad_full (mix->collect, GST_PAD (mixpad),
1784         sizeof (GstVideoMixer2Collect),
1785         (GstCollectData2DestroyNotify) gst_videomixer2_collect_free, TRUE);
1786
1787     /* Keep track of each other */
1788     mixcol->mixpad = mixpad;
1789     mixpad->mixcol = mixcol;
1790
1791     mixcol->start_time = -1;
1792     mixcol->end_time = -1;
1793
1794     /* Keep an internal list of mixpads for zordering */
1795     mix->sinkpads = g_slist_append (mix->sinkpads, mixpad);
1796     mix->numpads++;
1797     GST_VIDEO_MIXER2_UNLOCK (mix);
1798   } else {
1799     return NULL;
1800   }
1801
1802   GST_DEBUG_OBJECT (element, "Adding pad %s", GST_PAD_NAME (mixpad));
1803
1804   /* add the pad to the element */
1805   gst_element_add_pad (element, GST_PAD (mixpad));
1806   gst_child_proxy_child_added (GST_OBJECT (mix), GST_OBJECT (mixpad));
1807
1808   return GST_PAD (mixpad);
1809 }
1810
1811 static void
1812 gst_videomixer2_release_pad (GstElement * element, GstPad * pad)
1813 {
1814   GstVideoMixer2 *mix = NULL;
1815   GstVideoMixer2Pad *mixpad;
1816   gboolean update_caps;
1817
1818   mix = GST_VIDEO_MIXER2 (element);
1819
1820   GST_VIDEO_MIXER2_LOCK (mix);
1821   if (G_UNLIKELY (g_slist_find (mix->sinkpads, pad) == NULL)) {
1822     g_warning ("Unknown pad %s", GST_PAD_NAME (pad));
1823     goto error;
1824   }
1825
1826   mixpad = GST_VIDEO_MIXER2_PAD (pad);
1827
1828   mix->sinkpads = g_slist_remove (mix->sinkpads, pad);
1829   gst_child_proxy_child_removed (GST_OBJECT (mix), GST_OBJECT (mixpad));
1830   mix->numpads--;
1831
1832   update_caps = mix->format != GST_VIDEO_FORMAT_UNKNOWN;
1833   GST_VIDEO_MIXER2_UNLOCK (mix);
1834
1835   gst_collect_pads2_remove_pad (mix->collect, pad);
1836
1837   if (update_caps)
1838     gst_videomixer2_update_src_caps (mix);
1839
1840   gst_element_remove_pad (element, pad);
1841   return;
1842 error:
1843   GST_VIDEO_MIXER2_UNLOCK (mix);
1844 }
1845
1846 /* GObject vmethods */
1847 static void
1848 gst_videomixer2_finalize (GObject * o)
1849 {
1850   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (o);
1851
1852   gst_object_unref (mix->collect);
1853   g_mutex_free (mix->lock);
1854
1855   G_OBJECT_CLASS (parent_class)->finalize (o);
1856 }
1857
1858 static void
1859 gst_videomixer2_get_property (GObject * object,
1860     guint prop_id, GValue * value, GParamSpec * pspec)
1861 {
1862   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (object);
1863
1864   switch (prop_id) {
1865     case PROP_BACKGROUND:
1866       g_value_set_enum (value, mix->background);
1867       break;
1868     default:
1869       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1870       break;
1871   }
1872 }
1873
1874 static void
1875 gst_videomixer2_set_property (GObject * object,
1876     guint prop_id, const GValue * value, GParamSpec * pspec)
1877 {
1878   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (object);
1879
1880   switch (prop_id) {
1881     case PROP_BACKGROUND:
1882       mix->background = g_value_get_enum (value);
1883       break;
1884     default:
1885       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1886       break;
1887   }
1888 }
1889
1890 /* GstChildProxy implementation */
1891 static GstObject *
1892 gst_videomixer2_child_proxy_get_child_by_index (GstChildProxy * child_proxy,
1893     guint index)
1894 {
1895   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (child_proxy);
1896   GstObject *obj;
1897
1898   GST_VIDEO_MIXER2_LOCK (mix);
1899   if ((obj = g_slist_nth_data (mix->sinkpads, index)))
1900     gst_object_ref (obj);
1901   GST_VIDEO_MIXER2_UNLOCK (mix);
1902   return obj;
1903 }
1904
1905 static guint
1906 gst_videomixer2_child_proxy_get_children_count (GstChildProxy * child_proxy)
1907 {
1908   guint count = 0;
1909   GstVideoMixer2 *mix = GST_VIDEO_MIXER2 (child_proxy);
1910
1911   GST_VIDEO_MIXER2_LOCK (mix);
1912   count = mix->numpads;
1913   GST_VIDEO_MIXER2_UNLOCK (mix);
1914   GST_INFO_OBJECT (mix, "Children Count: %d", count);
1915   return count;
1916 }
1917
1918 static void
1919 gst_videomixer2_child_proxy_init (gpointer g_iface, gpointer iface_data)
1920 {
1921   GstChildProxyInterface *iface = g_iface;
1922
1923   GST_INFO ("intializing child proxy interface");
1924   iface->get_child_by_index = gst_videomixer2_child_proxy_get_child_by_index;
1925   iface->get_children_count = gst_videomixer2_child_proxy_get_children_count;
1926 }
1927
1928 /* GObject boilerplate */
1929 static void
1930 gst_videomixer2_base_init (gpointer g_class)
1931 {
1932   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
1933
1934   gst_element_class_add_static_pad_template (element_class, &src_factory);
1935   gst_element_class_add_static_pad_template (element_class, &sink_factory);
1936
1937   gst_element_class_set_details_simple (element_class, "Video mixer 2",
1938       "Filter/Editor/Video",
1939       "Mix multiple video streams", "Wim Taymans <wim@fluendo.com>, "
1940       "Sebastian Dröge <sebastian.droege@collabora.co.uk>");
1941 }
1942
1943 static void
1944 gst_videomixer2_class_init (GstVideoMixer2Class * klass)
1945 {
1946   GObjectClass *gobject_class = (GObjectClass *) klass;
1947   GstElementClass *gstelement_class = (GstElementClass *) klass;
1948
1949   gobject_class->finalize = gst_videomixer2_finalize;
1950
1951   gobject_class->get_property = gst_videomixer2_get_property;
1952   gobject_class->set_property = gst_videomixer2_set_property;
1953
1954   g_object_class_install_property (gobject_class, PROP_BACKGROUND,
1955       g_param_spec_enum ("background", "Background", "Background type",
1956           GST_TYPE_VIDEO_MIXER2_BACKGROUND,
1957           DEFAULT_BACKGROUND, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1958
1959   gstelement_class->request_new_pad =
1960       GST_DEBUG_FUNCPTR (gst_videomixer2_request_new_pad);
1961   gstelement_class->release_pad =
1962       GST_DEBUG_FUNCPTR (gst_videomixer2_release_pad);
1963   gstelement_class->change_state =
1964       GST_DEBUG_FUNCPTR (gst_videomixer2_change_state);
1965
1966   /* Register the pad class */
1967   g_type_class_ref (GST_TYPE_VIDEO_MIXER2_PAD);
1968 }
1969
1970 static void
1971 gst_videomixer2_init (GstVideoMixer2 * mix, GstVideoMixer2Class * g_class)
1972 {
1973   GstElementClass *klass = GST_ELEMENT_GET_CLASS (mix);
1974
1975   mix->srcpad =
1976       gst_pad_new_from_template (gst_element_class_get_pad_template (klass,
1977           "src"), "src");
1978   gst_pad_set_getcaps_function (GST_PAD (mix->srcpad),
1979       GST_DEBUG_FUNCPTR (gst_videomixer2_src_getcaps));
1980   gst_pad_set_setcaps_function (GST_PAD (mix->srcpad),
1981       GST_DEBUG_FUNCPTR (gst_videomixer2_src_setcaps));
1982   gst_pad_set_query_function (GST_PAD (mix->srcpad),
1983       GST_DEBUG_FUNCPTR (gst_videomixer2_src_query));
1984   gst_pad_set_event_function (GST_PAD (mix->srcpad),
1985       GST_DEBUG_FUNCPTR (gst_videomixer2_src_event));
1986   gst_element_add_pad (GST_ELEMENT (mix), mix->srcpad);
1987
1988   mix->collect = gst_collect_pads2_new ();
1989   mix->background = DEFAULT_BACKGROUND;
1990
1991   gst_collect_pads2_set_function (mix->collect,
1992       (GstCollectPads2Function) GST_DEBUG_FUNCPTR (gst_videomixer2_collected),
1993       mix);
1994   gst_collect_pads2_set_event_function (mix->collect,
1995       (GstCollectPads2EventFunction) gst_videomixer2_sink_event, mix);
1996   gst_collect_pads2_set_clip_function (mix->collect,
1997       (GstCollectPads2ClipFunction) gst_videomixer2_sink_clip, mix);
1998
1999   mix->lock = g_mutex_new ();
2000   /* initialize variables */
2001   gst_videomixer2_reset (mix);
2002 }
2003
2004 /* Element registration */
2005 gboolean
2006 gst_videomixer2_register (GstPlugin * plugin)
2007 {
2008   GST_DEBUG_CATEGORY_INIT (gst_videomixer2_debug, "videomixer2", 0,
2009       "video mixer 2");
2010
2011   return gst_element_register (plugin, "videomixer2", GST_RANK_SECONDARY,
2012       GST_TYPE_VIDEO_MIXER2);
2013 }