Rework GstSegment handling
[platform/upstream/gstreamer.git] / plugins / elements / gstoutputselector.c
1 /* GStreamer output selector
2  * Copyright (C) 2008 Nokia Corporation. (contact <stefan.kost@nokia.com>)
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /**
21  * SECTION:element-output-selector
22  * @see_also: #GstOutputSelector, #GstInputSelector
23  *
24  * Direct input stream to one out of N output pads.
25  *
26  * Since: 0.10.32
27  */
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #include <string.h>
34
35 #include "gstoutputselector.h"
36
37 GST_DEBUG_CATEGORY_STATIC (output_selector_debug);
38 #define GST_CAT_DEFAULT output_selector_debug
39
40 static GstStaticPadTemplate gst_output_selector_sink_factory =
41 GST_STATIC_PAD_TEMPLATE ("sink",
42     GST_PAD_SINK,
43     GST_PAD_ALWAYS,
44     GST_STATIC_CAPS_ANY);
45
46 static GstStaticPadTemplate gst_output_selector_src_factory =
47 GST_STATIC_PAD_TEMPLATE ("src%d",
48     GST_PAD_SRC,
49     GST_PAD_REQUEST,
50     GST_STATIC_CAPS_ANY);
51
52 enum GstOutputSelectorPadNegotiationMode
53 {
54   GST_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE_NONE,
55   GST_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE_ALL,
56   GST_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE_ACTIVE
57 };
58 #define GST_TYPE_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE (gst_output_selector_pad_negotiation_mode_get_type())
59 static GType
60 gst_output_selector_pad_negotiation_mode_get_type (void)
61 {
62   static GType pad_negotiation_mode_type = 0;
63   static GEnumValue pad_negotiation_modes[] = {
64     {GST_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE_NONE, "None", "none"},
65     {GST_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE_ALL, "All", "all"},
66     {GST_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE_ACTIVE, "Active", "active"},
67     {0, NULL, NULL}
68   };
69
70   if (!pad_negotiation_mode_type) {
71     pad_negotiation_mode_type =
72         g_enum_register_static ("GstOutputSelectorPadNegotiationMode",
73         pad_negotiation_modes);
74   }
75   return pad_negotiation_mode_type;
76 }
77
78
79 enum
80 {
81   PROP_0,
82   PROP_ACTIVE_PAD,
83   PROP_RESEND_LATEST,
84   PROP_PAD_NEGOTIATION_MODE
85 };
86
87 #define DEFAULT_PAD_NEGOTIATION_MODE GST_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE_ALL
88
89 #define _do_init \
90 GST_DEBUG_CATEGORY_INIT (output_selector_debug, \
91         "output-selector", 0, "Output stream selector");
92 #define gst_output_selector_parent_class parent_class
93 G_DEFINE_TYPE_WITH_CODE (GstOutputSelector, gst_output_selector,
94     GST_TYPE_ELEMENT, _do_init);
95
96 static void gst_output_selector_dispose (GObject * object);
97 static void gst_output_selector_set_property (GObject * object,
98     guint prop_id, const GValue * value, GParamSpec * pspec);
99 static void gst_output_selector_get_property (GObject * object,
100     guint prop_id, GValue * value, GParamSpec * pspec);
101 static GstPad *gst_output_selector_request_new_pad (GstElement * element,
102     GstPadTemplate * templ, const gchar * unused, const GstCaps * caps);
103 static void gst_output_selector_release_pad (GstElement * element,
104     GstPad * pad);
105 static GstFlowReturn gst_output_selector_chain (GstPad * pad, GstBuffer * buf);
106 static GstStateChangeReturn gst_output_selector_change_state (GstElement *
107     element, GstStateChange transition);
108 static gboolean gst_output_selector_handle_sink_event (GstPad * pad,
109     GstEvent * event);
110 static void gst_output_selector_switch_pad_negotiation_mode (GstOutputSelector *
111     sel, gint mode);
112
113 static void
114 gst_output_selector_class_init (GstOutputSelectorClass * klass)
115 {
116   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
117   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
118
119   gobject_class->dispose = gst_output_selector_dispose;
120
121   gobject_class->set_property = gst_output_selector_set_property;
122   gobject_class->get_property = gst_output_selector_get_property;
123
124   g_object_class_install_property (gobject_class, PROP_ACTIVE_PAD,
125       g_param_spec_object ("active-pad", "Active pad",
126           "Currently active src pad", GST_TYPE_PAD,
127           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
128   g_object_class_install_property (gobject_class, PROP_RESEND_LATEST,
129       g_param_spec_boolean ("resend-latest", "Resend latest buffer",
130           "Resend latest buffer after a switch to a new pad", FALSE,
131           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
132   g_object_class_install_property (gobject_class, PROP_PAD_NEGOTIATION_MODE,
133       g_param_spec_enum ("pad-negotiation-mode", "Pad negotiation mode",
134           "The mode to be used for pad negotiation",
135           GST_TYPE_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE,
136           DEFAULT_PAD_NEGOTIATION_MODE,
137           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
138
139   gst_element_class_set_details_simple (gstelement_class, "Output selector",
140       "Generic", "1-to-N output stream selector",
141       "Stefan Kost <stefan.kost@nokia.com>");
142   gst_element_class_add_pad_template (gstelement_class,
143       gst_static_pad_template_get (&gst_output_selector_sink_factory));
144   gst_element_class_add_pad_template (gstelement_class,
145       gst_static_pad_template_get (&gst_output_selector_src_factory));
146
147   gstelement_class->request_new_pad =
148       GST_DEBUG_FUNCPTR (gst_output_selector_request_new_pad);
149   gstelement_class->release_pad =
150       GST_DEBUG_FUNCPTR (gst_output_selector_release_pad);
151
152   gstelement_class->change_state = gst_output_selector_change_state;
153 }
154
155 static void
156 gst_output_selector_init (GstOutputSelector * sel)
157 {
158   sel->sinkpad =
159       gst_pad_new_from_static_template (&gst_output_selector_sink_factory,
160       "sink");
161   gst_pad_set_chain_function (sel->sinkpad,
162       GST_DEBUG_FUNCPTR (gst_output_selector_chain));
163   gst_pad_set_event_function (sel->sinkpad,
164       GST_DEBUG_FUNCPTR (gst_output_selector_handle_sink_event));
165
166   gst_element_add_pad (GST_ELEMENT (sel), sel->sinkpad);
167
168   /* srcpad management */
169   sel->active_srcpad = NULL;
170   sel->nb_srcpads = 0;
171   gst_segment_init (&sel->segment, GST_FORMAT_TIME);
172   sel->pending_srcpad = NULL;
173
174   sel->resend_latest = FALSE;
175   sel->latest_buffer = NULL;
176   gst_output_selector_switch_pad_negotiation_mode (sel,
177       DEFAULT_PAD_NEGOTIATION_MODE);
178 }
179
180 static void
181 gst_output_selector_reset (GstOutputSelector * osel)
182 {
183   if (osel->pending_srcpad != NULL) {
184     gst_object_unref (osel->pending_srcpad);
185     osel->pending_srcpad = NULL;
186   }
187   if (osel->latest_buffer != NULL) {
188     gst_buffer_unref (osel->latest_buffer);
189     osel->latest_buffer = NULL;
190   }
191   gst_segment_init (&osel->segment, GST_FORMAT_UNDEFINED);
192 }
193
194 static void
195 gst_output_selector_dispose (GObject * object)
196 {
197   GstOutputSelector *osel = GST_OUTPUT_SELECTOR (object);
198
199   gst_output_selector_reset (osel);
200
201   G_OBJECT_CLASS (parent_class)->dispose (object);
202 }
203
204 static void
205 gst_output_selector_set_property (GObject * object, guint prop_id,
206     const GValue * value, GParamSpec * pspec)
207 {
208   GstOutputSelector *sel = GST_OUTPUT_SELECTOR (object);
209
210   switch (prop_id) {
211     case PROP_ACTIVE_PAD:
212     {
213       GstPad *next_pad;
214
215       next_pad = g_value_get_object (value);
216
217       GST_INFO_OBJECT (sel, "Activating pad %s:%s",
218           GST_DEBUG_PAD_NAME (next_pad));
219
220       GST_OBJECT_LOCK (object);
221       if (next_pad != sel->active_srcpad) {
222         /* switch to new srcpad in next chain run */
223         if (sel->pending_srcpad != NULL) {
224           GST_INFO ("replacing pending switch");
225           gst_object_unref (sel->pending_srcpad);
226         }
227         if (next_pad)
228           gst_object_ref (next_pad);
229         sel->pending_srcpad = next_pad;
230       } else {
231         GST_INFO ("pad already active");
232         if (sel->pending_srcpad != NULL) {
233           gst_object_unref (sel->pending_srcpad);
234           sel->pending_srcpad = NULL;
235         }
236       }
237       GST_OBJECT_UNLOCK (object);
238       break;
239     }
240     case PROP_RESEND_LATEST:{
241       sel->resend_latest = g_value_get_boolean (value);
242       break;
243     }
244     case PROP_PAD_NEGOTIATION_MODE:{
245       gst_output_selector_switch_pad_negotiation_mode (sel,
246           g_value_get_enum (value));
247       break;
248     }
249     default:
250       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
251       break;
252   }
253 }
254
255 static void
256 gst_output_selector_get_property (GObject * object, guint prop_id,
257     GValue * value, GParamSpec * pspec)
258 {
259   GstOutputSelector *sel = GST_OUTPUT_SELECTOR (object);
260
261   switch (prop_id) {
262     case PROP_ACTIVE_PAD:
263       GST_OBJECT_LOCK (object);
264       g_value_set_object (value,
265           sel->pending_srcpad ? sel->pending_srcpad : sel->active_srcpad);
266       GST_OBJECT_UNLOCK (object);
267       break;
268     case PROP_RESEND_LATEST:{
269       GST_OBJECT_LOCK (object);
270       g_value_set_boolean (value, sel->resend_latest);
271       GST_OBJECT_UNLOCK (object);
272       break;
273     }
274     case PROP_PAD_NEGOTIATION_MODE:
275       g_value_set_enum (value, sel->pad_negotiation_mode);
276       break;
277     default:
278       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
279       break;
280   }
281 }
282
283 static GstCaps *
284 gst_output_selector_sink_getcaps (GstPad * pad)
285 {
286   GstOutputSelector *sel = GST_OUTPUT_SELECTOR (gst_pad_get_parent (pad));
287   GstPad *active = NULL;
288   GstCaps *caps = NULL;
289
290   if (G_UNLIKELY (sel == NULL))
291     return gst_caps_new_any ();
292
293   GST_OBJECT_LOCK (sel);
294   if (sel->pending_srcpad)
295     active = gst_object_ref (sel->pending_srcpad);
296   else if (sel->active_srcpad)
297     active = gst_object_ref (sel->active_srcpad);
298   GST_OBJECT_UNLOCK (sel);
299
300   if (active) {
301     caps = gst_pad_peer_get_caps_reffed (active);
302     gst_object_unref (active);
303   }
304   if (caps == NULL) {
305     caps = gst_caps_new_any ();
306   }
307
308   gst_object_unref (sel);
309   return caps;
310 }
311
312 static gboolean
313 gst_output_selector_sink_setcaps (GstPad * pad, GstCaps * caps)
314 {
315   GstOutputSelector *sel = GST_OUTPUT_SELECTOR (GST_PAD_PARENT (pad));
316   GstPad *active = NULL;
317   gboolean ret = TRUE;
318
319   GST_OBJECT_LOCK (sel);
320   if (sel->pending_srcpad)
321     active = gst_object_ref (sel->pending_srcpad);
322   else if (sel->active_srcpad)
323     active = gst_object_ref (sel->active_srcpad);
324   GST_OBJECT_UNLOCK (sel);
325
326   if (active) {
327     ret = gst_pad_set_caps (active, caps);
328     gst_object_unref (active);
329   }
330   return ret;
331 }
332
333 static void
334 gst_output_selector_switch_pad_negotiation_mode (GstOutputSelector * sel,
335     gint mode)
336 {
337   sel->pad_negotiation_mode = mode;
338   if (mode == GST_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE_ALL) {
339     gst_pad_set_getcaps_function (sel->sinkpad, gst_pad_proxy_getcaps);
340     gst_pad_set_setcaps_function (sel->sinkpad, gst_pad_proxy_setcaps);
341   } else if (mode == GST_OUTPUT_SELECTOR_PAD_NEGOTIATION_MODE_NONE) {
342     gst_pad_set_getcaps_function (sel->sinkpad, NULL);
343     gst_pad_set_setcaps_function (sel->sinkpad, NULL);
344   } else {                      /* active */
345     gst_pad_set_getcaps_function (sel->sinkpad,
346         gst_output_selector_sink_getcaps);
347     gst_pad_set_setcaps_function (sel->sinkpad,
348         gst_output_selector_sink_setcaps);
349   }
350 }
351
352 static GstPad *
353 gst_output_selector_request_new_pad (GstElement * element,
354     GstPadTemplate * templ, const gchar * name, const GstCaps * caps)
355 {
356   gchar *padname;
357   GstPad *srcpad;
358   GstOutputSelector *osel;
359
360   osel = GST_OUTPUT_SELECTOR (element);
361
362   GST_DEBUG_OBJECT (osel, "requesting pad");
363
364   GST_OBJECT_LOCK (osel);
365   padname = g_strdup_printf ("src%d", osel->nb_srcpads++);
366   srcpad = gst_pad_new_from_template (templ, padname);
367   GST_OBJECT_UNLOCK (osel);
368
369   gst_pad_set_active (srcpad, TRUE);
370   gst_element_add_pad (GST_ELEMENT (osel), srcpad);
371
372   /* Set the first requested src pad as active by default */
373   if (osel->active_srcpad == NULL) {
374     osel->active_srcpad = srcpad;
375   }
376   g_free (padname);
377
378   return srcpad;
379 }
380
381 static void
382 gst_output_selector_release_pad (GstElement * element, GstPad * pad)
383 {
384   GstOutputSelector *osel;
385
386   osel = GST_OUTPUT_SELECTOR (element);
387
388   GST_DEBUG_OBJECT (osel, "releasing pad");
389
390   gst_pad_set_active (pad, FALSE);
391
392   gst_element_remove_pad (GST_ELEMENT_CAST (osel), pad);
393 }
394
395 static gboolean
396 gst_output_selector_switch (GstOutputSelector * osel)
397 {
398   gboolean res = FALSE;
399   GstEvent *ev = NULL;
400   GstSegment *seg = NULL;
401   gint64 start = 0, position = 0;
402
403   /* Switch */
404   GST_OBJECT_LOCK (GST_OBJECT (osel));
405   GST_INFO ("switching to pad %" GST_PTR_FORMAT, osel->pending_srcpad);
406   if (gst_pad_is_linked (osel->pending_srcpad)) {
407     osel->active_srcpad = osel->pending_srcpad;
408     res = TRUE;
409   }
410   gst_object_unref (osel->pending_srcpad);
411   osel->pending_srcpad = NULL;
412   GST_OBJECT_UNLOCK (GST_OBJECT (osel));
413
414   /* Send SEGMENT event and latest buffer if switching succeeded */
415   if (res) {
416     /* Send SEGMENT to the pad we are going to switch to */
417     seg = &osel->segment;
418     /* If resending then mark segment start and position accordingly */
419     if (osel->resend_latest && osel->latest_buffer &&
420         GST_BUFFER_TIMESTAMP_IS_VALID (osel->latest_buffer)) {
421       start = position = GST_BUFFER_TIMESTAMP (osel->latest_buffer);
422     } else {
423       start = position = seg->position;
424     }
425
426     seg->start = start;
427     seg->position = position;
428     ev = gst_event_new_segment (seg);
429
430     if (!gst_pad_push_event (osel->active_srcpad, ev)) {
431       GST_WARNING_OBJECT (osel,
432           "newsegment handling failed in %" GST_PTR_FORMAT,
433           osel->active_srcpad);
434     }
435
436     /* Resend latest buffer to newly switched pad */
437     if (osel->resend_latest && osel->latest_buffer) {
438       GST_INFO ("resending latest buffer");
439       gst_pad_push (osel->active_srcpad, gst_buffer_ref (osel->latest_buffer));
440     }
441   } else {
442     GST_WARNING_OBJECT (osel, "switch failed, pad not linked");
443   }
444
445   return res;
446 }
447
448 static GstFlowReturn
449 gst_output_selector_chain (GstPad * pad, GstBuffer * buf)
450 {
451   GstFlowReturn res;
452   GstOutputSelector *osel;
453   GstClockTime position, duration;
454
455   osel = GST_OUTPUT_SELECTOR (gst_pad_get_parent (pad));
456
457   /*
458    * The _switch function might push a buffer if 'resend-latest' is true.
459    *
460    * Elements/Applications (e.g. camerabin) might use pad probes to
461    * switch output-selector's active pad. If we simply switch and don't
462    * recheck any pending pad switch the following codepath could end
463    * up pushing a buffer on a non-active pad. This is bad.
464    *
465    * So we always should check the pending_srcpad before going further down
466    * the chain and pushing the new buffer
467    */
468   while (osel->pending_srcpad) {
469     /* Do the switch */
470     gst_output_selector_switch (osel);
471   }
472
473   if (osel->latest_buffer) {
474     gst_buffer_unref (osel->latest_buffer);
475     osel->latest_buffer = NULL;
476   }
477
478   if (osel->resend_latest) {
479     /* Keep reference to latest buffer to resend it after switch */
480     osel->latest_buffer = gst_buffer_ref (buf);
481   }
482
483   /* Keep track of last stop and use it in NEWSEGMENT start after 
484      switching to a new src pad */
485   position = GST_BUFFER_TIMESTAMP (buf);
486   if (GST_CLOCK_TIME_IS_VALID (position)) {
487     duration = GST_BUFFER_DURATION (buf);
488     if (GST_CLOCK_TIME_IS_VALID (duration)) {
489       position += duration;
490     }
491     GST_LOG_OBJECT (osel, "setting last stop %" GST_TIME_FORMAT,
492         GST_TIME_ARGS (position));
493     osel->segment.position = position;
494   }
495
496   GST_LOG_OBJECT (osel, "pushing buffer to %" GST_PTR_FORMAT,
497       osel->active_srcpad);
498   res = gst_pad_push (osel->active_srcpad, buf);
499   gst_object_unref (osel);
500
501   return res;
502 }
503
504 static GstStateChangeReturn
505 gst_output_selector_change_state (GstElement * element,
506     GstStateChange transition)
507 {
508   GstOutputSelector *sel;
509   GstStateChangeReturn result;
510
511   sel = GST_OUTPUT_SELECTOR (element);
512
513   switch (transition) {
514     case GST_STATE_CHANGE_READY_TO_PAUSED:
515       break;
516     default:
517       break;
518   }
519
520   result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
521
522   switch (transition) {
523     case GST_STATE_CHANGE_PAUSED_TO_READY:
524       gst_output_selector_reset (sel);
525       break;
526     default:
527       break;
528   }
529
530   return result;
531 }
532
533 static gboolean
534 gst_output_selector_handle_sink_event (GstPad * pad, GstEvent * event)
535 {
536   gboolean res = TRUE;
537   GstOutputSelector *sel;
538   GstPad *output_pad = NULL;
539
540   sel = GST_OUTPUT_SELECTOR (gst_pad_get_parent (pad));
541   if (G_UNLIKELY (sel == NULL)) {
542     gst_event_unref (event);
543     return FALSE;
544   }
545
546   switch (GST_EVENT_TYPE (event)) {
547     case GST_EVENT_SEGMENT:
548     {
549       gst_event_parse_segment (event, &sel->segment);
550
551       GST_DEBUG_OBJECT (sel, "configured SEGMENT update %" GST_SEGMENT_FORMAT,
552           &sel->segment);
553
554       /* Send newsegment to all src pads */
555       gst_pad_event_default (pad, event);
556       break;
557     }
558     case GST_EVENT_EOS:
559       /* Send eos to all src pads */
560       gst_pad_event_default (pad, event);
561       break;
562     default:
563       /* Send other events to pending or active src pad */
564       output_pad =
565           sel->pending_srcpad ? sel->pending_srcpad : sel->active_srcpad;
566       if (output_pad)
567         res = gst_pad_push_event (output_pad, event);
568       break;
569   }
570
571   gst_object_unref (sel);
572
573   return res;
574 }