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