Fix typos in comments and docs
[platform/upstream/gstreamer.git] / plugins / elements / gsttee.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *               2000,2001,2002,2003,2004,2005 Wim Taymans <wim@fluendo.com>
4  *               2007 Wim Taymans <wim.taymans@gmail.com>
5  *
6  * gsttee.c: Tee element, one in N out
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 /**
25  * SECTION:element-tee
26  * @title: tee
27  * @see_also: #GstIdentity
28  *
29  * Split data to multiple pads. Branching the data flow is useful when e.g.
30  * capturing a video where the video is shown on the screen and also encoded and
31  * written to a file. Another example is playing music and hooking up a
32  * visualisation module.
33  *
34  * One needs to use separate queue elements (or a multiqueue) in each branch to
35  * provide separate threads for each branch. Otherwise a blocked dataflow in one
36  * branch would stall the other branches.
37  *
38  * ## Example launch line
39  * |[
40  * gst-launch-1.0 filesrc location=song.ogg ! decodebin ! tee name=t ! queue ! audioconvert ! audioresample ! autoaudiosink t. ! queue ! audioconvert ! goom ! videoconvert ! autovideosink
41  * ]|
42  *
43  * Play song.ogg audio file which must be in the current working directory
44  * and render visualisations using the goom element (this can be easier done
45  * using the playbin element, this is just an example pipeline).
46  */
47
48 #ifdef HAVE_CONFIG_H
49 #  include "config.h"
50 #endif
51
52 #include "gsttee.h"
53 #include "gst/glib-compat-private.h"
54
55 #include <string.h>
56 #include <stdio.h>
57
58 static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
59     GST_PAD_SINK,
60     GST_PAD_ALWAYS,
61     GST_STATIC_CAPS_ANY);
62
63 GST_DEBUG_CATEGORY_STATIC (gst_tee_debug);
64 #define GST_CAT_DEFAULT gst_tee_debug
65
66 #define GST_TYPE_TEE_PULL_MODE (gst_tee_pull_mode_get_type())
67 static GType
68 gst_tee_pull_mode_get_type (void)
69 {
70   static GType type = 0;
71   static const GEnumValue data[] = {
72     {GST_TEE_PULL_MODE_NEVER, "Never activate in pull mode", "never"},
73     {GST_TEE_PULL_MODE_SINGLE, "Only one src pad can be active in pull mode",
74         "single"},
75     {0, NULL, NULL},
76   };
77
78   if (!type) {
79     type = g_enum_register_static ("GstTeePullMode", data);
80   }
81   return type;
82 }
83
84 #define DEFAULT_PROP_NUM_SRC_PADS       0
85 #define DEFAULT_PROP_HAS_CHAIN          TRUE
86 #define DEFAULT_PROP_SILENT             TRUE
87 #define DEFAULT_PROP_LAST_MESSAGE       NULL
88 #define DEFAULT_PULL_MODE               GST_TEE_PULL_MODE_NEVER
89 #define DEFAULT_PROP_ALLOW_NOT_LINKED   FALSE
90
91 enum
92 {
93   PROP_0,
94   PROP_NUM_SRC_PADS,
95   PROP_HAS_CHAIN,
96   PROP_SILENT,
97   PROP_LAST_MESSAGE,
98   PROP_PULL_MODE,
99   PROP_ALLOC_PAD,
100   PROP_ALLOW_NOT_LINKED,
101 };
102
103 static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src_%u",
104     GST_PAD_SRC,
105     GST_PAD_REQUEST,
106     GST_STATIC_CAPS_ANY);
107
108 #define _do_init \
109     GST_DEBUG_CATEGORY_INIT (gst_tee_debug, "tee", 0, "tee element");
110 #define gst_tee_parent_class parent_class
111 G_DEFINE_TYPE_WITH_CODE (GstTee, gst_tee, GST_TYPE_ELEMENT, _do_init);
112
113 static GParamSpec *pspec_last_message = NULL;
114 static GParamSpec *pspec_alloc_pad = NULL;
115
116 GType gst_tee_pad_get_type (void);
117
118 #define GST_TYPE_TEE_PAD \
119   (gst_tee_pad_get_type())
120 #define GST_TEE_PAD(obj) \
121   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_TEE_PAD, GstTeePad))
122 #define GST_TEE_PAD_CLASS(klass) \
123   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_TEE_PAD, GstTeePadClass))
124 #define GST_IS_TEE_PAD(obj) \
125   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_TEE_PAD))
126 #define GST_IS_TEE_PAD_CLASS(klass) \
127   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_TEE_PAD))
128 #define GST_TEE_PAD_CAST(obj) \
129   ((GstTeePad *)(obj))
130
131 typedef struct _GstTeePad GstTeePad;
132 typedef struct _GstTeePadClass GstTeePadClass;
133
134 struct _GstTeePad
135 {
136   GstPad parent;
137
138   guint index;
139   gboolean pushed;
140   GstFlowReturn result;
141   gboolean removed;
142 };
143
144 struct _GstTeePadClass
145 {
146   GstPadClass parent;
147 };
148
149 G_DEFINE_TYPE (GstTeePad, gst_tee_pad, GST_TYPE_PAD);
150
151 static void
152 gst_tee_pad_class_init (GstTeePadClass * klass)
153 {
154 }
155
156 static void
157 gst_tee_pad_reset (GstTeePad * pad)
158 {
159   pad->pushed = FALSE;
160   pad->result = GST_FLOW_NOT_LINKED;
161   pad->removed = FALSE;
162 }
163
164 static void
165 gst_tee_pad_init (GstTeePad * pad)
166 {
167   gst_tee_pad_reset (pad);
168 }
169
170 static GstPad *gst_tee_request_new_pad (GstElement * element,
171     GstPadTemplate * temp, const gchar * unused, const GstCaps * caps);
172 static void gst_tee_release_pad (GstElement * element, GstPad * pad);
173
174 static void gst_tee_finalize (GObject * object);
175 static void gst_tee_set_property (GObject * object, guint prop_id,
176     const GValue * value, GParamSpec * pspec);
177 static void gst_tee_get_property (GObject * object, guint prop_id,
178     GValue * value, GParamSpec * pspec);
179 static void gst_tee_dispose (GObject * object);
180
181 static GstFlowReturn gst_tee_chain (GstPad * pad, GstObject * parent,
182     GstBuffer * buffer);
183 static GstFlowReturn gst_tee_chain_list (GstPad * pad, GstObject * parent,
184     GstBufferList * list);
185 static gboolean gst_tee_sink_event (GstPad * pad, GstObject * parent,
186     GstEvent * event);
187 static gboolean gst_tee_sink_query (GstPad * pad, GstObject * parent,
188     GstQuery * query);
189 static gboolean gst_tee_sink_activate_mode (GstPad * pad, GstObject * parent,
190     GstPadMode mode, gboolean active);
191 static gboolean gst_tee_src_query (GstPad * pad, GstObject * parent,
192     GstQuery * query);
193 static gboolean gst_tee_src_activate_mode (GstPad * pad, GstObject * parent,
194     GstPadMode mode, gboolean active);
195 static GstFlowReturn gst_tee_src_get_range (GstPad * pad, GstObject * parent,
196     guint64 offset, guint length, GstBuffer ** buf);
197
198 static void
199 gst_tee_dispose (GObject * object)
200 {
201   GList *item;
202
203 restart:
204   for (item = GST_ELEMENT_PADS (object); item; item = g_list_next (item)) {
205     GstPad *pad = GST_PAD (item->data);
206     if (GST_PAD_IS_SRC (pad)) {
207       gst_element_release_request_pad (GST_ELEMENT (object), pad);
208       goto restart;
209     }
210   }
211
212   G_OBJECT_CLASS (parent_class)->dispose (object);
213 }
214
215 static void
216 gst_tee_finalize (GObject * object)
217 {
218   GstTee *tee;
219
220   tee = GST_TEE (object);
221
222   g_hash_table_unref (tee->pad_indexes);
223
224   g_free (tee->last_message);
225
226   G_OBJECT_CLASS (parent_class)->finalize (object);
227 }
228
229 static void
230 gst_tee_class_init (GstTeeClass * klass)
231 {
232   GObjectClass *gobject_class;
233   GstElementClass *gstelement_class;
234
235   gobject_class = G_OBJECT_CLASS (klass);
236   gstelement_class = GST_ELEMENT_CLASS (klass);
237
238   gobject_class->finalize = gst_tee_finalize;
239   gobject_class->set_property = gst_tee_set_property;
240   gobject_class->get_property = gst_tee_get_property;
241   gobject_class->dispose = gst_tee_dispose;
242
243   g_object_class_install_property (gobject_class, PROP_NUM_SRC_PADS,
244       g_param_spec_int ("num-src-pads", "Num Src Pads",
245           "The number of source pads", 0, G_MAXINT, DEFAULT_PROP_NUM_SRC_PADS,
246           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
247   g_object_class_install_property (gobject_class, PROP_HAS_CHAIN,
248       g_param_spec_boolean ("has-chain", "Has Chain",
249           "If the element can operate in push mode", DEFAULT_PROP_HAS_CHAIN,
250           G_PARAM_CONSTRUCT | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
251   g_object_class_install_property (gobject_class, PROP_SILENT,
252       g_param_spec_boolean ("silent", "Silent",
253           "Don't produce last_message events", DEFAULT_PROP_SILENT,
254           G_PARAM_CONSTRUCT | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
255   pspec_last_message = g_param_spec_string ("last-message", "Last Message",
256       "The message describing current status", DEFAULT_PROP_LAST_MESSAGE,
257       G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
258   g_object_class_install_property (gobject_class, PROP_LAST_MESSAGE,
259       pspec_last_message);
260   g_object_class_install_property (gobject_class, PROP_PULL_MODE,
261       g_param_spec_enum ("pull-mode", "Pull mode",
262           "Behavior of tee in pull mode", GST_TYPE_TEE_PULL_MODE,
263           DEFAULT_PULL_MODE,
264           G_PARAM_CONSTRUCT | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
265   pspec_alloc_pad = g_param_spec_object ("alloc-pad", "Allocation Src Pad",
266       "The pad ALLOCATION queries will be proxied to (DEPRECATED, has no effect)",
267       GST_TYPE_PAD,
268       G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_DEPRECATED);
269   g_object_class_install_property (gobject_class, PROP_ALLOC_PAD,
270       pspec_alloc_pad);
271
272   /**
273    * GstTee:allow-not-linked
274    *
275    * This property makes sink pad return GST_FLOW_OK even if there are no
276    * source pads or any of them is linked.
277    *
278    * This is useful to avoid errors when you have a dynamic pipeline and during
279    * a reconnection you can have all the pads unlinked or removed.
280    *
281    * Since: 1.6
282    */
283   g_object_class_install_property (gobject_class, PROP_ALLOW_NOT_LINKED,
284       g_param_spec_boolean ("allow-not-linked", "Allow not linked",
285           "Return GST_FLOW_OK even if there are no source pads or they are "
286           "all unlinked", DEFAULT_PROP_ALLOW_NOT_LINKED,
287           G_PARAM_CONSTRUCT | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
288
289   gst_element_class_set_static_metadata (gstelement_class,
290       "Tee pipe fitting",
291       "Generic",
292       "1-to-N pipe fitting",
293       "Erik Walthinsen <omega@cse.ogi.edu>, " "Wim Taymans <wim@fluendo.com>");
294   gst_element_class_add_static_pad_template (gstelement_class, &sinktemplate);
295   gst_element_class_add_static_pad_template (gstelement_class, &src_template);
296
297   gstelement_class->request_new_pad =
298       GST_DEBUG_FUNCPTR (gst_tee_request_new_pad);
299   gstelement_class->release_pad = GST_DEBUG_FUNCPTR (gst_tee_release_pad);
300 }
301
302 static void
303 gst_tee_init (GstTee * tee)
304 {
305   tee->sinkpad = gst_pad_new_from_static_template (&sinktemplate, "sink");
306   tee->sink_mode = GST_PAD_MODE_NONE;
307
308   gst_pad_set_event_function (tee->sinkpad,
309       GST_DEBUG_FUNCPTR (gst_tee_sink_event));
310   gst_pad_set_query_function (tee->sinkpad,
311       GST_DEBUG_FUNCPTR (gst_tee_sink_query));
312   gst_pad_set_activatemode_function (tee->sinkpad,
313       GST_DEBUG_FUNCPTR (gst_tee_sink_activate_mode));
314   gst_pad_set_chain_function (tee->sinkpad, GST_DEBUG_FUNCPTR (gst_tee_chain));
315   gst_pad_set_chain_list_function (tee->sinkpad,
316       GST_DEBUG_FUNCPTR (gst_tee_chain_list));
317   GST_OBJECT_FLAG_SET (tee->sinkpad, GST_PAD_FLAG_PROXY_CAPS);
318   gst_element_add_pad (GST_ELEMENT (tee), tee->sinkpad);
319
320   tee->pad_indexes = g_hash_table_new (NULL, NULL);
321
322   tee->last_message = NULL;
323 }
324
325 static void
326 gst_tee_notify_alloc_pad (GstTee * tee)
327 {
328   g_object_notify_by_pspec ((GObject *) tee, pspec_alloc_pad);
329 }
330
331 static gboolean
332 forward_sticky_events (GstPad * pad, GstEvent ** event, gpointer user_data)
333 {
334   GstPad *srcpad = GST_PAD_CAST (user_data);
335   GstFlowReturn ret;
336
337   ret = gst_pad_store_sticky_event (srcpad, *event);
338   if (ret != GST_FLOW_OK) {
339     GST_DEBUG_OBJECT (srcpad, "storing sticky event %p (%s) failed: %s", *event,
340         GST_EVENT_TYPE_NAME (*event), gst_flow_get_name (ret));
341   }
342
343   return TRUE;
344 }
345
346 static GstPad *
347 gst_tee_request_new_pad (GstElement * element, GstPadTemplate * templ,
348     const gchar * name_templ, const GstCaps * caps)
349 {
350   gchar *name;
351   GstPad *srcpad;
352   GstTee *tee;
353   GstPadMode mode;
354   gboolean res;
355   guint index = 0;
356
357   tee = GST_TEE (element);
358
359   GST_DEBUG_OBJECT (tee, "requesting pad");
360
361   GST_OBJECT_LOCK (tee);
362
363   if (name_templ && sscanf (name_templ, "src_%u", &index) == 1) {
364     GST_LOG_OBJECT (element, "name: %s (index %d)", name_templ, index);
365     if (g_hash_table_contains (tee->pad_indexes, GUINT_TO_POINTER (index))) {
366       GST_ERROR_OBJECT (element, "pad name %s is not unique", name_templ);
367       GST_OBJECT_UNLOCK (tee);
368       return NULL;
369     }
370     if (index >= tee->next_pad_index)
371       tee->next_pad_index = index + 1;
372   } else {
373     index = tee->next_pad_index;
374
375     while (g_hash_table_contains (tee->pad_indexes, GUINT_TO_POINTER (index)))
376       index++;
377
378     tee->next_pad_index = index + 1;
379   }
380
381   g_hash_table_insert (tee->pad_indexes, GUINT_TO_POINTER (index), NULL);
382
383   name = g_strdup_printf ("src_%u", index);
384
385   srcpad = GST_PAD_CAST (g_object_new (GST_TYPE_TEE_PAD,
386           "name", name, "direction", templ->direction, "template", templ,
387           NULL));
388   GST_TEE_PAD_CAST (srcpad)->index = index;
389   g_free (name);
390
391   mode = tee->sink_mode;
392
393   GST_OBJECT_UNLOCK (tee);
394
395   switch (mode) {
396     case GST_PAD_MODE_PULL:
397       /* we already have a src pad in pull mode, and our pull mode can only be
398          SINGLE, so fall through to activate this new pad in push mode */
399     case GST_PAD_MODE_PUSH:
400       res = gst_pad_activate_mode (srcpad, GST_PAD_MODE_PUSH, TRUE);
401       break;
402     default:
403       res = TRUE;
404       break;
405   }
406
407   if (!res)
408     goto activate_failed;
409
410   gst_pad_set_activatemode_function (srcpad,
411       GST_DEBUG_FUNCPTR (gst_tee_src_activate_mode));
412   gst_pad_set_query_function (srcpad, GST_DEBUG_FUNCPTR (gst_tee_src_query));
413   gst_pad_set_getrange_function (srcpad,
414       GST_DEBUG_FUNCPTR (gst_tee_src_get_range));
415   GST_OBJECT_FLAG_SET (srcpad, GST_PAD_FLAG_PROXY_CAPS);
416   /* Forward sticky events to the new srcpad */
417   gst_pad_sticky_events_foreach (tee->sinkpad, forward_sticky_events, srcpad);
418   gst_element_add_pad (GST_ELEMENT_CAST (tee), srcpad);
419
420   return srcpad;
421
422   /* ERRORS */
423 activate_failed:
424   {
425     gboolean changed = FALSE;
426
427     GST_OBJECT_LOCK (tee);
428     GST_DEBUG_OBJECT (tee, "warning failed to activate request pad");
429     if (tee->allocpad == srcpad) {
430       tee->allocpad = NULL;
431       changed = TRUE;
432     }
433     GST_OBJECT_UNLOCK (tee);
434     gst_object_unref (srcpad);
435     if (changed) {
436       gst_tee_notify_alloc_pad (tee);
437     }
438     return NULL;
439   }
440 }
441
442 static void
443 gst_tee_release_pad (GstElement * element, GstPad * pad)
444 {
445   GstTee *tee;
446   gboolean changed = FALSE;
447   guint index;
448
449   tee = GST_TEE (element);
450
451   GST_DEBUG_OBJECT (tee, "releasing pad");
452
453   GST_OBJECT_LOCK (tee);
454   index = GST_TEE_PAD_CAST (pad)->index;
455   /* mark the pad as removed so that future pad_alloc fails with NOT_LINKED. */
456   GST_TEE_PAD_CAST (pad)->removed = TRUE;
457   if (tee->allocpad == pad) {
458     tee->allocpad = NULL;
459     changed = TRUE;
460   }
461   GST_OBJECT_UNLOCK (tee);
462
463   gst_object_ref (pad);
464   gst_element_remove_pad (GST_ELEMENT_CAST (tee), pad);
465
466   gst_pad_set_active (pad, FALSE);
467
468   gst_object_unref (pad);
469
470   if (changed) {
471     gst_tee_notify_alloc_pad (tee);
472   }
473
474   GST_OBJECT_LOCK (tee);
475   g_hash_table_remove (tee->pad_indexes, GUINT_TO_POINTER (index));
476   GST_OBJECT_UNLOCK (tee);
477 }
478
479 static void
480 gst_tee_set_property (GObject * object, guint prop_id, const GValue * value,
481     GParamSpec * pspec)
482 {
483   GstTee *tee = GST_TEE (object);
484
485   GST_OBJECT_LOCK (tee);
486   switch (prop_id) {
487     case PROP_HAS_CHAIN:
488       tee->has_chain = g_value_get_boolean (value);
489       break;
490     case PROP_SILENT:
491       tee->silent = g_value_get_boolean (value);
492       break;
493     case PROP_PULL_MODE:
494       tee->pull_mode = (GstTeePullMode) g_value_get_enum (value);
495       break;
496     case PROP_ALLOC_PAD:
497     {
498       GstPad *pad = g_value_get_object (value);
499       GST_OBJECT_LOCK (pad);
500       if (GST_OBJECT_PARENT (pad) == GST_OBJECT_CAST (object))
501         tee->allocpad = pad;
502       else
503         GST_WARNING_OBJECT (object, "Tried to set alloc pad %s which"
504             " is not my pad", GST_OBJECT_NAME (pad));
505       GST_OBJECT_UNLOCK (pad);
506       break;
507     }
508     case PROP_ALLOW_NOT_LINKED:
509       tee->allow_not_linked = g_value_get_boolean (value);
510       break;
511     default:
512       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
513       break;
514   }
515   GST_OBJECT_UNLOCK (tee);
516 }
517
518 static void
519 gst_tee_get_property (GObject * object, guint prop_id, GValue * value,
520     GParamSpec * pspec)
521 {
522   GstTee *tee = GST_TEE (object);
523
524   GST_OBJECT_LOCK (tee);
525   switch (prop_id) {
526     case PROP_NUM_SRC_PADS:
527       g_value_set_int (value, GST_ELEMENT (tee)->numsrcpads);
528       break;
529     case PROP_HAS_CHAIN:
530       g_value_set_boolean (value, tee->has_chain);
531       break;
532     case PROP_SILENT:
533       g_value_set_boolean (value, tee->silent);
534       break;
535     case PROP_LAST_MESSAGE:
536       g_value_set_string (value, tee->last_message);
537       break;
538     case PROP_PULL_MODE:
539       g_value_set_enum (value, tee->pull_mode);
540       break;
541     case PROP_ALLOC_PAD:
542       g_value_set_object (value, tee->allocpad);
543       break;
544     case PROP_ALLOW_NOT_LINKED:
545       g_value_set_boolean (value, tee->allow_not_linked);
546       break;
547     default:
548       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
549       break;
550   }
551   GST_OBJECT_UNLOCK (tee);
552 }
553
554 static gboolean
555 gst_tee_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
556 {
557   gboolean res;
558
559   switch (GST_EVENT_TYPE (event)) {
560     default:
561       res = gst_pad_event_default (pad, parent, event);
562       break;
563   }
564
565   return res;
566 }
567
568 struct AllocQueryCtx
569 {
570   GstTee *tee;
571   GstQuery *query;
572   GstAllocationParams params;
573   guint size;
574   guint min_buffers;
575   gboolean first_query;
576   guint num_pads;
577 };
578
579 /* This function will aggregate some of the allocation query information with
580  * the strategy to force upstream allocation. Depending on downstream
581  * allocation would otherwise make dynamic pipelines much more complicated as
582  * application would need to now drain buffer in certain cases before getting
583  * rid of a tee branch. */
584 static gboolean
585 gst_tee_query_allocation (const GValue * item, GValue * ret, gpointer user_data)
586 {
587   struct AllocQueryCtx *ctx = user_data;
588   GstPad *src_pad = g_value_get_object (item);
589   GstPad *peer_pad;
590   GstCaps *caps;
591   GstQuery *query;
592   guint count, i, size, min;
593
594   GST_DEBUG_OBJECT (ctx->tee, "Aggregating allocation from pad %s:%s",
595       GST_DEBUG_PAD_NAME (src_pad));
596
597   peer_pad = gst_pad_get_peer (src_pad);
598   if (!peer_pad) {
599     if (ctx->tee->allow_not_linked) {
600       GST_DEBUG_OBJECT (ctx->tee, "Pad %s:%s has no peer, but allowed.",
601           GST_DEBUG_PAD_NAME (src_pad));
602       return TRUE;
603     } else {
604       GST_DEBUG_OBJECT (ctx->tee, "Pad %s:%s has no peer, ignoring allocation.",
605           GST_DEBUG_PAD_NAME (src_pad));
606       g_value_set_boolean (ret, FALSE);
607       return FALSE;
608     }
609   }
610
611   gst_query_parse_allocation (ctx->query, &caps, NULL);
612
613   query = gst_query_new_allocation (caps, FALSE);
614   if (!gst_pad_query (peer_pad, query)) {
615     GST_DEBUG_OBJECT (ctx->tee,
616         "Allocation query failed on pad %s, ignoring allocation",
617         GST_PAD_NAME (src_pad));
618     g_value_set_boolean (ret, FALSE);
619     gst_query_unref (query);
620     gst_object_unref (peer_pad);
621     return FALSE;
622   }
623
624   gst_object_unref (peer_pad);
625
626   /* Allocation Params:
627    * store the maximum alignment, prefix and padding, but ignore the
628    * allocators and the flags which are tied to downstream allocation */
629   count = gst_query_get_n_allocation_params (query);
630   for (i = 0; i < count; i++) {
631     GstAllocationParams params = { 0, };
632
633     gst_query_parse_nth_allocation_param (query, i, NULL, &params);
634
635     GST_DEBUG_OBJECT (ctx->tee, "Aggregating AllocationParams align=%"
636         G_GSIZE_FORMAT " prefix=%" G_GSIZE_FORMAT " padding=%"
637         G_GSIZE_FORMAT, params.align, params.prefix, params.padding);
638
639     if (ctx->params.align < params.align)
640       ctx->params.align = params.align;
641
642     if (ctx->params.prefix < params.prefix)
643       ctx->params.prefix = params.prefix;
644
645     if (ctx->params.padding < params.padding)
646       ctx->params.padding = params.padding;
647   }
648
649   /* Allocation Pool:
650    * We want to keep the biggest size and biggest minimum number of buffers to
651    * make sure downstream requirement can be satisfied. We don't really care
652    * about the maximum, as this is a parameter of the downstream provided
653    * pool. We only read the first allocation pool as the minimum number of
654    * buffers is normally constant regardless of the pool being used. */
655   if (gst_query_get_n_allocation_pools (query) > 0) {
656     gst_query_parse_nth_allocation_pool (query, 0, NULL, &size, &min, NULL);
657
658     GST_DEBUG_OBJECT (ctx->tee,
659         "Aggregating allocation pool size=%u min_buffers=%u", size, min);
660
661     if (ctx->size < size)
662       ctx->size = size;
663
664     if (ctx->min_buffers < min)
665       ctx->min_buffers = min;
666   }
667
668   /* Allocation Meta:
669    * For allocation meta, we'll need to aggregate the argument using the new
670    * GstMetaInfo::agggregate_func */
671   count = gst_query_get_n_allocation_metas (query);
672   for (i = 0; i < count; i++) {
673     guint ctx_index;
674     GType api;
675     const GstStructure *param;
676
677     api = gst_query_parse_nth_allocation_meta (query, i, &param);
678
679     /* For the first query, copy all metas */
680     if (ctx->first_query) {
681       gst_query_add_allocation_meta (ctx->query, api, param);
682       continue;
683     }
684
685     /* Afterward, aggregate the common params */
686     if (gst_query_find_allocation_meta (ctx->query, api, &ctx_index)) {
687       const GstStructure *ctx_param;
688
689       gst_query_parse_nth_allocation_meta (ctx->query, ctx_index, &ctx_param);
690
691       /* Keep meta which has no params */
692       if (ctx_param == NULL && param == NULL)
693         continue;
694
695       GST_DEBUG_OBJECT (ctx->tee, "Dropping allocation meta %s",
696           g_type_name (api));
697       gst_query_remove_nth_allocation_meta (ctx->query, ctx_index);
698     }
699   }
700
701   /* Finally, cleanup metas from the stored query that aren't support on this
702    * pad. */
703   count = gst_query_get_n_allocation_metas (ctx->query);
704   for (i = 0; i < count;) {
705     GType api = gst_query_parse_nth_allocation_meta (ctx->query, i, NULL);
706
707     if (!gst_query_find_allocation_meta (query, api, NULL)) {
708       GST_DEBUG_OBJECT (ctx->tee, "Dropping allocation meta %s",
709           g_type_name (api));
710       gst_query_remove_nth_allocation_meta (ctx->query, i);
711       count--;
712       continue;
713     }
714
715     i++;
716   }
717
718   ctx->first_query = FALSE;
719   ctx->num_pads++;
720   gst_query_unref (query);
721
722   return TRUE;
723 }
724
725
726 static void
727 gst_tee_clear_query_allocation_meta (GstQuery * query)
728 {
729   guint count = gst_query_get_n_allocation_metas (query);
730   guint i;
731
732   for (i = 1; i <= count; i++)
733     gst_query_remove_nth_allocation_meta (query, count - i);
734 }
735
736 static gboolean
737 gst_tee_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
738 {
739   GstTee *tee = GST_TEE (parent);
740   gboolean res;
741
742   switch (GST_QUERY_TYPE (query)) {
743     case GST_QUERY_ALLOCATION:
744     {
745       GstIterator *iter;
746       GValue ret = G_VALUE_INIT;
747       struct AllocQueryCtx ctx = { tee, query, };
748
749       g_value_init (&ret, G_TYPE_BOOLEAN);
750       g_value_set_boolean (&ret, TRUE);
751
752       ctx.first_query = TRUE;
753       gst_allocation_params_init (&ctx.params);
754
755       iter = gst_element_iterate_src_pads (GST_ELEMENT (tee));
756       while (GST_ITERATOR_RESYNC ==
757           gst_iterator_fold (iter, gst_tee_query_allocation, &ret, &ctx)) {
758         gst_iterator_resync (iter);
759         ctx.first_query = TRUE;
760         gst_allocation_params_init (&ctx.params);
761         ctx.size = 0;
762         ctx.min_buffers = 0;
763         ctx.num_pads = 0;
764         gst_tee_clear_query_allocation_meta (query);
765       }
766
767       gst_iterator_free (iter);
768       res = g_value_get_boolean (&ret);
769       g_value_unset (&ret);
770
771       if (res) {
772         GST_DEBUG_OBJECT (tee, "Aggregated AllocationParams to align=%"
773             G_GSIZE_FORMAT " prefix=%" G_GSIZE_FORMAT " padding=%"
774             G_GSIZE_FORMAT, ctx.params.align, ctx.params.prefix,
775             ctx.params.padding);
776
777         GST_DEBUG_OBJECT (tee,
778             "Aggregated allocation pools size=%u min_buffers=%u", ctx.size,
779             ctx.min_buffers);
780
781 #ifndef GST_DISABLE_GST_DEBUG
782         {
783           guint count = gst_query_get_n_allocation_metas (query);
784           guint i;
785
786           GST_DEBUG_OBJECT (tee, "Aggregated %u allocation meta:", count);
787
788           for (i = 0; i < count; i++)
789             GST_DEBUG_OBJECT (tee, "    + aggregated allocation meta %s",
790                 g_type_name (gst_query_parse_nth_allocation_meta (ctx.query, i,
791                         NULL)));
792         }
793 #endif
794
795         /* Allocate one more buffers when multiplexing so we don't starve the
796          * downstream threads. */
797         if (ctx.num_pads > 1)
798           ctx.min_buffers++;
799
800         /* Check that we actually have parameters besides the defaults. */
801         if (ctx.params.align || ctx.params.prefix || ctx.params.padding) {
802           gst_query_add_allocation_param (ctx.query, NULL, &ctx.params);
803         }
804         /* When size == 0, buffers created from this pool would have no memory
805          * allocated. */
806         if (ctx.size) {
807           gst_query_add_allocation_pool (ctx.query, NULL, ctx.size,
808               ctx.min_buffers, 0);
809         }
810       } else {
811         gst_tee_clear_query_allocation_meta (query);
812       }
813       break;
814     }
815     default:
816       res = gst_pad_query_default (pad, parent, query);
817       break;
818   }
819   return res;
820 }
821
822 static void
823 gst_tee_do_message (GstTee * tee, GstPad * pad, gpointer data, gboolean is_list)
824 {
825   GST_OBJECT_LOCK (tee);
826   g_free (tee->last_message);
827   if (is_list) {
828     tee->last_message =
829         g_strdup_printf ("chain-list   ******* (%s:%s)t %p",
830         GST_DEBUG_PAD_NAME (pad), data);
831   } else {
832     tee->last_message =
833         g_strdup_printf ("chain        ******* (%s:%s)t (%" G_GSIZE_FORMAT
834         " bytes, %" G_GUINT64_FORMAT ") %p", GST_DEBUG_PAD_NAME (pad),
835         gst_buffer_get_size (data), GST_BUFFER_TIMESTAMP (data), data);
836   }
837   GST_OBJECT_UNLOCK (tee);
838
839   g_object_notify_by_pspec ((GObject *) tee, pspec_last_message);
840 }
841
842 static GstFlowReturn
843 gst_tee_do_push (GstTee * tee, GstPad * pad, gpointer data, gboolean is_list)
844 {
845   GstFlowReturn res;
846
847   /* Push */
848   if (pad == tee->pull_pad) {
849     /* don't push on the pad we're pulling from */
850     res = GST_FLOW_OK;
851   } else if (is_list) {
852     res =
853         gst_pad_push_list (pad,
854         gst_buffer_list_ref (GST_BUFFER_LIST_CAST (data)));
855   } else {
856     res = gst_pad_push (pad, gst_buffer_ref (GST_BUFFER_CAST (data)));
857   }
858   return res;
859 }
860
861 static void
862 clear_pads (GstPad * pad, GstTee * tee)
863 {
864   GST_TEE_PAD_CAST (pad)->pushed = FALSE;
865   GST_TEE_PAD_CAST (pad)->result = GST_FLOW_NOT_LINKED;
866 }
867
868 static GstFlowReturn
869 gst_tee_handle_data (GstTee * tee, gpointer data, gboolean is_list)
870 {
871   GList *pads;
872   guint32 cookie;
873   GstFlowReturn ret, cret;
874
875   if (G_UNLIKELY (!tee->silent))
876     gst_tee_do_message (tee, tee->sinkpad, data, is_list);
877
878   GST_OBJECT_LOCK (tee);
879   pads = GST_ELEMENT_CAST (tee)->srcpads;
880
881   /* special case for zero pads */
882   if (G_UNLIKELY (!pads))
883     goto no_pads;
884
885   /* special case for just one pad that avoids reffing the buffer */
886   if (!pads->next) {
887     GstPad *pad = GST_PAD_CAST (pads->data);
888
889     /* Keep another ref around, a pad probe
890      * might release and destroy the pad */
891     gst_object_ref (pad);
892     GST_OBJECT_UNLOCK (tee);
893
894     if (pad == tee->pull_pad) {
895       ret = GST_FLOW_OK;
896     } else if (is_list) {
897       ret = gst_pad_push_list (pad, GST_BUFFER_LIST_CAST (data));
898     } else {
899       ret = gst_pad_push (pad, GST_BUFFER_CAST (data));
900     }
901
902     if (GST_TEE_PAD_CAST (pad)->removed)
903       ret = GST_FLOW_NOT_LINKED;
904
905     if (ret == GST_FLOW_NOT_LINKED && tee->allow_not_linked) {
906       ret = GST_FLOW_OK;
907     }
908
909     gst_object_unref (pad);
910
911     return ret;
912   }
913
914   /* mark all pads as 'not pushed on yet' */
915   g_list_foreach (pads, (GFunc) clear_pads, tee);
916
917 restart:
918   if (tee->allow_not_linked) {
919     cret = GST_FLOW_OK;
920   } else {
921     cret = GST_FLOW_NOT_LINKED;
922   }
923   pads = GST_ELEMENT_CAST (tee)->srcpads;
924   cookie = GST_ELEMENT_CAST (tee)->pads_cookie;
925
926   while (pads) {
927     GstPad *pad;
928
929     pad = GST_PAD_CAST (pads->data);
930
931     if (G_LIKELY (!GST_TEE_PAD_CAST (pad)->pushed)) {
932       /* not yet pushed, release lock and start pushing */
933       gst_object_ref (pad);
934       GST_OBJECT_UNLOCK (tee);
935
936       GST_LOG_OBJECT (pad, "Starting to push %s %p",
937           is_list ? "list" : "buffer", data);
938
939       ret = gst_tee_do_push (tee, pad, data, is_list);
940
941       GST_LOG_OBJECT (pad, "Pushing item %p yielded result %s", data,
942           gst_flow_get_name (ret));
943
944       GST_OBJECT_LOCK (tee);
945       /* keep track of which pad we pushed and the result value */
946       GST_TEE_PAD_CAST (pad)->pushed = TRUE;
947       GST_TEE_PAD_CAST (pad)->result = ret;
948       gst_object_unref (pad);
949       pad = NULL;
950     } else {
951       /* already pushed, use previous return value */
952       ret = GST_TEE_PAD_CAST (pad)->result;
953       GST_LOG_OBJECT (pad, "pad already pushed with %s",
954           gst_flow_get_name (ret));
955     }
956
957     /* before we go combining the return value, check if the pad list is still
958      * the same. It could be possible that the pad we just pushed was removed
959      * and the return value it not valid anymore */
960     if (G_UNLIKELY (GST_ELEMENT_CAST (tee)->pads_cookie != cookie)) {
961       GST_LOG_OBJECT (tee, "pad list changed");
962       /* the list of pads changed, restart iteration. Pads that we already
963        * pushed on and are still in the new list, will not be pushed on
964        * again. */
965       goto restart;
966     }
967
968     /* stop pushing more buffers when we have a fatal error */
969     if (G_UNLIKELY (ret != GST_FLOW_OK && ret != GST_FLOW_NOT_LINKED))
970       goto error;
971
972     /* keep all other return values, overwriting the previous one. */
973     if (G_LIKELY (ret != GST_FLOW_NOT_LINKED)) {
974       GST_LOG_OBJECT (tee, "Replacing ret val %d with %d", cret, ret);
975       cret = ret;
976     }
977     pads = g_list_next (pads);
978   }
979   GST_OBJECT_UNLOCK (tee);
980
981   gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
982
983   /* no need to unset gvalue */
984   return cret;
985
986   /* ERRORS */
987 no_pads:
988   {
989     if (tee->allow_not_linked) {
990       GST_DEBUG_OBJECT (tee, "there are no pads, dropping %s",
991           is_list ? "buffer-list" : "buffer");
992       ret = GST_FLOW_OK;
993     } else {
994       GST_DEBUG_OBJECT (tee, "there are no pads, return not-linked");
995       ret = GST_FLOW_NOT_LINKED;
996     }
997     goto end;
998   }
999 error:
1000   {
1001     GST_DEBUG_OBJECT (tee, "received error %s", gst_flow_get_name (ret));
1002     goto end;
1003   }
1004 end:
1005   {
1006     GST_OBJECT_UNLOCK (tee);
1007     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
1008     return ret;
1009   }
1010 }
1011
1012 static GstFlowReturn
1013 gst_tee_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
1014 {
1015   GstFlowReturn res;
1016   GstTee *tee;
1017
1018   tee = GST_TEE_CAST (parent);
1019
1020   GST_DEBUG_OBJECT (tee, "received buffer %p", buffer);
1021
1022   res = gst_tee_handle_data (tee, buffer, FALSE);
1023
1024   GST_DEBUG_OBJECT (tee, "handled buffer %s", gst_flow_get_name (res));
1025
1026   return res;
1027 }
1028
1029 static GstFlowReturn
1030 gst_tee_chain_list (GstPad * pad, GstObject * parent, GstBufferList * list)
1031 {
1032   GstFlowReturn res;
1033   GstTee *tee;
1034
1035   tee = GST_TEE_CAST (parent);
1036
1037   GST_DEBUG_OBJECT (tee, "received list %p", list);
1038
1039   res = gst_tee_handle_data (tee, list, TRUE);
1040
1041   GST_DEBUG_OBJECT (tee, "handled list %s", gst_flow_get_name (res));
1042
1043   return res;
1044 }
1045
1046 static gboolean
1047 gst_tee_sink_activate_mode (GstPad * pad, GstObject * parent, GstPadMode mode,
1048     gboolean active)
1049 {
1050   gboolean res;
1051   GstTee *tee;
1052
1053   tee = GST_TEE (parent);
1054
1055   switch (mode) {
1056     case GST_PAD_MODE_PUSH:
1057     {
1058       GST_OBJECT_LOCK (tee);
1059       tee->sink_mode = active ? mode : GST_PAD_MODE_NONE;
1060
1061       if (active && !tee->has_chain)
1062         goto no_chain;
1063       GST_OBJECT_UNLOCK (tee);
1064       res = TRUE;
1065       break;
1066     }
1067     default:
1068       res = FALSE;
1069       break;
1070   }
1071   return res;
1072
1073   /* ERRORS */
1074 no_chain:
1075   {
1076     GST_OBJECT_UNLOCK (tee);
1077     GST_INFO_OBJECT (tee,
1078         "Tee cannot operate in push mode with has-chain==FALSE");
1079     return FALSE;
1080   }
1081 }
1082
1083 static gboolean
1084 gst_tee_src_activate_mode (GstPad * pad, GstObject * parent, GstPadMode mode,
1085     gboolean active)
1086 {
1087   GstTee *tee;
1088   gboolean res;
1089   GstPad *sinkpad;
1090
1091   tee = GST_TEE (parent);
1092
1093   switch (mode) {
1094     case GST_PAD_MODE_PULL:
1095     {
1096       GST_OBJECT_LOCK (tee);
1097
1098       if (tee->pull_mode == GST_TEE_PULL_MODE_NEVER)
1099         goto cannot_pull;
1100
1101       if (tee->pull_mode == GST_TEE_PULL_MODE_SINGLE && active && tee->pull_pad)
1102         goto cannot_pull_multiple_srcs;
1103
1104       sinkpad = gst_object_ref (tee->sinkpad);
1105
1106       GST_OBJECT_UNLOCK (tee);
1107
1108       res = gst_pad_activate_mode (sinkpad, GST_PAD_MODE_PULL, active);
1109       gst_object_unref (sinkpad);
1110
1111       if (!res)
1112         goto sink_activate_failed;
1113
1114       GST_OBJECT_LOCK (tee);
1115       if (active) {
1116         if (tee->pull_mode == GST_TEE_PULL_MODE_SINGLE)
1117           tee->pull_pad = pad;
1118       } else {
1119         if (pad == tee->pull_pad)
1120           tee->pull_pad = NULL;
1121       }
1122       tee->sink_mode = (active ? GST_PAD_MODE_PULL : GST_PAD_MODE_NONE);
1123       GST_OBJECT_UNLOCK (tee);
1124       break;
1125     }
1126     default:
1127       res = TRUE;
1128       break;
1129   }
1130
1131   return res;
1132
1133   /* ERRORS */
1134 cannot_pull:
1135   {
1136     GST_OBJECT_UNLOCK (tee);
1137     GST_INFO_OBJECT (tee, "Cannot activate in pull mode, pull-mode "
1138         "set to NEVER");
1139     return FALSE;
1140   }
1141 cannot_pull_multiple_srcs:
1142   {
1143     GST_OBJECT_UNLOCK (tee);
1144     GST_INFO_OBJECT (tee, "Cannot activate multiple src pads in pull mode, "
1145         "pull-mode set to SINGLE");
1146     return FALSE;
1147   }
1148 sink_activate_failed:
1149   {
1150     GST_INFO_OBJECT (tee, "Failed to %sactivate sink pad in pull mode",
1151         active ? "" : "de");
1152     return FALSE;
1153   }
1154 }
1155
1156 static gboolean
1157 gst_tee_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
1158 {
1159   GstTee *tee;
1160   gboolean res;
1161   GstPad *sinkpad;
1162
1163   tee = GST_TEE (parent);
1164
1165   switch (GST_QUERY_TYPE (query)) {
1166     case GST_QUERY_SCHEDULING:
1167     {
1168       gboolean pull_mode;
1169
1170       GST_OBJECT_LOCK (tee);
1171       pull_mode = TRUE;
1172       if (tee->pull_mode == GST_TEE_PULL_MODE_NEVER) {
1173         GST_INFO_OBJECT (tee, "Cannot activate in pull mode, pull-mode "
1174             "set to NEVER");
1175         pull_mode = FALSE;
1176       } else if (tee->pull_mode == GST_TEE_PULL_MODE_SINGLE && tee->pull_pad) {
1177         GST_INFO_OBJECT (tee, "Cannot activate multiple src pads in pull mode, "
1178             "pull-mode set to SINGLE");
1179         pull_mode = FALSE;
1180       }
1181
1182       sinkpad = gst_object_ref (tee->sinkpad);
1183       GST_OBJECT_UNLOCK (tee);
1184
1185       if (pull_mode) {
1186         /* ask peer if we can operate in pull mode */
1187         res = gst_pad_peer_query (sinkpad, query);
1188       } else {
1189         res = TRUE;
1190       }
1191       gst_object_unref (sinkpad);
1192       break;
1193     }
1194     default:
1195       res = gst_pad_query_default (pad, parent, query);
1196       break;
1197   }
1198
1199   return res;
1200 }
1201
1202 static void
1203 gst_tee_push_eos (const GValue * vpad, GstTee * tee)
1204 {
1205   GstPad *pad = g_value_get_object (vpad);
1206
1207   if (pad != tee->pull_pad)
1208     gst_pad_push_event (pad, gst_event_new_eos ());
1209 }
1210
1211 static void
1212 gst_tee_pull_eos (GstTee * tee)
1213 {
1214   GstIterator *iter;
1215
1216   iter = gst_element_iterate_src_pads (GST_ELEMENT (tee));
1217   while (gst_iterator_foreach (iter,
1218           (GstIteratorForeachFunction) gst_tee_push_eos,
1219           tee) == GST_ITERATOR_RESYNC)
1220     gst_iterator_resync (iter);
1221   gst_iterator_free (iter);
1222 }
1223
1224 static GstFlowReturn
1225 gst_tee_src_get_range (GstPad * pad, GstObject * parent, guint64 offset,
1226     guint length, GstBuffer ** buf)
1227 {
1228   GstTee *tee;
1229   GstFlowReturn ret;
1230
1231   tee = GST_TEE (parent);
1232
1233   ret = gst_pad_pull_range (tee->sinkpad, offset, length, buf);
1234
1235   if (ret == GST_FLOW_OK)
1236     ret = gst_tee_handle_data (tee, gst_buffer_ref (*buf), FALSE);
1237   else if (ret == GST_FLOW_EOS)
1238     gst_tee_pull_eos (tee);
1239
1240   return ret;
1241 }