gst/: Move latency query from GstPipeline to GstBin so that we can also use it when...
[platform/upstream/gstreamer.git] / gst / gstpipeline.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2004,2005 Wim Taymans <wim@fluendo.com>
4  *
5  * gstpipeline.c: Overall pipeline management element
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /**
24  * SECTION:gstpipeline
25  * @short_description: Top-level bin with clocking and bus management
26                        functionality.
27  * @see_also: #GstElement, #GstBin, #GstClock, #GstBus
28  *
29  * A #GstPipeline is a special #GstBin used as the toplevel container for
30  * the filter graph. The #GstPipeline will manage the selection and
31  * distribution of a global #GstClock as well as provide a #GstBus to the
32  * application. It will also implement a default behavour for managing
33  * seek events (see gst_element_seek()).
34  *
35  * gst_pipeline_new() is used to create a pipeline. when you are done with
36  * the pipeline, use gst_object_unref() to free its resources including all
37  * added #GstElement objects (if not otherwise referenced).
38  *
39  * Elements are added and removed from the pipeline using the #GstBin
40  * methods like gst_bin_add() and gst_bin_remove() (see #GstBin).
41  *
42  * Before changing the state of the #GstPipeline (see #GstElement) a #GstBus
43  * can be retrieved with gst_pipeline_get_bus(). This bus can then be
44  * used to receive #GstMessage from the elements in the pipeline.
45  *
46  * By default, a #GstPipeline will automatically flush the pending #GstBus
47  * messages when going to the NULL state to ensure that no circular
48  * references exist when no messages are read from the #GstBus. This
49  * behaviour can be changed with gst_pipeline_set_auto_flush_bus().
50  *
51  * When the #GstPipeline performs the PAUSED to PLAYING state change it will
52  * select a clock for the elements. The clock selection algorithm will by
53  * default select a clock provided by an element that is most upstream
54  * (closest to the source). For live pipelines (ones that return
55  * #GST_STATE_CHANGE_NO_PREROLL from the gst_element_set_state() call) this
56  * will select the clock provided by the live source. For normal pipelines
57  * this will select a clock provided by the sinks (most likely the audio
58  * sink). If no element provides a clock, a default #GstSystemClock is used.
59  *
60  * The clock selection can be controlled with the gst_pipeline_use_clock()
61  * method, which will enforce a given clock on the pipeline. With
62  * gst_pipeline_auto_clock() the default clock selection algorithm can be
63  * restored.
64  *
65  * A #GstPipeline maintains a stream time for the elements. The stream
66  * time is defined as the difference between the current clock time and
67  * the base time. When the pipeline goes to READY or a flushing seek is
68  * performed on it, the stream time is reset to 0. When the pipeline is
69  * set from PLAYING to PAUSED, the current clock time is sampled and used to
70  * configure the base time for the elements when the pipeline is set
71  * to PLAYING again. This default behaviour can be changed with the
72  * gst_pipeline_set_new_stream_time() method.
73  *
74  * When sending a flushing seek event to a GstPipeline (see
75  * gst_element_seek()), it will make sure that the pipeline is properly
76  * PAUSED and resumed as well as set the new stream time to 0 when the
77  * seek succeeded.
78  *
79  * Last reviewed on 2006-03-12 (0.10.5)
80  */
81
82 #include "gst_private.h"
83 #include "gsterror.h"
84 #include "gst-i18n-lib.h"
85
86 #include "gstpipeline.h"
87 #include "gstinfo.h"
88 #include "gstsystemclock.h"
89
90 GST_DEBUG_CATEGORY_STATIC (pipeline_debug);
91 #define GST_CAT_DEFAULT pipeline_debug
92
93 static const GstElementDetails gst_pipeline_details =
94 GST_ELEMENT_DETAILS ("Pipeline object",
95     "Generic/Bin",
96     "Complete pipeline object",
97     "Erik Walthinsen <omega@cse.ogi.edu>, Wim Taymans <wim@fluendo.com>");
98
99 /* Pipeline signals and args */
100 enum
101 {
102   /* FILL ME */
103   LAST_SIGNAL
104 };
105
106 #define DEFAULT_DELAY           0
107 #define DEFAULT_AUTO_FLUSH_BUS  TRUE
108
109 enum
110 {
111   PROP_0,
112   PROP_DELAY,
113   PROP_AUTO_FLUSH_BUS
114 };
115
116 #define GST_PIPELINE_GET_PRIVATE(obj)  \
117    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_PIPELINE, GstPipelinePrivate))
118
119 struct _GstPipelinePrivate
120 {
121   /* with LOCK */
122   gboolean auto_flush_bus;
123
124   /* when we need to update stream_time or clock when going back to
125    * PLAYING*/
126   gboolean update_stream_time;
127   gboolean update_clock;
128 };
129
130
131 static void gst_pipeline_base_init (gpointer g_class);
132 static void gst_pipeline_class_init (gpointer g_class, gpointer class_data);
133 static void gst_pipeline_init (GTypeInstance * instance, gpointer g_class);
134
135 static void gst_pipeline_dispose (GObject * object);
136 static void gst_pipeline_set_property (GObject * object, guint prop_id,
137     const GValue * value, GParamSpec * pspec);
138 static void gst_pipeline_get_property (GObject * object, guint prop_id,
139     GValue * value, GParamSpec * pspec);
140
141 static GstClock *gst_pipeline_provide_clock_func (GstElement * element);
142 static GstStateChangeReturn gst_pipeline_change_state (GstElement * element,
143     GstStateChange transition);
144
145 static void gst_pipeline_handle_message (GstBin * bin, GstMessage * message);
146
147 static GstBinClass *parent_class = NULL;
148
149 /* static guint gst_pipeline_signals[LAST_SIGNAL] = { 0 }; */
150
151 GType
152 gst_pipeline_get_type (void)
153 {
154   static GType pipeline_type = 0;
155
156   if (G_UNLIKELY (pipeline_type == 0)) {
157     static const GTypeInfo pipeline_info = {
158       sizeof (GstPipelineClass),
159       gst_pipeline_base_init,
160       NULL,
161       (GClassInitFunc) gst_pipeline_class_init,
162       NULL,
163       NULL,
164       sizeof (GstPipeline),
165       0,
166       gst_pipeline_init,
167       NULL
168     };
169
170     pipeline_type =
171         g_type_register_static (GST_TYPE_BIN, "GstPipeline", &pipeline_info, 0);
172
173     GST_DEBUG_CATEGORY_INIT (pipeline_debug, "pipeline", GST_DEBUG_BOLD,
174         "debugging info for the 'pipeline' container element");
175   }
176   return pipeline_type;
177 }
178
179 static void
180 gst_pipeline_base_init (gpointer g_class)
181 {
182   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
183
184   gst_element_class_set_details (gstelement_class, &gst_pipeline_details);
185 }
186
187 static void
188 gst_pipeline_class_init (gpointer g_class, gpointer class_data)
189 {
190   GObjectClass *gobject_class = G_OBJECT_CLASS (g_class);
191   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
192   GstBinClass *gstbin_class = GST_BIN_CLASS (g_class);
193   GstPipelineClass *klass = GST_PIPELINE_CLASS (g_class);
194
195   parent_class = g_type_class_peek_parent (klass);
196
197   g_type_class_add_private (klass, sizeof (GstPipelinePrivate));
198
199   gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_pipeline_set_property);
200   gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_pipeline_get_property);
201
202   /**
203    * GstPipeline:delay
204    *
205    * The expected delay needed for elements to spin up to the
206    * PLAYING state expressed in nanoseconds.
207    * see gst_pipeline_set_delay() for more information on this option.
208    *
209    * Since: 0.10.5
210    **/
211   g_object_class_install_property (gobject_class, PROP_DELAY,
212       g_param_spec_uint64 ("delay", "Delay",
213           "Expected delay needed for elements "
214           "to spin up to PLAYING in nanoseconds", 0, G_MAXUINT64, DEFAULT_DELAY,
215           G_PARAM_READWRITE));
216
217   /**
218    * GstPipeline:auto-flush-bus:
219    *
220    * Whether or not to automatically flush all messages on the
221    * pipeline's bus when going from READY to NULL state. Please see
222    * gst_pipeline_set_auto_flush_bus() for more information on this option.
223    *
224    * Since: 0.10.4
225    **/
226   g_object_class_install_property (gobject_class, PROP_AUTO_FLUSH_BUS,
227       g_param_spec_boolean ("auto-flush-bus", "Auto Flush Bus",
228           "Whether to automatically flush the pipeline's bus when going "
229           "from READY into NULL state", DEFAULT_AUTO_FLUSH_BUS,
230           G_PARAM_READWRITE));
231
232   gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_pipeline_dispose);
233
234   gstelement_class->change_state =
235       GST_DEBUG_FUNCPTR (gst_pipeline_change_state);
236   gstelement_class->provide_clock =
237       GST_DEBUG_FUNCPTR (gst_pipeline_provide_clock_func);
238   gstbin_class->handle_message =
239       GST_DEBUG_FUNCPTR (gst_pipeline_handle_message);
240 }
241
242 static void
243 gst_pipeline_init (GTypeInstance * instance, gpointer g_class)
244 {
245   GstPipeline *pipeline = GST_PIPELINE (instance);
246   GstBus *bus;
247
248   pipeline->priv = GST_PIPELINE_GET_PRIVATE (pipeline);
249
250   /* set default property values */
251   pipeline->priv->auto_flush_bus = DEFAULT_AUTO_FLUSH_BUS;
252   pipeline->delay = DEFAULT_DELAY;
253
254   /* create and set a default bus */
255   bus = gst_bus_new ();
256 #if 0
257   /* FIXME, disabled for 0.10.5 release as it caused to many regressions */
258   /* Start our bus in flushing if appropriate */
259   if (pipeline->priv->auto_flush_bus)
260     gst_bus_set_flushing (bus, TRUE);
261 #endif
262
263   gst_element_set_bus (GST_ELEMENT_CAST (pipeline), bus);
264   GST_DEBUG_OBJECT (pipeline, "set bus %" GST_PTR_FORMAT " on pipeline", bus);
265   gst_object_unref (bus);
266 }
267
268 static void
269 gst_pipeline_dispose (GObject * object)
270 {
271   GstPipeline *pipeline = GST_PIPELINE (object);
272   GstClock **clock_p = &pipeline->fixed_clock;
273
274   GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, pipeline, "dispose");
275
276   /* clear and unref any fixed clock */
277   gst_object_replace ((GstObject **) clock_p, NULL);
278
279   G_OBJECT_CLASS (parent_class)->dispose (object);
280 }
281
282 static void
283 gst_pipeline_set_property (GObject * object, guint prop_id,
284     const GValue * value, GParamSpec * pspec)
285 {
286   GstPipeline *pipeline = GST_PIPELINE (object);
287
288   switch (prop_id) {
289     case PROP_DELAY:
290       gst_pipeline_set_delay (pipeline, g_value_get_uint64 (value));
291       break;
292     case PROP_AUTO_FLUSH_BUS:
293       gst_pipeline_set_auto_flush_bus (pipeline, g_value_get_boolean (value));
294       break;
295     default:
296       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
297       break;
298   }
299 }
300
301 static void
302 gst_pipeline_get_property (GObject * object, guint prop_id,
303     GValue * value, GParamSpec * pspec)
304 {
305   GstPipeline *pipeline = GST_PIPELINE (object);
306
307   switch (prop_id) {
308     case PROP_DELAY:
309       g_value_set_uint64 (value, gst_pipeline_get_delay (pipeline));
310       break;
311     case PROP_AUTO_FLUSH_BUS:
312       g_value_set_boolean (value, gst_pipeline_get_auto_flush_bus (pipeline));
313       break;
314     default:
315       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
316       break;
317   }
318 }
319
320 /* set the stream time to 0 */
321 static void
322 reset_stream_time (GstPipeline * pipeline)
323 {
324   GST_OBJECT_LOCK (pipeline);
325   if (pipeline->stream_time != GST_CLOCK_TIME_NONE) {
326     GST_DEBUG_OBJECT (pipeline, "reset stream_time to 0");
327     pipeline->stream_time = 0;
328     pipeline->priv->update_stream_time = TRUE;
329   } else {
330     GST_DEBUG_OBJECT (pipeline, "application asked to not reset stream_time");
331   }
332   GST_OBJECT_UNLOCK (pipeline);
333 }
334
335 /**
336  * gst_pipeline_new:
337  * @name: name of new pipeline
338  *
339  * Create a new pipeline with the given name.
340  *
341  * Returns: newly created GstPipeline
342  *
343  * MT safe.
344  */
345 GstElement *
346 gst_pipeline_new (const gchar * name)
347 {
348   return gst_element_factory_make ("pipeline", name);
349 }
350
351 /* MT safe */
352 static GstStateChangeReturn
353 gst_pipeline_change_state (GstElement * element, GstStateChange transition)
354 {
355   GstStateChangeReturn result = GST_STATE_CHANGE_SUCCESS;
356   GstPipeline *pipeline = GST_PIPELINE (element);
357   GstClock *clock;
358
359   switch (transition) {
360     case GST_STATE_CHANGE_NULL_TO_READY:
361       GST_OBJECT_LOCK (element);
362       if (element->bus)
363         gst_bus_set_flushing (element->bus, FALSE);
364       GST_OBJECT_UNLOCK (element);
365       break;
366     case GST_STATE_CHANGE_READY_TO_PAUSED:
367       GST_OBJECT_LOCK (element);
368       pipeline->priv->update_clock = TRUE;
369       GST_OBJECT_UNLOCK (element);
370       break;
371     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
372     {
373       GstClockTime new_base_time;
374       GstClockTime start_time, stream_time, delay;
375       gboolean new_clock, update_stream_time, update_clock;
376       GstClock *cur_clock;
377
378       GST_DEBUG_OBJECT (element, "selecting clock and base_time");
379
380       GST_OBJECT_LOCK (element);
381       cur_clock = element->clock;
382       if (cur_clock)
383         gst_object_ref (cur_clock);
384       stream_time = pipeline->stream_time;
385       update_stream_time = pipeline->priv->update_stream_time;
386       update_clock = pipeline->priv->update_clock;
387       pipeline->priv->update_stream_time = FALSE;
388       pipeline->priv->update_clock = FALSE;
389       delay = pipeline->delay;
390       GST_OBJECT_UNLOCK (element);
391
392       /* stream time changed, either with a PAUSED or a flush, we need to check
393        * if there is a new clock & update the base time */
394       if (update_stream_time) {
395         GST_DEBUG_OBJECT (pipeline, "Need to update stream_time");
396
397         /* when going to PLAYING, select a clock when needed. If we just got
398          * flushed, we don't reselect the clock. */
399         if (update_clock) {
400           GST_DEBUG_OBJECT (pipeline, "Need to update clock.");
401           clock = gst_element_provide_clock (element);
402         } else {
403           GST_DEBUG_OBJECT (pipeline,
404               "Don't need to update clock, using old clock.");
405           clock = gst_object_ref (cur_clock);
406         }
407
408         new_clock = (clock != cur_clock);
409
410         if (clock) {
411           start_time = gst_clock_get_time (clock);
412         } else {
413           GST_DEBUG ("no clock, using base time of NONE");
414           start_time = GST_CLOCK_TIME_NONE;
415           new_base_time = GST_CLOCK_TIME_NONE;
416         }
417
418         if (new_clock) {
419           /* now distribute the clock (which could be NULL). If some
420            * element refuses the clock, this will return FALSE and
421            * we effectively fail the state change. */
422           if (!gst_element_set_clock (element, clock))
423             goto invalid_clock;
424
425           /* if we selected and distributed a new clock, let the app
426            * know about it */
427           gst_element_post_message (element,
428               gst_message_new_new_clock (GST_OBJECT_CAST (element), clock));
429         }
430
431         if (clock)
432           gst_object_unref (clock);
433
434         if (stream_time != GST_CLOCK_TIME_NONE
435             && start_time != GST_CLOCK_TIME_NONE) {
436           new_base_time = start_time - stream_time + delay;
437           GST_DEBUG_OBJECT (element,
438               "stream_time=%" GST_TIME_FORMAT ", now=%" GST_TIME_FORMAT
439               ", base_time %" GST_TIME_FORMAT,
440               GST_TIME_ARGS (stream_time), GST_TIME_ARGS (start_time),
441               GST_TIME_ARGS (new_base_time));
442         } else
443           new_base_time = GST_CLOCK_TIME_NONE;
444
445         if (new_base_time != GST_CLOCK_TIME_NONE)
446           gst_element_set_base_time (element, new_base_time);
447         else
448           GST_DEBUG_OBJECT (pipeline,
449               "NOT adjusting base_time because stream_time is NONE");
450       } else {
451         GST_DEBUG_OBJECT (pipeline,
452             "NOT adjusting base_time because we selected one before");
453       }
454
455       if (cur_clock)
456         gst_object_unref (cur_clock);
457       break;
458     }
459     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
460       break;
461     case GST_STATE_CHANGE_PAUSED_TO_READY:
462     case GST_STATE_CHANGE_READY_TO_NULL:
463       break;
464   }
465
466   result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
467
468   switch (transition) {
469     case GST_STATE_CHANGE_NULL_TO_READY:
470       break;
471     case GST_STATE_CHANGE_READY_TO_PAUSED:
472     {
473       reset_stream_time (pipeline);
474       break;
475     }
476     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
477       break;
478     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
479       GST_OBJECT_LOCK (element);
480       if ((clock = element->clock)) {
481         GstClockTime now;
482
483         gst_object_ref (clock);
484         GST_OBJECT_UNLOCK (element);
485
486         /* calculate the time when we stopped */
487         now = gst_clock_get_time (clock);
488         gst_object_unref (clock);
489
490         GST_OBJECT_LOCK (element);
491         /* store the current stream time */
492         if (pipeline->stream_time != GST_CLOCK_TIME_NONE) {
493           pipeline->stream_time = now - element->base_time;
494           /* we went to PAUSED, when going to PLAYING select clock and new
495            * base_time */
496           pipeline->priv->update_stream_time = TRUE;
497           pipeline->priv->update_clock = TRUE;
498         }
499
500         GST_DEBUG_OBJECT (element,
501             "stream_time=%" GST_TIME_FORMAT ", now=%" GST_TIME_FORMAT
502             ", base_time %" GST_TIME_FORMAT,
503             GST_TIME_ARGS (pipeline->stream_time), GST_TIME_ARGS (now),
504             GST_TIME_ARGS (element->base_time));
505       }
506       GST_OBJECT_UNLOCK (element);
507       break;
508     case GST_STATE_CHANGE_PAUSED_TO_READY:
509       break;
510     case GST_STATE_CHANGE_READY_TO_NULL:
511       GST_OBJECT_LOCK (element);
512       if (element->bus) {
513         if (pipeline->priv->auto_flush_bus) {
514           gst_bus_set_flushing (element->bus, TRUE);
515         } else {
516           GST_INFO_OBJECT (element, "not flushing bus, auto-flushing disabled");
517         }
518       }
519       GST_OBJECT_UNLOCK (element);
520       break;
521   }
522   return result;
523
524   /* ERRORS */
525 invalid_clock:
526   {
527     /* we generate this error when the selected clock was not
528      * accepted by some element */
529     GST_ELEMENT_ERROR (pipeline, CORE, CLOCK,
530         (_("Selected clock cannot be used in pipeline.")),
531         ("Pipeline cannot operate with selected clock"));
532     GST_DEBUG_OBJECT (pipeline,
533         "Pipeline cannot operate with selected clock %p", clock);
534     if (clock)
535       gst_object_unref (clock);
536     return GST_STATE_CHANGE_FAILURE;
537   }
538 }
539
540 static void
541 gst_pipeline_handle_message (GstBin * bin, GstMessage * message)
542 {
543   GstPipeline *pipeline = GST_PIPELINE_CAST (bin);
544
545   switch (GST_MESSAGE_TYPE (message)) {
546     case GST_MESSAGE_ASYNC_START:
547     {
548       gboolean new_base_time;
549
550       gst_message_parse_async_start (message, &new_base_time);
551
552       /* reset our stream time if we need to distribute a new base_time to the
553        * children. */
554       if (new_base_time)
555         reset_stream_time (pipeline);
556
557       break;
558     }
559     default:
560       break;
561   }
562   GST_BIN_CLASS (parent_class)->handle_message (bin, message);
563 }
564
565 /**
566  * gst_pipeline_get_bus:
567  * @pipeline: a #GstPipeline
568  *
569  * Gets the #GstBus of @pipeline.
570  *
571  * Returns: a #GstBus, unref after usage.
572  *
573  * MT safe.
574  */
575 GstBus *
576 gst_pipeline_get_bus (GstPipeline * pipeline)
577 {
578   return gst_element_get_bus (GST_ELEMENT (pipeline));
579 }
580
581 /**
582  * gst_pipeline_set_new_stream_time:
583  * @pipeline: a #GstPipeline
584  * @time: the new stream time to set
585  *
586  * Set the new stream time of @pipeline to @time. The stream time is used to
587  * set the base time on the elements (see gst_element_set_base_time())
588  * in the PAUSED->PLAYING state transition.
589  *
590  * Setting @time to #GST_CLOCK_TIME_NONE will disable the pipeline's management
591  * of element base time. The application will then be responsible for
592  * performing base time distribution. This is sometimes useful if you want to
593  * synchronize capture from multiple pipelines, and you can also ensure that the
594  * pipelines have the same clock.
595  *
596  * MT safe.
597  */
598 void
599 gst_pipeline_set_new_stream_time (GstPipeline * pipeline, GstClockTime time)
600 {
601   g_return_if_fail (GST_IS_PIPELINE (pipeline));
602
603   GST_OBJECT_LOCK (pipeline);
604   pipeline->stream_time = time;
605   pipeline->priv->update_stream_time = TRUE;
606   GST_OBJECT_UNLOCK (pipeline);
607
608   GST_DEBUG_OBJECT (pipeline, "set new stream_time to %" GST_TIME_FORMAT,
609       GST_TIME_ARGS (time));
610
611   if (time == GST_CLOCK_TIME_NONE)
612     GST_DEBUG_OBJECT (pipeline, "told not to adjust base_time");
613 }
614
615 /**
616  * gst_pipeline_get_last_stream_time:
617  * @pipeline: a #GstPipeline
618  *
619  * Gets the last stream time of @pipeline. If the pipeline is PLAYING,
620  * the returned time is the stream time used to configure the element's
621  * base time in the PAUSED->PLAYING state. If the pipeline is PAUSED, the
622  * returned time is the stream time when the pipeline was paused.
623  *
624  * This function returns #GST_CLOCK_TIME_NONE if the pipeline was
625  * configured to not handle the management of the element's base time
626  * (see gst_pipeline_set_new_stream_time()).
627  *
628  * Returns: a #GstClockTime.
629  *
630  * MT safe.
631  */
632 GstClockTime
633 gst_pipeline_get_last_stream_time (GstPipeline * pipeline)
634 {
635   GstClockTime result;
636
637   g_return_val_if_fail (GST_IS_PIPELINE (pipeline), GST_CLOCK_TIME_NONE);
638
639   GST_OBJECT_LOCK (pipeline);
640   result = pipeline->stream_time;
641   GST_OBJECT_UNLOCK (pipeline);
642
643   return result;
644 }
645
646 static GstClock *
647 gst_pipeline_provide_clock_func (GstElement * element)
648 {
649   GstClock *clock = NULL;
650   GstPipeline *pipeline = GST_PIPELINE (element);
651
652   /* if we have a fixed clock, use that one */
653   GST_OBJECT_LOCK (pipeline);
654   if (GST_OBJECT_FLAG_IS_SET (pipeline, GST_PIPELINE_FLAG_FIXED_CLOCK)) {
655     clock = pipeline->fixed_clock;
656     if (clock)
657       gst_object_ref (clock);
658     GST_OBJECT_UNLOCK (pipeline);
659
660     GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline using fixed clock %p (%s)",
661         clock, clock ? GST_STR_NULL (GST_OBJECT_NAME (clock)) : "-");
662   } else {
663     GST_OBJECT_UNLOCK (pipeline);
664     /* let the parent bin select a clock */
665     clock =
666         GST_ELEMENT_CLASS (parent_class)->
667         provide_clock (GST_ELEMENT (pipeline));
668     /* no clock, use a system clock */
669     if (!clock) {
670       clock = gst_system_clock_obtain ();
671
672       GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline obtained system clock: %p (%s)",
673           clock, clock ? GST_STR_NULL (GST_OBJECT_NAME (clock)) : "-");
674     } else {
675       GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline obtained clock: %p (%s)",
676           clock, clock ? GST_STR_NULL (GST_OBJECT_NAME (clock)) : "-");
677     }
678   }
679   return clock;
680 }
681
682 /**
683  * gst_pipeline_get_clock:
684  * @pipeline: a #GstPipeline
685  *
686  * Gets the current clock used by @pipeline.
687  *
688  * Returns: a #GstClock, unref after usage.
689  */
690 GstClock *
691 gst_pipeline_get_clock (GstPipeline * pipeline)
692 {
693   g_return_val_if_fail (GST_IS_PIPELINE (pipeline), NULL);
694
695   return gst_pipeline_provide_clock_func (GST_ELEMENT (pipeline));
696 }
697
698
699 /**
700  * gst_pipeline_use_clock:
701  * @pipeline: a #GstPipeline
702  * @clock: the clock to use
703  *
704  * Force @pipeline to use the given @clock. The pipeline will
705  * always use the given clock even if new clock providers are added
706  * to this pipeline.
707  *
708  * If @clock is NULL all clocking will be disabled which will make
709  * the pipeline run as fast as possible.
710  *
711  * MT safe.
712  */
713 void
714 gst_pipeline_use_clock (GstPipeline * pipeline, GstClock * clock)
715 {
716   GstClock **clock_p;
717
718   g_return_if_fail (GST_IS_PIPELINE (pipeline));
719
720   GST_OBJECT_LOCK (pipeline);
721   GST_OBJECT_FLAG_SET (pipeline, GST_PIPELINE_FLAG_FIXED_CLOCK);
722
723   clock_p = &pipeline->fixed_clock;
724   gst_object_replace ((GstObject **) clock_p, (GstObject *) clock);
725   GST_OBJECT_UNLOCK (pipeline);
726
727   GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline using fixed clock %p (%s)", clock,
728       (clock ? GST_OBJECT_NAME (clock) : "nil"));
729 }
730
731 /**
732  * gst_pipeline_set_clock:
733  * @pipeline: a #GstPipeline
734  * @clock: the clock to set
735  *
736  * Set the clock for @pipeline. The clock will be distributed
737  * to all the elements managed by the pipeline.
738  *
739  * Returns: TRUE if the clock could be set on the pipeline. FALSE if
740  *   some element did not accept the clock.
741  *
742  * MT safe.
743  */
744 gboolean
745 gst_pipeline_set_clock (GstPipeline * pipeline, GstClock * clock)
746 {
747   g_return_val_if_fail (pipeline != NULL, FALSE);
748   g_return_val_if_fail (GST_IS_PIPELINE (pipeline), FALSE);
749
750   return GST_ELEMENT_CLASS (parent_class)->set_clock (GST_ELEMENT (pipeline),
751       clock);
752 }
753
754 /**
755  * gst_pipeline_auto_clock:
756  * @pipeline: a #GstPipeline
757  *
758  * Let @pipeline select a clock automatically. This is the default
759  * behaviour.
760  *
761  * Use this function if you previous forced a fixed clock with
762  * gst_pipeline_use_clock() and want to restore the default
763  * pipeline clock selection algorithm.
764  *
765  * MT safe.
766  */
767 void
768 gst_pipeline_auto_clock (GstPipeline * pipeline)
769 {
770   GstClock **clock_p;
771
772   g_return_if_fail (pipeline != NULL);
773   g_return_if_fail (GST_IS_PIPELINE (pipeline));
774
775   GST_OBJECT_LOCK (pipeline);
776   GST_OBJECT_FLAG_UNSET (pipeline, GST_PIPELINE_FLAG_FIXED_CLOCK);
777
778   clock_p = &pipeline->fixed_clock;
779   gst_object_replace ((GstObject **) clock_p, NULL);
780   GST_OBJECT_UNLOCK (pipeline);
781
782   GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline using automatic clock");
783 }
784
785 /**
786  * gst_pipeline_set_delay:
787  * @pipeline: a #GstPipeline
788  * @delay: the delay
789  *
790  * Set the expected delay needed for all elements to perform the
791  * PAUSED to PLAYING state change. @delay will be added to the
792  * base time of the elements so that they wait an additional @delay
793  * amount of time before starting to process buffers and cannot be
794  * #GST_CLOCK_TIME_NONE.
795  *
796  * This option is used for tuning purposes and should normally not be
797  * used.
798  *
799  * MT safe.
800  *
801  * Since: 0.10.5
802  */
803 void
804 gst_pipeline_set_delay (GstPipeline * pipeline, GstClockTime delay)
805 {
806   g_return_if_fail (GST_IS_PIPELINE (pipeline));
807   g_return_if_fail (delay != GST_CLOCK_TIME_NONE);
808
809   GST_OBJECT_LOCK (pipeline);
810   pipeline->delay = delay;
811   GST_OBJECT_UNLOCK (pipeline);
812 }
813
814 /**
815  * gst_pipeline_get_delay:
816  * @pipeline: a #GstPipeline
817  *
818  * Get the configured delay (see gst_pipeline_set_delay()).
819  *
820  * Returns: The configured delay.
821  *
822  * MT safe.
823  *
824  * Since: 0.10.5
825  */
826 GstClockTime
827 gst_pipeline_get_delay (GstPipeline * pipeline)
828 {
829   GstClockTime res;
830
831   g_return_val_if_fail (GST_IS_PIPELINE (pipeline), GST_CLOCK_TIME_NONE);
832
833   GST_OBJECT_LOCK (pipeline);
834   res = pipeline->delay;
835   GST_OBJECT_UNLOCK (pipeline);
836
837   return res;
838 }
839
840 /**
841  * gst_pipeline_set_auto_flush_bus:
842  * @pipeline: a #GstPipeline
843  * @auto_flush: whether or not to automatically flush the bus when
844  * the pipeline goes from READY to NULL state
845  *
846  * Usually, when a pipeline goes from READY to NULL state, it automatically
847  * flushes all pending messages on the bus, which is done for refcounting
848  * purposes, to break circular references.
849  *
850  * This means that applications that update state using (async) bus messages
851  * (e.g. do certain things when a pipeline goes from PAUSED to READY) might
852  * not get to see messages when the pipeline is shut down, because they might
853  * be flushed before they can be dispatched in the main thread. This behaviour
854  * can be disabled using this function.
855  *
856  * It is important that all messages on the bus are handled when the
857  * automatic flushing is disabled else memory leaks will be introduced.
858  *
859  * MT safe.
860  *
861  * Since: 0.10.4
862  */
863 void
864 gst_pipeline_set_auto_flush_bus (GstPipeline * pipeline, gboolean auto_flush)
865 {
866   g_return_if_fail (GST_IS_PIPELINE (pipeline));
867
868   GST_OBJECT_LOCK (pipeline);
869   pipeline->priv->auto_flush_bus = auto_flush;
870   GST_OBJECT_UNLOCK (pipeline);
871 }
872
873 /**
874  * gst_pipeline_get_auto_flush_bus:
875  * @pipeline: a #GstPipeline
876  *
877  * Check if @pipeline will automatically flush messages when going to
878  * the NULL state.
879  *
880  * Returns: whether the pipeline will automatically flush its bus when
881  * going from READY to NULL state or not.
882  *
883  * MT safe.
884  *
885  * Since: 0.10.4
886  */
887 gboolean
888 gst_pipeline_get_auto_flush_bus (GstPipeline * pipeline)
889 {
890   gboolean res;
891
892   g_return_val_if_fail (GST_IS_PIPELINE (pipeline), FALSE);
893
894   GST_OBJECT_LOCK (pipeline);
895   res = pipeline->priv->auto_flush_bus;
896   GST_OBJECT_UNLOCK (pipeline);
897
898   return res;
899 }