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