basesink: use dts and pts for sync
[platform/upstream/gstreamer.git] / libs / gst / base / gstbasesink.c
1 /* GStreamer
2  * Copyright (C) 2005-2007 Wim Taymans <wim.taymans@gmail.com>
3  *
4  * gstbasesink.c: Base class for sink elements
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 /**
23  * SECTION:gstbasesink
24  * @short_description: Base class for sink elements
25  * @see_also: #GstBaseTransform, #GstBaseSrc
26  *
27  * #GstBaseSink is the base class for sink elements in GStreamer, such as
28  * xvimagesink or filesink. It is a layer on top of #GstElement that provides a
29  * simplified interface to plugin writers. #GstBaseSink handles many details
30  * for you, for example: preroll, clock synchronization, state changes,
31  * activation in push or pull mode, and queries.
32  *
33  * In most cases, when writing sink elements, there is no need to implement
34  * class methods from #GstElement or to set functions on pads, because the
35  * #GstBaseSink infrastructure should be sufficient.
36  *
37  * #GstBaseSink provides support for exactly one sink pad, which should be
38  * named "sink". A sink implementation (subclass of #GstBaseSink) should
39  * install a pad template in its class_init function, like so:
40  * |[
41  * static void
42  * my_element_class_init (GstMyElementClass *klass)
43  * {
44  *   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
45  *
46  *   // sinktemplate should be a #GstStaticPadTemplate with direction
47  *   // #GST_PAD_SINK and name "sink"
48  *   gst_element_class_add_pad_template (gstelement_class,
49  *       gst_static_pad_template_get (&amp;sinktemplate));
50  *   // see #GstElementDetails
51  *   gst_element_class_set_details (gstelement_class, &amp;details);
52  * }
53  * ]|
54  *
55  * #GstBaseSink will handle the prerolling correctly. This means that it will
56  * return #GST_STATE_CHANGE_ASYNC from a state change to PAUSED until the first
57  * buffer arrives in this element. The base class will call the
58  * #GstBaseSinkClass.preroll() vmethod with this preroll buffer and will then
59  * commit the state change to the next asynchronously pending state.
60  *
61  * When the element is set to PLAYING, #GstBaseSink will synchronise on the
62  * clock using the times returned from #GstBaseSinkClass.get_times(). If this
63  * function returns #GST_CLOCK_TIME_NONE for the start time, no synchronisation
64  * will be done. Synchronisation can be disabled entirely by setting the object
65  * #GstBaseSink:sync property to %FALSE.
66  *
67  * After synchronisation the virtual method #GstBaseSinkClass.render() will be
68  * called. Subclasses should minimally implement this method.
69  *
70  * Since 0.10.3 subclasses that synchronise on the clock in the
71  * #GstBaseSinkClass.render() method are supported as well. These classes
72  * typically receive a buffer in the render method and can then potentially
73  * block on the clock while rendering. A typical example is an audiosink.
74  * Since 0.10.11 these subclasses can use gst_base_sink_wait_preroll() to
75  * perform the blocking wait.
76  *
77  * Upon receiving the EOS event in the PLAYING state, #GstBaseSink will wait
78  * for the clock to reach the time indicated by the stop time of the last
79  * #GstBaseSinkClass.get_times() call before posting an EOS message. When the
80  * element receives EOS in PAUSED, preroll completes, the event is queued and an
81  * EOS message is posted when going to PLAYING.
82  *
83  * #GstBaseSink will internally use the #GST_EVENT_NEWSEGMENT events to schedule
84  * synchronisation and clipping of buffers. Buffers that fall completely outside
85  * of the current segment are dropped. Buffers that fall partially in the
86  * segment are rendered (and prerolled). Subclasses should do any subbuffer
87  * clipping themselves when needed.
88  *
89  * #GstBaseSink will by default report the current playback position in
90  * #GST_FORMAT_TIME based on the current clock time and segment information.
91  * If no clock has been set on the element, the query will be forwarded
92  * upstream.
93  *
94  * The #GstBaseSinkClass.set_caps() function will be called when the subclass
95  * should configure itself to process a specific media type.
96  *
97  * The #GstBaseSinkClass.start() and #GstBaseSinkClass.stop() virtual methods
98  * will be called when resources should be allocated. Any 
99  * #GstBaseSinkClass.preroll(), #GstBaseSinkClass.render() and
100  * #GstBaseSinkClass.set_caps() function will be called between the
101  * #GstBaseSinkClass.start() and #GstBaseSinkClass.stop() calls.
102  *
103  * The #GstBaseSinkClass.event() virtual method will be called when an event is
104  * received by #GstBaseSink. Normally this method should only be overriden by
105  * very specific elements (such as file sinks) which need to handle the
106  * newsegment event specially.
107  *
108  * The #GstBaseSinkClass.unlock() method is called when the elements should
109  * unblock any blocking operations they perform in the
110  * #GstBaseSinkClass.render() method. This is mostly useful when the
111  * #GstBaseSinkClass.render() method performs a blocking write on a file
112  * descriptor, for example.
113  *
114  * The #GstBaseSink:max-lateness property affects how the sink deals with
115  * buffers that arrive too late in the sink. A buffer arrives too late in the
116  * sink when the presentation time (as a combination of the last segment, buffer
117  * timestamp and element base_time) plus the duration is before the current
118  * time of the clock.
119  * If the frame is later than max-lateness, the sink will drop the buffer
120  * without calling the render method.
121  * This feature is disabled if sync is disabled, the
122  * #GstBaseSinkClass.get_times() method does not return a valid start time or
123  * max-lateness is set to -1 (the default).
124  * Subclasses can use gst_base_sink_set_max_lateness() to configure the
125  * max-lateness value.
126  *
127  * The #GstBaseSink:qos property will enable the quality-of-service features of
128  * the basesink which gather statistics about the real-time performance of the
129  * clock synchronisation. For each buffer received in the sink, statistics are
130  * gathered and a QOS event is sent upstream with these numbers. This
131  * information can then be used by upstream elements to reduce their processing
132  * rate, for example.
133  *
134  * Since 0.10.15 the #GstBaseSink:async property can be used to instruct the
135  * sink to never perform an ASYNC state change. This feature is mostly usable
136  * when dealing with non-synchronized streams or sparse streams.
137  *
138  * Last reviewed on 2007-08-29 (0.10.15)
139  */
140
141 #ifdef HAVE_CONFIG_H
142 #  include "config.h"
143 #endif
144
145 #include <gst/gst_private.h>
146
147 #include "gstbasesink.h"
148 #include <gst/gstmarshal.h>
149 #include <gst/gst-i18n-lib.h>
150
151 GST_DEBUG_CATEGORY_STATIC (gst_base_sink_debug);
152 #define GST_CAT_DEFAULT gst_base_sink_debug
153
154 #define GST_BASE_SINK_GET_PRIVATE(obj)  \
155    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_BASE_SINK, GstBaseSinkPrivate))
156
157 #define GST_FLOW_STEP GST_FLOW_CUSTOM_ERROR
158
159 typedef struct
160 {
161   gboolean valid;               /* if this info is valid */
162   guint32 seqnum;               /* the seqnum of the STEP event */
163   GstFormat format;             /* the format of the amount */
164   guint64 amount;               /* the total amount of data to skip */
165   guint64 position;             /* the position in the stepped data */
166   guint64 duration;             /* the duration in time of the skipped data */
167   guint64 start;                /* running_time of the start */
168   gdouble rate;                 /* rate of skipping */
169   gdouble start_rate;           /* rate before skipping */
170   guint64 start_start;          /* start position skipping */
171   guint64 start_stop;           /* stop position skipping */
172   gboolean flush;               /* if this was a flushing step */
173   gboolean intermediate;        /* if this is an intermediate step */
174   gboolean need_preroll;        /* if we need preroll after this step */
175 } GstStepInfo;
176
177 struct _GstBaseSinkPrivate
178 {
179   gint qos_enabled;             /* ATOMIC */
180   gboolean async_enabled;
181   GstClockTimeDiff ts_offset;
182   GstClockTime render_delay;
183
184   /* start, stop of current buffer, stream time, used to report position */
185   GstClockTime current_sstart;
186   GstClockTime current_sstop;
187
188   /* start, stop and jitter of current buffer, running time */
189   GstClockTime current_rstart;
190   GstClockTime current_rstop;
191   GstClockTimeDiff current_jitter;
192   /* the running time of the previous buffer */
193   GstClockTime prev_rstart;
194
195   /* EOS sync time in running time */
196   GstClockTime eos_rtime;
197
198   /* last buffer that arrived in time, running time */
199   GstClockTime last_render_time;
200   /* when the last buffer left the sink, running time */
201   GstClockTime last_left;
202
203   /* running averages go here these are done on running time */
204   GstClockTime avg_pt;
205   GstClockTime avg_duration;
206   gdouble avg_rate;
207   GstClockTime avg_in_diff;
208
209   /* these are done on system time. avg_jitter and avg_render are
210    * compared to eachother to see if the rendering time takes a
211    * huge amount of the processing, If so we are flooded with
212    * buffers. */
213   GstClockTime last_left_systime;
214   GstClockTime avg_jitter;
215   GstClockTime start, stop;
216   GstClockTime avg_render;
217
218   /* number of rendered and dropped frames */
219   guint64 rendered;
220   guint64 dropped;
221
222   /* latency stuff */
223   GstClockTime latency;
224
225   /* if we already commited the state */
226   gboolean commited;
227   /* state change to playing ongoing */
228   gboolean to_playing;
229
230   /* when we received EOS */
231   gboolean received_eos;
232
233   /* when we are prerolled and able to report latency */
234   gboolean have_latency;
235
236   /* the last buffer we prerolled or rendered. Useful for making snapshots */
237   gint enable_last_sample;      /* atomic */
238   GstBuffer *last_buffer;
239   GstCaps *last_caps;
240
241   /* negotiated caps */
242   GstCaps *caps;
243
244   /* blocksize for pulling */
245   guint blocksize;
246
247   gboolean discont;
248
249   /* seqnum of the stream */
250   guint32 seqnum;
251
252   gboolean call_preroll;
253   gboolean step_unlock;
254
255   /* we have a pending and a current step operation */
256   GstStepInfo current_step;
257   GstStepInfo pending_step;
258
259   /* Cached GstClockID */
260   GstClockID cached_clock_id;
261
262   /* for throttling and QoS */
263   GstClockTime earliest_in_time;
264   GstClockTime throttle_time;
265
266   gboolean reset_time;
267 };
268
269 #define DO_RUNNING_AVG(avg,val,size) (((val) + ((size)-1) * (avg)) / (size))
270
271 /* generic running average, this has a neutral window size */
272 #define UPDATE_RUNNING_AVG(avg,val)   DO_RUNNING_AVG(avg,val,8)
273
274 /* the windows for these running averages are experimentally obtained.
275  * possitive values get averaged more while negative values use a small
276  * window so we can react faster to badness. */
277 #define UPDATE_RUNNING_AVG_P(avg,val) DO_RUNNING_AVG(avg,val,16)
278 #define UPDATE_RUNNING_AVG_N(avg,val) DO_RUNNING_AVG(avg,val,4)
279
280 /* BaseSink properties */
281
282 #define DEFAULT_CAN_ACTIVATE_PULL FALSE /* fixme: enable me */
283 #define DEFAULT_CAN_ACTIVATE_PUSH TRUE
284
285 #define DEFAULT_SYNC                TRUE
286 #define DEFAULT_MAX_LATENESS        -1
287 #define DEFAULT_QOS                 FALSE
288 #define DEFAULT_ASYNC               TRUE
289 #define DEFAULT_TS_OFFSET           0
290 #define DEFAULT_BLOCKSIZE           4096
291 #define DEFAULT_RENDER_DELAY        0
292 #define DEFAULT_ENABLE_LAST_SAMPLE  TRUE
293 #define DEFAULT_THROTTLE_TIME       0
294
295 enum
296 {
297   PROP_0,
298   PROP_SYNC,
299   PROP_MAX_LATENESS,
300   PROP_QOS,
301   PROP_ASYNC,
302   PROP_TS_OFFSET,
303   PROP_ENABLE_LAST_SAMPLE,
304   PROP_LAST_SAMPLE,
305   PROP_BLOCKSIZE,
306   PROP_RENDER_DELAY,
307   PROP_THROTTLE_TIME,
308   PROP_LAST
309 };
310
311 static GstElementClass *parent_class = NULL;
312
313 static void gst_base_sink_class_init (GstBaseSinkClass * klass);
314 static void gst_base_sink_init (GstBaseSink * trans, gpointer g_class);
315 static void gst_base_sink_finalize (GObject * object);
316
317 GType
318 gst_base_sink_get_type (void)
319 {
320   static volatile gsize base_sink_type = 0;
321
322   if (g_once_init_enter (&base_sink_type)) {
323     GType _type;
324     static const GTypeInfo base_sink_info = {
325       sizeof (GstBaseSinkClass),
326       NULL,
327       NULL,
328       (GClassInitFunc) gst_base_sink_class_init,
329       NULL,
330       NULL,
331       sizeof (GstBaseSink),
332       0,
333       (GInstanceInitFunc) gst_base_sink_init,
334     };
335
336     _type = g_type_register_static (GST_TYPE_ELEMENT,
337         "GstBaseSink", &base_sink_info, G_TYPE_FLAG_ABSTRACT);
338     g_once_init_leave (&base_sink_type, _type);
339   }
340   return base_sink_type;
341 }
342
343 static void gst_base_sink_set_property (GObject * object, guint prop_id,
344     const GValue * value, GParamSpec * pspec);
345 static void gst_base_sink_get_property (GObject * object, guint prop_id,
346     GValue * value, GParamSpec * pspec);
347
348 static gboolean gst_base_sink_send_event (GstElement * element,
349     GstEvent * event);
350 static gboolean default_element_query (GstElement * element, GstQuery * query);
351
352 static GstCaps *gst_base_sink_default_get_caps (GstBaseSink * sink,
353     GstCaps * caps);
354 static gboolean gst_base_sink_default_set_caps (GstBaseSink * sink,
355     GstCaps * caps);
356 static void gst_base_sink_default_get_times (GstBaseSink * basesink,
357     GstBuffer * buffer, GstClockTime * start, GstClockTime * end);
358 static gboolean gst_base_sink_set_flushing (GstBaseSink * basesink,
359     GstPad * pad, gboolean flushing);
360 static gboolean gst_base_sink_default_activate_pull (GstBaseSink * basesink,
361     gboolean active);
362 static gboolean gst_base_sink_default_do_seek (GstBaseSink * sink,
363     GstSegment * segment);
364 static gboolean gst_base_sink_default_prepare_seek_segment (GstBaseSink * sink,
365     GstEvent * event, GstSegment * segment);
366
367 static GstStateChangeReturn gst_base_sink_change_state (GstElement * element,
368     GstStateChange transition);
369
370 static gboolean gst_base_sink_sink_query (GstPad * pad, GstObject * parent,
371     GstQuery * query);
372 static GstFlowReturn gst_base_sink_chain (GstPad * pad, GstObject * parent,
373     GstBuffer * buffer);
374 static GstFlowReturn gst_base_sink_chain_list (GstPad * pad, GstObject * parent,
375     GstBufferList * list);
376
377 static void gst_base_sink_loop (GstPad * pad);
378 static gboolean gst_base_sink_pad_activate (GstPad * pad, GstObject * parent);
379 static gboolean gst_base_sink_pad_activate_mode (GstPad * pad,
380     GstObject * parent, GstPadMode mode, gboolean active);
381 static gboolean gst_base_sink_default_event (GstBaseSink * basesink,
382     GstEvent * event);
383 static GstFlowReturn gst_base_sink_default_wait_eos (GstBaseSink * basesink,
384     GstEvent * event);
385 static gboolean gst_base_sink_event (GstPad * pad, GstObject * parent,
386     GstEvent * event);
387
388 static gboolean gst_base_sink_default_query (GstBaseSink * sink,
389     GstQuery * query);
390
391 static gboolean gst_base_sink_negotiate_pull (GstBaseSink * basesink);
392 static void gst_base_sink_default_fixate (GstBaseSink * bsink, GstCaps * caps);
393 static void gst_base_sink_fixate (GstBaseSink * bsink, GstCaps * caps);
394
395 /* check if an object was too late */
396 static gboolean gst_base_sink_is_too_late (GstBaseSink * basesink,
397     GstMiniObject * obj, GstClockTime rstart, GstClockTime rstop,
398     GstClockReturn status, GstClockTimeDiff jitter);
399
400 static void
401 gst_base_sink_class_init (GstBaseSinkClass * klass)
402 {
403   GObjectClass *gobject_class;
404   GstElementClass *gstelement_class;
405
406   gobject_class = G_OBJECT_CLASS (klass);
407   gstelement_class = GST_ELEMENT_CLASS (klass);
408
409   GST_DEBUG_CATEGORY_INIT (gst_base_sink_debug, "basesink", 0,
410       "basesink element");
411
412   g_type_class_add_private (klass, sizeof (GstBaseSinkPrivate));
413
414   parent_class = g_type_class_peek_parent (klass);
415
416   gobject_class->finalize = gst_base_sink_finalize;
417   gobject_class->set_property = gst_base_sink_set_property;
418   gobject_class->get_property = gst_base_sink_get_property;
419
420   g_object_class_install_property (gobject_class, PROP_SYNC,
421       g_param_spec_boolean ("sync", "Sync", "Sync on the clock", DEFAULT_SYNC,
422           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
423
424   g_object_class_install_property (gobject_class, PROP_MAX_LATENESS,
425       g_param_spec_int64 ("max-lateness", "Max Lateness",
426           "Maximum number of nanoseconds that a buffer can be late before it "
427           "is dropped (-1 unlimited)", -1, G_MAXINT64, DEFAULT_MAX_LATENESS,
428           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
429
430   g_object_class_install_property (gobject_class, PROP_QOS,
431       g_param_spec_boolean ("qos", "Qos",
432           "Generate Quality-of-Service events upstream", DEFAULT_QOS,
433           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
434   /**
435    * GstBaseSink:async
436    *
437    * If set to #TRUE, the basesink will perform asynchronous state changes.
438    * When set to #FALSE, the sink will not signal the parent when it prerolls.
439    * Use this option when dealing with sparse streams or when synchronisation is
440    * not required.
441    *
442    * Since: 0.10.15
443    */
444   g_object_class_install_property (gobject_class, PROP_ASYNC,
445       g_param_spec_boolean ("async", "Async",
446           "Go asynchronously to PAUSED", DEFAULT_ASYNC,
447           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
448   /**
449    * GstBaseSink:ts-offset
450    *
451    * Controls the final synchronisation, a negative value will render the buffer
452    * earlier while a positive value delays playback. This property can be
453    * used to fix synchronisation in bad files.
454    *
455    * Since: 0.10.15
456    */
457   g_object_class_install_property (gobject_class, PROP_TS_OFFSET,
458       g_param_spec_int64 ("ts-offset", "TS Offset",
459           "Timestamp offset in nanoseconds", G_MININT64, G_MAXINT64,
460           DEFAULT_TS_OFFSET, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
461
462   /**
463    * GstBaseSink:enable-last-sample
464    *
465    * Enable the last-sample property. If FALSE, basesink doesn't keep a
466    * reference to the last buffer arrived and the last-sample property is always
467    * set to NULL. This can be useful if you need buffers to be released as soon
468    * as possible, eg. if you're using a buffer pool.
469    *
470    * Since: 0.10.30
471    */
472   g_object_class_install_property (gobject_class, PROP_ENABLE_LAST_SAMPLE,
473       g_param_spec_boolean ("enable-last-sample", "Enable Last Buffer",
474           "Enable the last-sample property", DEFAULT_ENABLE_LAST_SAMPLE,
475           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
476
477   /**
478    * GstBaseSink:last-sample
479    *
480    * The last buffer that arrived in the sink and was used for preroll or for
481    * rendering. This property can be used to generate thumbnails. This property
482    * can be NULL when the sink has not yet received a bufer.
483    *
484    * Since: 0.10.15
485    */
486   g_object_class_install_property (gobject_class, PROP_LAST_SAMPLE,
487       g_param_spec_boxed ("last-sample", "Last Sample",
488           "The last sample received in the sink", GST_TYPE_SAMPLE,
489           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
490   /**
491    * GstBaseSink:blocksize
492    *
493    * The amount of bytes to pull when operating in pull mode.
494    *
495    * Since: 0.10.22
496    */
497   /* FIXME 0.11: blocksize property should be int, otherwise min>max.. */
498   g_object_class_install_property (gobject_class, PROP_BLOCKSIZE,
499       g_param_spec_uint ("blocksize", "Block size",
500           "Size in bytes to pull per buffer (0 = default)", 0, G_MAXUINT,
501           DEFAULT_BLOCKSIZE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
502   /**
503    * GstBaseSink:render-delay
504    *
505    * The additional delay between synchronisation and actual rendering of the
506    * media. This property will add additional latency to the device in order to
507    * make other sinks compensate for the delay.
508    *
509    * Since: 0.10.22
510    */
511   g_object_class_install_property (gobject_class, PROP_RENDER_DELAY,
512       g_param_spec_uint64 ("render-delay", "Render Delay",
513           "Additional render delay of the sink in nanoseconds", 0, G_MAXUINT64,
514           DEFAULT_RENDER_DELAY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
515   /**
516    * GstBaseSink:throttle-time
517    *
518    * The time to insert between buffers. This property can be used to control
519    * the maximum amount of buffers per second to render. Setting this property
520    * to a value bigger than 0 will make the sink create THROTTLE QoS events.
521    *
522    * Since: 0.10.33
523    */
524   g_object_class_install_property (gobject_class, PROP_THROTTLE_TIME,
525       g_param_spec_uint64 ("throttle-time", "Throttle time",
526           "The time to keep between rendered buffers (unused)", 0, G_MAXUINT64,
527           DEFAULT_THROTTLE_TIME, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
528
529   gstelement_class->change_state =
530       GST_DEBUG_FUNCPTR (gst_base_sink_change_state);
531   gstelement_class->send_event = GST_DEBUG_FUNCPTR (gst_base_sink_send_event);
532   gstelement_class->query = GST_DEBUG_FUNCPTR (default_element_query);
533
534   klass->get_caps = GST_DEBUG_FUNCPTR (gst_base_sink_default_get_caps);
535   klass->set_caps = GST_DEBUG_FUNCPTR (gst_base_sink_default_set_caps);
536   klass->fixate = GST_DEBUG_FUNCPTR (gst_base_sink_default_fixate);
537   klass->activate_pull =
538       GST_DEBUG_FUNCPTR (gst_base_sink_default_activate_pull);
539   klass->get_times = GST_DEBUG_FUNCPTR (gst_base_sink_default_get_times);
540   klass->query = GST_DEBUG_FUNCPTR (gst_base_sink_default_query);
541   klass->event = GST_DEBUG_FUNCPTR (gst_base_sink_default_event);
542   klass->wait_eos = GST_DEBUG_FUNCPTR (gst_base_sink_default_wait_eos);
543
544   /* Registering debug symbols for function pointers */
545   GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_fixate);
546   GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_pad_activate);
547   GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_pad_activate_mode);
548   GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_event);
549   GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_chain);
550   GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_chain_list);
551   GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_sink_query);
552 }
553
554 static GstCaps *
555 gst_base_sink_query_caps (GstBaseSink * bsink, GstPad * pad, GstCaps * filter)
556 {
557   GstBaseSinkClass *bclass;
558   GstCaps *caps = NULL;
559   gboolean fixed;
560
561   bclass = GST_BASE_SINK_GET_CLASS (bsink);
562   fixed = GST_PAD_IS_FIXED_CAPS (pad);
563
564   if (fixed || bsink->pad_mode == GST_PAD_MODE_PULL) {
565     /* if we are operating in pull mode or fixed caps, we only accept the
566      * currently negotiated caps */
567     caps = gst_pad_get_current_caps (pad);
568   }
569   if (caps == NULL) {
570     if (bclass->get_caps)
571       caps = bclass->get_caps (bsink, filter);
572
573     if (caps == NULL) {
574       GstPadTemplate *pad_template;
575
576       pad_template =
577           gst_element_class_get_pad_template (GST_ELEMENT_CLASS (bclass),
578           "sink");
579       if (pad_template != NULL) {
580         caps = gst_pad_template_get_caps (pad_template);
581
582         if (filter) {
583           GstCaps *intersection;
584
585           intersection =
586               gst_caps_intersect_full (filter, caps, GST_CAPS_INTERSECT_FIRST);
587           gst_caps_unref (caps);
588           caps = intersection;
589         }
590       }
591     }
592   }
593
594   return caps;
595 }
596
597 static void
598 gst_base_sink_default_fixate (GstBaseSink * bsink, GstCaps * caps)
599 {
600   GST_DEBUG_OBJECT (bsink, "using default caps fixate function");
601   gst_caps_fixate (caps);
602 }
603
604 static void
605 gst_base_sink_fixate (GstBaseSink * bsink, GstCaps * caps)
606 {
607   GstBaseSinkClass *bclass;
608
609   bclass = GST_BASE_SINK_GET_CLASS (bsink);
610
611   if (bclass->fixate)
612     bclass->fixate (bsink, caps);
613 }
614
615 static void
616 gst_base_sink_init (GstBaseSink * basesink, gpointer g_class)
617 {
618   GstPadTemplate *pad_template;
619   GstBaseSinkPrivate *priv;
620
621   basesink->priv = priv = GST_BASE_SINK_GET_PRIVATE (basesink);
622
623   pad_template =
624       gst_element_class_get_pad_template (GST_ELEMENT_CLASS (g_class), "sink");
625   g_return_if_fail (pad_template != NULL);
626
627   basesink->sinkpad = gst_pad_new_from_template (pad_template, "sink");
628
629   gst_pad_set_activate_function (basesink->sinkpad, gst_base_sink_pad_activate);
630   gst_pad_set_activatemode_function (basesink->sinkpad,
631       gst_base_sink_pad_activate_mode);
632   gst_pad_set_query_function (basesink->sinkpad, gst_base_sink_sink_query);
633   gst_pad_set_event_function (basesink->sinkpad, gst_base_sink_event);
634   gst_pad_set_chain_function (basesink->sinkpad, gst_base_sink_chain);
635   gst_pad_set_chain_list_function (basesink->sinkpad, gst_base_sink_chain_list);
636   gst_element_add_pad (GST_ELEMENT_CAST (basesink), basesink->sinkpad);
637
638   basesink->pad_mode = GST_PAD_MODE_NONE;
639   basesink->preroll_lock = g_mutex_new ();
640   basesink->preroll_cond = g_cond_new ();
641   priv->have_latency = FALSE;
642
643   basesink->can_activate_push = DEFAULT_CAN_ACTIVATE_PUSH;
644   basesink->can_activate_pull = DEFAULT_CAN_ACTIVATE_PULL;
645
646   basesink->sync = DEFAULT_SYNC;
647   basesink->max_lateness = DEFAULT_MAX_LATENESS;
648   g_atomic_int_set (&priv->qos_enabled, DEFAULT_QOS);
649   priv->async_enabled = DEFAULT_ASYNC;
650   priv->ts_offset = DEFAULT_TS_OFFSET;
651   priv->render_delay = DEFAULT_RENDER_DELAY;
652   priv->blocksize = DEFAULT_BLOCKSIZE;
653   priv->cached_clock_id = NULL;
654   g_atomic_int_set (&priv->enable_last_sample, DEFAULT_ENABLE_LAST_SAMPLE);
655   priv->throttle_time = DEFAULT_THROTTLE_TIME;
656
657   GST_OBJECT_FLAG_SET (basesink, GST_ELEMENT_FLAG_SINK);
658 }
659
660 static void
661 gst_base_sink_finalize (GObject * object)
662 {
663   GstBaseSink *basesink;
664
665   basesink = GST_BASE_SINK (object);
666
667   g_mutex_free (basesink->preroll_lock);
668   g_cond_free (basesink->preroll_cond);
669
670   G_OBJECT_CLASS (parent_class)->finalize (object);
671 }
672
673 /**
674  * gst_base_sink_set_sync:
675  * @sink: the sink
676  * @sync: the new sync value.
677  *
678  * Configures @sink to synchronize on the clock or not. When
679  * @sync is FALSE, incoming samples will be played as fast as
680  * possible. If @sync is TRUE, the timestamps of the incomming
681  * buffers will be used to schedule the exact render time of its
682  * contents.
683  *
684  * Since: 0.10.4
685  */
686 void
687 gst_base_sink_set_sync (GstBaseSink * sink, gboolean sync)
688 {
689   g_return_if_fail (GST_IS_BASE_SINK (sink));
690
691   GST_OBJECT_LOCK (sink);
692   sink->sync = sync;
693   GST_OBJECT_UNLOCK (sink);
694 }
695
696 /**
697  * gst_base_sink_get_sync:
698  * @sink: the sink
699  *
700  * Checks if @sink is currently configured to synchronize against the
701  * clock.
702  *
703  * Returns: TRUE if the sink is configured to synchronize against the clock.
704  *
705  * Since: 0.10.4
706  */
707 gboolean
708 gst_base_sink_get_sync (GstBaseSink * sink)
709 {
710   gboolean res;
711
712   g_return_val_if_fail (GST_IS_BASE_SINK (sink), FALSE);
713
714   GST_OBJECT_LOCK (sink);
715   res = sink->sync;
716   GST_OBJECT_UNLOCK (sink);
717
718   return res;
719 }
720
721 /**
722  * gst_base_sink_set_max_lateness:
723  * @sink: the sink
724  * @max_lateness: the new max lateness value.
725  *
726  * Sets the new max lateness value to @max_lateness. This value is
727  * used to decide if a buffer should be dropped or not based on the
728  * buffer timestamp and the current clock time. A value of -1 means
729  * an unlimited time.
730  *
731  * Since: 0.10.4
732  */
733 void
734 gst_base_sink_set_max_lateness (GstBaseSink * sink, gint64 max_lateness)
735 {
736   g_return_if_fail (GST_IS_BASE_SINK (sink));
737
738   GST_OBJECT_LOCK (sink);
739   sink->max_lateness = max_lateness;
740   GST_OBJECT_UNLOCK (sink);
741 }
742
743 /**
744  * gst_base_sink_get_max_lateness:
745  * @sink: the sink
746  *
747  * Gets the max lateness value. See gst_base_sink_set_max_lateness for
748  * more details.
749  *
750  * Returns: The maximum time in nanoseconds that a buffer can be late
751  * before it is dropped and not rendered. A value of -1 means an
752  * unlimited time.
753  *
754  * Since: 0.10.4
755  */
756 gint64
757 gst_base_sink_get_max_lateness (GstBaseSink * sink)
758 {
759   gint64 res;
760
761   g_return_val_if_fail (GST_IS_BASE_SINK (sink), -1);
762
763   GST_OBJECT_LOCK (sink);
764   res = sink->max_lateness;
765   GST_OBJECT_UNLOCK (sink);
766
767   return res;
768 }
769
770 /**
771  * gst_base_sink_set_qos_enabled:
772  * @sink: the sink
773  * @enabled: the new qos value.
774  *
775  * Configures @sink to send Quality-of-Service events upstream.
776  *
777  * Since: 0.10.5
778  */
779 void
780 gst_base_sink_set_qos_enabled (GstBaseSink * sink, gboolean enabled)
781 {
782   g_return_if_fail (GST_IS_BASE_SINK (sink));
783
784   g_atomic_int_set (&sink->priv->qos_enabled, enabled);
785 }
786
787 /**
788  * gst_base_sink_is_qos_enabled:
789  * @sink: the sink
790  *
791  * Checks if @sink is currently configured to send Quality-of-Service events
792  * upstream.
793  *
794  * Returns: TRUE if the sink is configured to perform Quality-of-Service.
795  *
796  * Since: 0.10.5
797  */
798 gboolean
799 gst_base_sink_is_qos_enabled (GstBaseSink * sink)
800 {
801   gboolean res;
802
803   g_return_val_if_fail (GST_IS_BASE_SINK (sink), FALSE);
804
805   res = g_atomic_int_get (&sink->priv->qos_enabled);
806
807   return res;
808 }
809
810 /**
811  * gst_base_sink_set_async_enabled:
812  * @sink: the sink
813  * @enabled: the new async value.
814  *
815  * Configures @sink to perform all state changes asynchronusly. When async is
816  * disabled, the sink will immediately go to PAUSED instead of waiting for a
817  * preroll buffer. This feature is useful if the sink does not synchronize
818  * against the clock or when it is dealing with sparse streams.
819  *
820  * Since: 0.10.15
821  */
822 void
823 gst_base_sink_set_async_enabled (GstBaseSink * sink, gboolean enabled)
824 {
825   g_return_if_fail (GST_IS_BASE_SINK (sink));
826
827   GST_BASE_SINK_PREROLL_LOCK (sink);
828   g_atomic_int_set (&sink->priv->async_enabled, enabled);
829   GST_LOG_OBJECT (sink, "set async enabled to %d", enabled);
830   GST_BASE_SINK_PREROLL_UNLOCK (sink);
831 }
832
833 /**
834  * gst_base_sink_is_async_enabled:
835  * @sink: the sink
836  *
837  * Checks if @sink is currently configured to perform asynchronous state
838  * changes to PAUSED.
839  *
840  * Returns: TRUE if the sink is configured to perform asynchronous state
841  * changes.
842  *
843  * Since: 0.10.15
844  */
845 gboolean
846 gst_base_sink_is_async_enabled (GstBaseSink * sink)
847 {
848   gboolean res;
849
850   g_return_val_if_fail (GST_IS_BASE_SINK (sink), FALSE);
851
852   res = g_atomic_int_get (&sink->priv->async_enabled);
853
854   return res;
855 }
856
857 /**
858  * gst_base_sink_set_ts_offset:
859  * @sink: the sink
860  * @offset: the new offset
861  *
862  * Adjust the synchronisation of @sink with @offset. A negative value will
863  * render buffers earlier than their timestamp. A positive value will delay
864  * rendering. This function can be used to fix playback of badly timestamped
865  * buffers.
866  *
867  * Since: 0.10.15
868  */
869 void
870 gst_base_sink_set_ts_offset (GstBaseSink * sink, GstClockTimeDiff offset)
871 {
872   g_return_if_fail (GST_IS_BASE_SINK (sink));
873
874   GST_OBJECT_LOCK (sink);
875   sink->priv->ts_offset = offset;
876   GST_LOG_OBJECT (sink, "set time offset to %" G_GINT64_FORMAT, offset);
877   GST_OBJECT_UNLOCK (sink);
878 }
879
880 /**
881  * gst_base_sink_get_ts_offset:
882  * @sink: the sink
883  *
884  * Get the synchronisation offset of @sink.
885  *
886  * Returns: The synchronisation offset.
887  *
888  * Since: 0.10.15
889  */
890 GstClockTimeDiff
891 gst_base_sink_get_ts_offset (GstBaseSink * sink)
892 {
893   GstClockTimeDiff res;
894
895   g_return_val_if_fail (GST_IS_BASE_SINK (sink), 0);
896
897   GST_OBJECT_LOCK (sink);
898   res = sink->priv->ts_offset;
899   GST_OBJECT_UNLOCK (sink);
900
901   return res;
902 }
903
904 /**
905  * gst_base_sink_get_last_sample:
906  * @sink: the sink
907  *
908  * Get the last sample that arrived in the sink and was used for preroll or for
909  * rendering. This property can be used to generate thumbnails.
910  *
911  * The #GstCaps on the sample can be used to determine the type of the buffer.
912  *
913  * Free-function: gst_sample_unref
914  *
915  * Returns: (transfer full): a #GstSample. gst_sample_unref() after usage.
916  *     This function returns NULL when no buffer has arrived in the sink yet
917  *     or when the sink is not in PAUSED or PLAYING.
918  *
919  * Since: 0.10.15
920  */
921 GstSample *
922 gst_base_sink_get_last_sample (GstBaseSink * sink)
923 {
924   GstSample *res = NULL;
925
926   g_return_val_if_fail (GST_IS_BASE_SINK (sink), NULL);
927
928   GST_OBJECT_LOCK (sink);
929   if (sink->priv->last_buffer) {
930     res = gst_sample_new (sink->priv->last_buffer,
931         sink->priv->last_caps, &sink->segment, NULL);
932   }
933   GST_OBJECT_UNLOCK (sink);
934
935   return res;
936 }
937
938 /* with OBJECT_LOCK */
939 static void
940 gst_base_sink_set_last_buffer_unlocked (GstBaseSink * sink, GstBuffer * buffer)
941 {
942   GstBuffer *old;
943
944   old = sink->priv->last_buffer;
945   if (G_LIKELY (old != buffer)) {
946     GST_DEBUG_OBJECT (sink, "setting last buffer to %p", buffer);
947     if (G_LIKELY (buffer))
948       gst_buffer_ref (buffer);
949     sink->priv->last_buffer = buffer;
950     if (buffer)
951       /* copy over the caps */
952       gst_caps_replace (&sink->priv->last_caps, sink->priv->caps);
953     else
954       gst_caps_replace (&sink->priv->last_caps, NULL);
955   } else {
956     old = NULL;
957   }
958   /* avoid unreffing with the lock because cleanup code might want to take the
959    * lock too */
960   if (G_LIKELY (old)) {
961     GST_OBJECT_UNLOCK (sink);
962     gst_buffer_unref (old);
963     GST_OBJECT_LOCK (sink);
964   }
965 }
966
967 static void
968 gst_base_sink_set_last_buffer (GstBaseSink * sink, GstBuffer * buffer)
969 {
970   if (!g_atomic_int_get (&sink->priv->enable_last_sample))
971     return;
972
973   GST_OBJECT_LOCK (sink);
974   gst_base_sink_set_last_buffer_unlocked (sink, buffer);
975   GST_OBJECT_UNLOCK (sink);
976 }
977
978 /**
979  * gst_base_sink_set_last_sample_enabled:
980  * @sink: the sink
981  * @enabled: the new enable-last-sample value.
982  *
983  * Configures @sink to store the last received sample in the last-sample
984  * property.
985  *
986  * Since: 0.10.30
987  */
988 void
989 gst_base_sink_set_last_sample_enabled (GstBaseSink * sink, gboolean enabled)
990 {
991   g_return_if_fail (GST_IS_BASE_SINK (sink));
992
993   /* Only take lock if we change the value */
994   if (g_atomic_int_compare_and_exchange (&sink->priv->enable_last_sample,
995           !enabled, enabled) && !enabled) {
996     GST_OBJECT_LOCK (sink);
997     gst_base_sink_set_last_buffer_unlocked (sink, NULL);
998     GST_OBJECT_UNLOCK (sink);
999   }
1000 }
1001
1002 /**
1003  * gst_base_sink_is_last_sample_enabled:
1004  * @sink: the sink
1005  *
1006  * Checks if @sink is currently configured to store the last received sample in
1007  * the last-sample property.
1008  *
1009  * Returns: TRUE if the sink is configured to store the last received sample.
1010  *
1011  * Since: 0.10.30
1012  */
1013 gboolean
1014 gst_base_sink_is_last_sample_enabled (GstBaseSink * sink)
1015 {
1016   g_return_val_if_fail (GST_IS_BASE_SINK (sink), FALSE);
1017
1018   return g_atomic_int_get (&sink->priv->enable_last_sample);
1019 }
1020
1021 /**
1022  * gst_base_sink_get_latency:
1023  * @sink: the sink
1024  *
1025  * Get the currently configured latency.
1026  *
1027  * Returns: The configured latency.
1028  *
1029  * Since: 0.10.12
1030  */
1031 GstClockTime
1032 gst_base_sink_get_latency (GstBaseSink * sink)
1033 {
1034   GstClockTime res;
1035
1036   GST_OBJECT_LOCK (sink);
1037   res = sink->priv->latency;
1038   GST_OBJECT_UNLOCK (sink);
1039
1040   return res;
1041 }
1042
1043 /**
1044  * gst_base_sink_query_latency:
1045  * @sink: the sink
1046  * @live: (out) (allow-none): if the sink is live
1047  * @upstream_live: (out) (allow-none): if an upstream element is live
1048  * @min_latency: (out) (allow-none): the min latency of the upstream elements
1049  * @max_latency: (out) (allow-none): the max latency of the upstream elements
1050  *
1051  * Query the sink for the latency parameters. The latency will be queried from
1052  * the upstream elements. @live will be TRUE if @sink is configured to
1053  * synchronize against the clock. @upstream_live will be TRUE if an upstream
1054  * element is live.
1055  *
1056  * If both @live and @upstream_live are TRUE, the sink will want to compensate
1057  * for the latency introduced by the upstream elements by setting the
1058  * @min_latency to a strictly possitive value.
1059  *
1060  * This function is mostly used by subclasses.
1061  *
1062  * Returns: TRUE if the query succeeded.
1063  *
1064  * Since: 0.10.12
1065  */
1066 gboolean
1067 gst_base_sink_query_latency (GstBaseSink * sink, gboolean * live,
1068     gboolean * upstream_live, GstClockTime * min_latency,
1069     GstClockTime * max_latency)
1070 {
1071   gboolean l, us_live, res, have_latency;
1072   GstClockTime min, max, render_delay;
1073   GstQuery *query;
1074   GstClockTime us_min, us_max;
1075
1076   /* we are live when we sync to the clock */
1077   GST_OBJECT_LOCK (sink);
1078   l = sink->sync;
1079   have_latency = sink->priv->have_latency;
1080   render_delay = sink->priv->render_delay;
1081   GST_OBJECT_UNLOCK (sink);
1082
1083   /* assume no latency */
1084   min = 0;
1085   max = -1;
1086   us_live = FALSE;
1087
1088   if (have_latency) {
1089     GST_DEBUG_OBJECT (sink, "we are ready for LATENCY query");
1090     /* we are ready for a latency query this is when we preroll or when we are
1091      * not async. */
1092     query = gst_query_new_latency ();
1093
1094     /* ask the peer for the latency */
1095     if ((res = gst_pad_peer_query (sink->sinkpad, query))) {
1096       /* get upstream min and max latency */
1097       gst_query_parse_latency (query, &us_live, &us_min, &us_max);
1098
1099       if (us_live) {
1100         /* upstream live, use its latency, subclasses should use these
1101          * values to create the complete latency. */
1102         min = us_min;
1103         max = us_max;
1104       }
1105       if (l) {
1106         /* we need to add the render delay if we are live */
1107         if (min != -1)
1108           min += render_delay;
1109         if (max != -1)
1110           max += render_delay;
1111       }
1112     }
1113     gst_query_unref (query);
1114   } else {
1115     GST_DEBUG_OBJECT (sink, "we are not yet ready for LATENCY query");
1116     res = FALSE;
1117   }
1118
1119   /* not live, we tried to do the query, if it failed we return TRUE anyway */
1120   if (!res) {
1121     if (!l) {
1122       res = TRUE;
1123       GST_DEBUG_OBJECT (sink, "latency query failed but we are not live");
1124     } else {
1125       GST_DEBUG_OBJECT (sink, "latency query failed and we are live");
1126     }
1127   }
1128
1129   if (res) {
1130     GST_DEBUG_OBJECT (sink, "latency query: live: %d, have_latency %d,"
1131         " upstream: %d, min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT, l,
1132         have_latency, us_live, GST_TIME_ARGS (min), GST_TIME_ARGS (max));
1133
1134     if (live)
1135       *live = l;
1136     if (upstream_live)
1137       *upstream_live = us_live;
1138     if (min_latency)
1139       *min_latency = min;
1140     if (max_latency)
1141       *max_latency = max;
1142   }
1143   return res;
1144 }
1145
1146 /**
1147  * gst_base_sink_set_render_delay:
1148  * @sink: a #GstBaseSink
1149  * @delay: the new delay
1150  *
1151  * Set the render delay in @sink to @delay. The render delay is the time
1152  * between actual rendering of a buffer and its synchronisation time. Some
1153  * devices might delay media rendering which can be compensated for with this
1154  * function.
1155  *
1156  * After calling this function, this sink will report additional latency and
1157  * other sinks will adjust their latency to delay the rendering of their media.
1158  *
1159  * This function is usually called by subclasses.
1160  *
1161  * Since: 0.10.21
1162  */
1163 void
1164 gst_base_sink_set_render_delay (GstBaseSink * sink, GstClockTime delay)
1165 {
1166   GstClockTime old_render_delay;
1167
1168   g_return_if_fail (GST_IS_BASE_SINK (sink));
1169
1170   GST_OBJECT_LOCK (sink);
1171   old_render_delay = sink->priv->render_delay;
1172   sink->priv->render_delay = delay;
1173   GST_LOG_OBJECT (sink, "set render delay to %" GST_TIME_FORMAT,
1174       GST_TIME_ARGS (delay));
1175   GST_OBJECT_UNLOCK (sink);
1176
1177   if (delay != old_render_delay) {
1178     GST_DEBUG_OBJECT (sink, "posting latency changed");
1179     gst_element_post_message (GST_ELEMENT_CAST (sink),
1180         gst_message_new_latency (GST_OBJECT_CAST (sink)));
1181   }
1182 }
1183
1184 /**
1185  * gst_base_sink_get_render_delay:
1186  * @sink: a #GstBaseSink
1187  *
1188  * Get the render delay of @sink. see gst_base_sink_set_render_delay() for more
1189  * information about the render delay.
1190  *
1191  * Returns: the render delay of @sink.
1192  *
1193  * Since: 0.10.21
1194  */
1195 GstClockTime
1196 gst_base_sink_get_render_delay (GstBaseSink * sink)
1197 {
1198   GstClockTimeDiff res;
1199
1200   g_return_val_if_fail (GST_IS_BASE_SINK (sink), 0);
1201
1202   GST_OBJECT_LOCK (sink);
1203   res = sink->priv->render_delay;
1204   GST_OBJECT_UNLOCK (sink);
1205
1206   return res;
1207 }
1208
1209 /**
1210  * gst_base_sink_set_blocksize:
1211  * @sink: a #GstBaseSink
1212  * @blocksize: the blocksize in bytes
1213  *
1214  * Set the number of bytes that the sink will pull when it is operating in pull
1215  * mode.
1216  *
1217  * Since: 0.10.22
1218  */
1219 /* FIXME 0.11: blocksize property should be int, otherwise min>max.. */
1220 void
1221 gst_base_sink_set_blocksize (GstBaseSink * sink, guint blocksize)
1222 {
1223   g_return_if_fail (GST_IS_BASE_SINK (sink));
1224
1225   GST_OBJECT_LOCK (sink);
1226   sink->priv->blocksize = blocksize;
1227   GST_LOG_OBJECT (sink, "set blocksize to %u", blocksize);
1228   GST_OBJECT_UNLOCK (sink);
1229 }
1230
1231 /**
1232  * gst_base_sink_get_blocksize:
1233  * @sink: a #GstBaseSink
1234  *
1235  * Get the number of bytes that the sink will pull when it is operating in pull
1236  * mode.
1237  *
1238  * Returns: the number of bytes @sink will pull in pull mode.
1239  *
1240  * Since: 0.10.22
1241  */
1242 /* FIXME 0.11: blocksize property should be int, otherwise min>max.. */
1243 guint
1244 gst_base_sink_get_blocksize (GstBaseSink * sink)
1245 {
1246   guint res;
1247
1248   g_return_val_if_fail (GST_IS_BASE_SINK (sink), 0);
1249
1250   GST_OBJECT_LOCK (sink);
1251   res = sink->priv->blocksize;
1252   GST_OBJECT_UNLOCK (sink);
1253
1254   return res;
1255 }
1256
1257 /**
1258  * gst_base_sink_set_throttle_time:
1259  * @sink: a #GstBaseSink
1260  * @throttle: the throttle time in nanoseconds
1261  *
1262  * Set the time that will be inserted between rendered buffers. This
1263  * can be used to control the maximum buffers per second that the sink
1264  * will render. 
1265  *
1266  * Since: 0.10.33
1267  */
1268 void
1269 gst_base_sink_set_throttle_time (GstBaseSink * sink, guint64 throttle)
1270 {
1271   g_return_if_fail (GST_IS_BASE_SINK (sink));
1272
1273   GST_OBJECT_LOCK (sink);
1274   sink->priv->throttle_time = throttle;
1275   GST_LOG_OBJECT (sink, "set throttle_time to %" G_GUINT64_FORMAT, throttle);
1276   GST_OBJECT_UNLOCK (sink);
1277 }
1278
1279 /**
1280  * gst_base_sink_get_throttle_time:
1281  * @sink: a #GstBaseSink
1282  *
1283  * Get the time that will be inserted between frames to control the 
1284  * maximum buffers per second.
1285  *
1286  * Returns: the number of nanoseconds @sink will put between frames.
1287  *
1288  * Since: 0.10.33
1289  */
1290 guint64
1291 gst_base_sink_get_throttle_time (GstBaseSink * sink)
1292 {
1293   guint64 res;
1294
1295   g_return_val_if_fail (GST_IS_BASE_SINK (sink), 0);
1296
1297   GST_OBJECT_LOCK (sink);
1298   res = sink->priv->throttle_time;
1299   GST_OBJECT_UNLOCK (sink);
1300
1301   return res;
1302 }
1303
1304 static void
1305 gst_base_sink_set_property (GObject * object, guint prop_id,
1306     const GValue * value, GParamSpec * pspec)
1307 {
1308   GstBaseSink *sink = GST_BASE_SINK (object);
1309
1310   switch (prop_id) {
1311     case PROP_SYNC:
1312       gst_base_sink_set_sync (sink, g_value_get_boolean (value));
1313       break;
1314     case PROP_MAX_LATENESS:
1315       gst_base_sink_set_max_lateness (sink, g_value_get_int64 (value));
1316       break;
1317     case PROP_QOS:
1318       gst_base_sink_set_qos_enabled (sink, g_value_get_boolean (value));
1319       break;
1320     case PROP_ASYNC:
1321       gst_base_sink_set_async_enabled (sink, g_value_get_boolean (value));
1322       break;
1323     case PROP_TS_OFFSET:
1324       gst_base_sink_set_ts_offset (sink, g_value_get_int64 (value));
1325       break;
1326     case PROP_BLOCKSIZE:
1327       gst_base_sink_set_blocksize (sink, g_value_get_uint (value));
1328       break;
1329     case PROP_RENDER_DELAY:
1330       gst_base_sink_set_render_delay (sink, g_value_get_uint64 (value));
1331       break;
1332     case PROP_ENABLE_LAST_SAMPLE:
1333       gst_base_sink_set_last_sample_enabled (sink, g_value_get_boolean (value));
1334       break;
1335     case PROP_THROTTLE_TIME:
1336       gst_base_sink_set_throttle_time (sink, g_value_get_uint64 (value));
1337       break;
1338     default:
1339       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1340       break;
1341   }
1342 }
1343
1344 static void
1345 gst_base_sink_get_property (GObject * object, guint prop_id, GValue * value,
1346     GParamSpec * pspec)
1347 {
1348   GstBaseSink *sink = GST_BASE_SINK (object);
1349
1350   switch (prop_id) {
1351     case PROP_SYNC:
1352       g_value_set_boolean (value, gst_base_sink_get_sync (sink));
1353       break;
1354     case PROP_MAX_LATENESS:
1355       g_value_set_int64 (value, gst_base_sink_get_max_lateness (sink));
1356       break;
1357     case PROP_QOS:
1358       g_value_set_boolean (value, gst_base_sink_is_qos_enabled (sink));
1359       break;
1360     case PROP_ASYNC:
1361       g_value_set_boolean (value, gst_base_sink_is_async_enabled (sink));
1362       break;
1363     case PROP_TS_OFFSET:
1364       g_value_set_int64 (value, gst_base_sink_get_ts_offset (sink));
1365       break;
1366     case PROP_LAST_SAMPLE:
1367       gst_value_take_buffer (value, gst_base_sink_get_last_sample (sink));
1368       break;
1369     case PROP_ENABLE_LAST_SAMPLE:
1370       g_value_set_boolean (value, gst_base_sink_is_last_sample_enabled (sink));
1371       break;
1372     case PROP_BLOCKSIZE:
1373       g_value_set_uint (value, gst_base_sink_get_blocksize (sink));
1374       break;
1375     case PROP_RENDER_DELAY:
1376       g_value_set_uint64 (value, gst_base_sink_get_render_delay (sink));
1377       break;
1378     case PROP_THROTTLE_TIME:
1379       g_value_set_uint64 (value, gst_base_sink_get_throttle_time (sink));
1380       break;
1381     default:
1382       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1383       break;
1384   }
1385 }
1386
1387
1388 static GstCaps *
1389 gst_base_sink_default_get_caps (GstBaseSink * sink, GstCaps * filter)
1390 {
1391   return NULL;
1392 }
1393
1394 static gboolean
1395 gst_base_sink_default_set_caps (GstBaseSink * sink, GstCaps * caps)
1396 {
1397   return TRUE;
1398 }
1399
1400 /* with PREROLL_LOCK, STREAM_LOCK */
1401 static gboolean
1402 gst_base_sink_commit_state (GstBaseSink * basesink)
1403 {
1404   /* commit state and proceed to next pending state */
1405   GstState current, next, pending, post_pending;
1406   gboolean post_paused = FALSE;
1407   gboolean post_async_done = FALSE;
1408   gboolean post_playing = FALSE;
1409   gboolean reset_time;
1410
1411   /* we are certainly not playing async anymore now */
1412   basesink->playing_async = FALSE;
1413
1414   GST_OBJECT_LOCK (basesink);
1415   current = GST_STATE (basesink);
1416   next = GST_STATE_NEXT (basesink);
1417   pending = GST_STATE_PENDING (basesink);
1418   post_pending = pending;
1419   reset_time = basesink->priv->reset_time;
1420   basesink->priv->reset_time = FALSE;
1421
1422   switch (pending) {
1423     case GST_STATE_PLAYING:
1424     {
1425       GST_DEBUG_OBJECT (basesink, "commiting state to PLAYING");
1426
1427       basesink->need_preroll = FALSE;
1428       post_async_done = TRUE;
1429       basesink->priv->commited = TRUE;
1430       post_playing = TRUE;
1431       /* post PAUSED too when we were READY */
1432       if (current == GST_STATE_READY) {
1433         post_paused = TRUE;
1434       }
1435       break;
1436     }
1437     case GST_STATE_PAUSED:
1438       GST_DEBUG_OBJECT (basesink, "commiting state to PAUSED");
1439       post_paused = TRUE;
1440       post_async_done = TRUE;
1441       basesink->priv->commited = TRUE;
1442       post_pending = GST_STATE_VOID_PENDING;
1443       break;
1444     case GST_STATE_READY:
1445     case GST_STATE_NULL:
1446       goto stopping;
1447     case GST_STATE_VOID_PENDING:
1448       goto nothing_pending;
1449     default:
1450       break;
1451   }
1452
1453   /* we can report latency queries now */
1454   basesink->priv->have_latency = TRUE;
1455
1456   GST_STATE (basesink) = pending;
1457   GST_STATE_NEXT (basesink) = GST_STATE_VOID_PENDING;
1458   GST_STATE_PENDING (basesink) = GST_STATE_VOID_PENDING;
1459   GST_STATE_RETURN (basesink) = GST_STATE_CHANGE_SUCCESS;
1460   GST_OBJECT_UNLOCK (basesink);
1461
1462   if (post_paused) {
1463     GST_DEBUG_OBJECT (basesink, "posting PAUSED state change message");
1464     gst_element_post_message (GST_ELEMENT_CAST (basesink),
1465         gst_message_new_state_changed (GST_OBJECT_CAST (basesink),
1466             current, next, post_pending));
1467   }
1468   if (post_async_done) {
1469     GST_DEBUG_OBJECT (basesink, "posting async-done message");
1470     gst_element_post_message (GST_ELEMENT_CAST (basesink),
1471         gst_message_new_async_done (GST_OBJECT_CAST (basesink), reset_time));
1472   }
1473   if (post_playing) {
1474     GST_DEBUG_OBJECT (basesink, "posting PLAYING state change message");
1475     gst_element_post_message (GST_ELEMENT_CAST (basesink),
1476         gst_message_new_state_changed (GST_OBJECT_CAST (basesink),
1477             next, pending, GST_STATE_VOID_PENDING));
1478   }
1479
1480   GST_STATE_BROADCAST (basesink);
1481
1482   return TRUE;
1483
1484 nothing_pending:
1485   {
1486     /* Depending on the state, set our vars. We get in this situation when the
1487      * state change function got a change to update the state vars before the
1488      * streaming thread did. This is fine but we need to make sure that we
1489      * update the need_preroll var since it was TRUE when we got here and might
1490      * become FALSE if we got to PLAYING. */
1491     GST_DEBUG_OBJECT (basesink, "nothing to commit, now in %s",
1492         gst_element_state_get_name (current));
1493     switch (current) {
1494       case GST_STATE_PLAYING:
1495         basesink->need_preroll = FALSE;
1496         break;
1497       case GST_STATE_PAUSED:
1498         basesink->need_preroll = TRUE;
1499         break;
1500       default:
1501         basesink->need_preroll = FALSE;
1502         basesink->flushing = TRUE;
1503         break;
1504     }
1505     /* we can report latency queries now */
1506     basesink->priv->have_latency = TRUE;
1507     GST_OBJECT_UNLOCK (basesink);
1508     return TRUE;
1509   }
1510 stopping:
1511   {
1512     /* app is going to READY */
1513     GST_DEBUG_OBJECT (basesink, "stopping");
1514     basesink->need_preroll = FALSE;
1515     basesink->flushing = TRUE;
1516     GST_OBJECT_UNLOCK (basesink);
1517     return FALSE;
1518   }
1519 }
1520
1521 static void
1522 start_stepping (GstBaseSink * sink, GstSegment * segment,
1523     GstStepInfo * pending, GstStepInfo * current)
1524 {
1525   gint64 end;
1526   GstMessage *message;
1527
1528   GST_DEBUG_OBJECT (sink, "update pending step");
1529
1530   GST_OBJECT_LOCK (sink);
1531   memcpy (current, pending, sizeof (GstStepInfo));
1532   pending->valid = FALSE;
1533   GST_OBJECT_UNLOCK (sink);
1534
1535   /* post message first */
1536   message =
1537       gst_message_new_step_start (GST_OBJECT (sink), TRUE, current->format,
1538       current->amount, current->rate, current->flush, current->intermediate);
1539   gst_message_set_seqnum (message, current->seqnum);
1540   gst_element_post_message (GST_ELEMENT (sink), message);
1541
1542   /* get the running time of where we paused and remember it */
1543   current->start = gst_element_get_start_time (GST_ELEMENT_CAST (sink));
1544   gst_segment_set_running_time (segment, GST_FORMAT_TIME, current->start);
1545
1546   /* set the new rate for the remainder of the segment */
1547   current->start_rate = segment->rate;
1548   segment->rate *= current->rate;
1549
1550   /* save values */
1551   if (segment->rate > 0.0)
1552     current->start_stop = segment->stop;
1553   else
1554     current->start_start = segment->start;
1555
1556   if (current->format == GST_FORMAT_TIME) {
1557     end = current->start + current->amount;
1558     if (!current->flush) {
1559       /* update the segment clipping regions for non-flushing seeks */
1560       if (segment->rate > 0.0) {
1561         segment->stop = gst_segment_to_position (segment, GST_FORMAT_TIME, end);
1562         segment->position = segment->stop;
1563       } else {
1564         gint64 position;
1565
1566         position = gst_segment_to_position (segment, GST_FORMAT_TIME, end);
1567         segment->time = position;
1568         segment->start = position;
1569         segment->position = position;
1570       }
1571     }
1572   }
1573
1574   GST_DEBUG_OBJECT (sink, "segment now %" GST_SEGMENT_FORMAT, segment);
1575   GST_DEBUG_OBJECT (sink, "step started at running_time %" GST_TIME_FORMAT,
1576       GST_TIME_ARGS (current->start));
1577
1578   if (current->amount == -1) {
1579     GST_DEBUG_OBJECT (sink, "step amount == -1, stop stepping");
1580     current->valid = FALSE;
1581   } else {
1582     GST_DEBUG_OBJECT (sink, "step amount: %" G_GUINT64_FORMAT ", format: %s, "
1583         "rate: %f", current->amount, gst_format_get_name (current->format),
1584         current->rate);
1585   }
1586 }
1587
1588 static void
1589 stop_stepping (GstBaseSink * sink, GstSegment * segment,
1590     GstStepInfo * current, gint64 rstart, gint64 rstop, gboolean eos)
1591 {
1592   gint64 stop, position;
1593   GstMessage *message;
1594
1595   GST_DEBUG_OBJECT (sink, "step complete");
1596
1597   if (segment->rate > 0.0)
1598     stop = rstart;
1599   else
1600     stop = rstop;
1601
1602   GST_DEBUG_OBJECT (sink,
1603       "step stop at running_time %" GST_TIME_FORMAT, GST_TIME_ARGS (stop));
1604
1605   if (stop == -1)
1606     current->duration = current->position;
1607   else
1608     current->duration = stop - current->start;
1609
1610   GST_DEBUG_OBJECT (sink, "step elapsed running_time %" GST_TIME_FORMAT,
1611       GST_TIME_ARGS (current->duration));
1612
1613   position = current->start + current->duration;
1614
1615   /* now move the segment to the new running time */
1616   gst_segment_set_running_time (segment, GST_FORMAT_TIME, position);
1617
1618   if (current->flush) {
1619     /* and remove the time we flushed, start time did not change */
1620     segment->base = current->start;
1621   } else {
1622     /* start time is now the stepped position */
1623     gst_element_set_start_time (GST_ELEMENT_CAST (sink), position);
1624   }
1625
1626   /* restore the previous rate */
1627   segment->rate = current->start_rate;
1628
1629   if (segment->rate > 0.0)
1630     segment->stop = current->start_stop;
1631   else
1632     segment->start = current->start_start;
1633
1634   /* post the step done when we know the stepped duration in TIME */
1635   message =
1636       gst_message_new_step_done (GST_OBJECT_CAST (sink), current->format,
1637       current->amount, current->rate, current->flush, current->intermediate,
1638       current->duration, eos);
1639   gst_message_set_seqnum (message, current->seqnum);
1640   gst_element_post_message (GST_ELEMENT_CAST (sink), message);
1641
1642   if (!current->intermediate)
1643     sink->need_preroll = current->need_preroll;
1644
1645   /* and the current step info finished and becomes invalid */
1646   current->valid = FALSE;
1647 }
1648
1649 static gboolean
1650 handle_stepping (GstBaseSink * sink, GstSegment * segment,
1651     GstStepInfo * current, guint64 * cstart, guint64 * cstop, guint64 * rstart,
1652     guint64 * rstop)
1653 {
1654   gboolean step_end = FALSE;
1655
1656   /* see if we need to skip this buffer because of stepping */
1657   switch (current->format) {
1658     case GST_FORMAT_TIME:
1659     {
1660       guint64 end;
1661       guint64 first, last;
1662       gdouble abs_rate;
1663
1664       if (segment->rate > 0.0) {
1665         if (segment->stop == *cstop)
1666           *rstop = *rstart + current->amount;
1667
1668         first = *rstart;
1669         last = *rstop;
1670       } else {
1671         if (segment->start == *cstart)
1672           *rstart = *rstop + current->amount;
1673
1674         first = *rstop;
1675         last = *rstart;
1676       }
1677
1678       end = current->start + current->amount;
1679       current->position = first - current->start;
1680
1681       abs_rate = ABS (segment->rate);
1682       if (G_UNLIKELY (abs_rate != 1.0))
1683         current->position /= abs_rate;
1684
1685       GST_DEBUG_OBJECT (sink,
1686           "buffer: %" GST_TIME_FORMAT "-%" GST_TIME_FORMAT,
1687           GST_TIME_ARGS (first), GST_TIME_ARGS (last));
1688       GST_DEBUG_OBJECT (sink,
1689           "got time step %" GST_TIME_FORMAT "-%" GST_TIME_FORMAT "/%"
1690           GST_TIME_FORMAT, GST_TIME_ARGS (current->position),
1691           GST_TIME_ARGS (last - current->start),
1692           GST_TIME_ARGS (current->amount));
1693
1694       if ((current->flush && current->position >= current->amount)
1695           || last >= end) {
1696         GST_DEBUG_OBJECT (sink, "step ended, we need clipping");
1697         step_end = TRUE;
1698         if (segment->rate > 0.0) {
1699           *rstart = end;
1700           *cstart = gst_segment_to_position (segment, GST_FORMAT_TIME, end);
1701         } else {
1702           *rstop = end;
1703           *cstop = gst_segment_to_position (segment, GST_FORMAT_TIME, end);
1704         }
1705       }
1706       GST_DEBUG_OBJECT (sink,
1707           "cstart %" GST_TIME_FORMAT ", rstart %" GST_TIME_FORMAT,
1708           GST_TIME_ARGS (*cstart), GST_TIME_ARGS (*rstart));
1709       GST_DEBUG_OBJECT (sink,
1710           "cstop %" GST_TIME_FORMAT ", rstop %" GST_TIME_FORMAT,
1711           GST_TIME_ARGS (*cstop), GST_TIME_ARGS (*rstop));
1712       break;
1713     }
1714     case GST_FORMAT_BUFFERS:
1715       GST_DEBUG_OBJECT (sink,
1716           "got default step %" G_GUINT64_FORMAT "/%" G_GUINT64_FORMAT,
1717           current->position, current->amount);
1718
1719       if (current->position < current->amount) {
1720         current->position++;
1721       } else {
1722         step_end = TRUE;
1723       }
1724       break;
1725     case GST_FORMAT_DEFAULT:
1726     default:
1727       GST_DEBUG_OBJECT (sink,
1728           "got unknown step %" G_GUINT64_FORMAT "/%" G_GUINT64_FORMAT,
1729           current->position, current->amount);
1730       break;
1731   }
1732   return step_end;
1733 }
1734
1735 /* with STREAM_LOCK, PREROLL_LOCK
1736  *
1737  * Returns TRUE if the object needs synchronisation and takes therefore
1738  * part in prerolling.
1739  *
1740  * rsstart/rsstop contain the start/stop in stream time.
1741  * rrstart/rrstop contain the start/stop in running time.
1742  */
1743 static gboolean
1744 gst_base_sink_get_sync_times (GstBaseSink * basesink, GstMiniObject * obj,
1745     GstClockTime * rsstart, GstClockTime * rsstop,
1746     GstClockTime * rrstart, GstClockTime * rrstop, gboolean * do_sync,
1747     gboolean * stepped, GstStepInfo * step, gboolean * step_end)
1748 {
1749   GstBaseSinkClass *bclass;
1750   GstBuffer *buffer;
1751   GstClockTime start, stop;     /* raw start/stop timestamps */
1752   guint64 cstart, cstop;        /* clipped raw timestamps */
1753   guint64 rstart, rstop;        /* clipped timestamps converted to running time */
1754   GstClockTime sstart, sstop;   /* clipped timestamps converted to stream time */
1755   GstFormat format;
1756   GstBaseSinkPrivate *priv;
1757   GstSegment *segment;
1758   gboolean eos;
1759
1760   priv = basesink->priv;
1761   segment = &basesink->segment;
1762
1763   /* start with nothing */
1764   start = stop = GST_CLOCK_TIME_NONE;
1765
1766   if (G_UNLIKELY (GST_IS_EVENT (obj))) {
1767     GstEvent *event = GST_EVENT_CAST (obj);
1768
1769     switch (GST_EVENT_TYPE (event)) {
1770         /* EOS event needs syncing */
1771       case GST_EVENT_EOS:
1772       {
1773         if (segment->rate >= 0.0) {
1774           sstart = sstop = priv->current_sstop;
1775           if (!GST_CLOCK_TIME_IS_VALID (sstart)) {
1776             /* we have not seen a buffer yet, use the segment values */
1777             sstart = sstop = gst_segment_to_stream_time (segment,
1778                 segment->format, segment->stop);
1779           }
1780         } else {
1781           sstart = sstop = priv->current_sstart;
1782           if (!GST_CLOCK_TIME_IS_VALID (sstart)) {
1783             /* we have not seen a buffer yet, use the segment values */
1784             sstart = sstop = gst_segment_to_stream_time (segment,
1785                 segment->format, segment->start);
1786           }
1787         }
1788
1789         rstart = rstop = priv->eos_rtime;
1790         *do_sync = rstart != -1;
1791         GST_DEBUG_OBJECT (basesink, "sync times for EOS %" GST_TIME_FORMAT,
1792             GST_TIME_ARGS (rstart));
1793         /* if we are stepping, we end now */
1794         *step_end = step->valid;
1795         eos = TRUE;
1796         goto eos_done;
1797       }
1798       default:
1799         /* other events do not need syncing */
1800         return FALSE;
1801     }
1802   }
1803
1804   eos = FALSE;
1805
1806 again:
1807   /* else do buffer sync code */
1808   buffer = GST_BUFFER_CAST (obj);
1809
1810   bclass = GST_BASE_SINK_GET_CLASS (basesink);
1811
1812   /* just get the times to see if we need syncing, if the start returns -1 we
1813    * don't sync. */
1814   if (bclass->get_times)
1815     bclass->get_times (basesink, buffer, &start, &stop);
1816
1817   if (!GST_CLOCK_TIME_IS_VALID (start)) {
1818     /* we don't need to sync but we still want to get the timestamps for
1819      * tracking the position */
1820     gst_base_sink_default_get_times (basesink, buffer, &start, &stop);
1821     *do_sync = FALSE;
1822   } else {
1823     *do_sync = TRUE;
1824   }
1825
1826   GST_DEBUG_OBJECT (basesink, "got times start: %" GST_TIME_FORMAT
1827       ", stop: %" GST_TIME_FORMAT ", do_sync %d", GST_TIME_ARGS (start),
1828       GST_TIME_ARGS (stop), *do_sync);
1829
1830   /* collect segment and format for code clarity */
1831   format = segment->format;
1832
1833   /* clip */
1834   if (G_UNLIKELY (!gst_segment_clip (segment, format,
1835               start, stop, &cstart, &cstop))) {
1836     if (step->valid) {
1837       GST_DEBUG_OBJECT (basesink, "step out of segment");
1838       /* when we are stepping, pretend we're at the end of the segment */
1839       if (segment->rate > 0.0) {
1840         cstart = segment->stop;
1841         cstop = segment->stop;
1842       } else {
1843         cstart = segment->start;
1844         cstop = segment->start;
1845       }
1846       goto do_times;
1847     }
1848     goto out_of_segment;
1849   }
1850
1851   if (G_UNLIKELY (start != cstart || stop != cstop)) {
1852     GST_DEBUG_OBJECT (basesink, "clipped to: start %" GST_TIME_FORMAT
1853         ", stop: %" GST_TIME_FORMAT, GST_TIME_ARGS (cstart),
1854         GST_TIME_ARGS (cstop));
1855   }
1856
1857   /* set last stop position */
1858   if (G_LIKELY (stop != GST_CLOCK_TIME_NONE && cstop != GST_CLOCK_TIME_NONE))
1859     segment->position = cstop;
1860   else
1861     segment->position = cstart;
1862
1863 do_times:
1864   rstart = gst_segment_to_running_time (segment, format, cstart);
1865   rstop = gst_segment_to_running_time (segment, format, cstop);
1866
1867   if (G_UNLIKELY (step->valid)) {
1868     if (!(*step_end = handle_stepping (basesink, segment, step, &cstart, &cstop,
1869                 &rstart, &rstop))) {
1870       /* step is still busy, we discard data when we are flushing */
1871       *stepped = step->flush;
1872       GST_DEBUG_OBJECT (basesink, "stepping busy");
1873     }
1874   }
1875   /* this can produce wrong values if we accumulated non-TIME segments. If this happens,
1876    * upstream is behaving very badly */
1877   sstart = gst_segment_to_stream_time (segment, format, cstart);
1878   sstop = gst_segment_to_stream_time (segment, format, cstop);
1879
1880 eos_done:
1881   /* eos_done label only called when doing EOS, we also stop stepping then */
1882   if (*step_end && step->flush) {
1883     GST_DEBUG_OBJECT (basesink, "flushing step ended");
1884     stop_stepping (basesink, segment, step, rstart, rstop, eos);
1885     *step_end = FALSE;
1886     /* re-determine running start times for adjusted segment
1887      * (which has a flushed amount of running/accumulated time removed) */
1888     if (!GST_IS_EVENT (obj)) {
1889       GST_DEBUG_OBJECT (basesink, "refresh sync times");
1890       goto again;
1891     }
1892   }
1893
1894   /* save times */
1895   *rsstart = sstart;
1896   *rsstop = sstop;
1897   *rrstart = rstart;
1898   *rrstop = rstop;
1899
1900   /* buffers and EOS always need syncing and preroll */
1901   return TRUE;
1902
1903   /* special cases */
1904 out_of_segment:
1905   {
1906     /* we usually clip in the chain function already but stepping could cause
1907      * the segment to be updated later. we return FALSE so that we don't try
1908      * to sync on it. */
1909     GST_LOG_OBJECT (basesink, "buffer skipped, not in segment");
1910     return FALSE;
1911   }
1912 }
1913
1914 /* with STREAM_LOCK, PREROLL_LOCK, LOCK
1915  * adjust a timestamp with the latency and timestamp offset. This function does
1916  * not adjust for the render delay. */
1917 static GstClockTime
1918 gst_base_sink_adjust_time (GstBaseSink * basesink, GstClockTime time)
1919 {
1920   GstClockTimeDiff ts_offset;
1921
1922   /* don't do anything funny with invalid timestamps */
1923   if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (time)))
1924     return time;
1925
1926   time += basesink->priv->latency;
1927
1928   /* apply offset, be carefull for underflows */
1929   ts_offset = basesink->priv->ts_offset;
1930   if (ts_offset < 0) {
1931     ts_offset = -ts_offset;
1932     if (ts_offset < time)
1933       time -= ts_offset;
1934     else
1935       time = 0;
1936   } else
1937     time += ts_offset;
1938
1939   /* subtract the render delay again, which was included in the latency */
1940   if (time > basesink->priv->render_delay)
1941     time -= basesink->priv->render_delay;
1942   else
1943     time = 0;
1944
1945   return time;
1946 }
1947
1948 /**
1949  * gst_base_sink_wait_clock:
1950  * @sink: the sink
1951  * @time: the running_time to be reached
1952  * @jitter: (out) (allow-none): the jitter to be filled with time diff, or NULL
1953  *
1954  * This function will block until @time is reached. It is usually called by
1955  * subclasses that use their own internal synchronisation.
1956  *
1957  * If @time is not valid, no sycnhronisation is done and #GST_CLOCK_BADTIME is
1958  * returned. Likewise, if synchronisation is disabled in the element or there
1959  * is no clock, no synchronisation is done and #GST_CLOCK_BADTIME is returned.
1960  *
1961  * This function should only be called with the PREROLL_LOCK held, like when
1962  * receiving an EOS event in the #GstBaseSinkClass.event() vmethod or when
1963  * receiving a buffer in
1964  * the #GstBaseSinkClass.render() vmethod.
1965  *
1966  * The @time argument should be the running_time of when this method should
1967  * return and is not adjusted with any latency or offset configured in the
1968  * sink.
1969  *
1970  * Since: 0.10.20
1971  *
1972  * Returns: #GstClockReturn
1973  */
1974 GstClockReturn
1975 gst_base_sink_wait_clock (GstBaseSink * sink, GstClockTime time,
1976     GstClockTimeDiff * jitter)
1977 {
1978   GstClockReturn ret;
1979   GstClock *clock;
1980   GstClockTime base_time;
1981
1982   if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (time)))
1983     goto invalid_time;
1984
1985   GST_OBJECT_LOCK (sink);
1986   if (G_UNLIKELY (!sink->sync))
1987     goto no_sync;
1988
1989   if (G_UNLIKELY ((clock = GST_ELEMENT_CLOCK (sink)) == NULL))
1990     goto no_clock;
1991
1992   base_time = GST_ELEMENT_CAST (sink)->base_time;
1993   GST_LOG_OBJECT (sink,
1994       "time %" GST_TIME_FORMAT ", base_time %" GST_TIME_FORMAT,
1995       GST_TIME_ARGS (time), GST_TIME_ARGS (base_time));
1996
1997   /* add base_time to running_time to get the time against the clock */
1998   time += base_time;
1999
2000   /* Re-use existing clockid if available */
2001   /* FIXME: Casting to GstClockEntry only works because the types
2002    * are the same */
2003   if (G_LIKELY (sink->priv->cached_clock_id != NULL
2004           && GST_CLOCK_ENTRY_CLOCK ((GstClockEntry *) sink->
2005               priv->cached_clock_id) == clock)) {
2006     if (!gst_clock_single_shot_id_reinit (clock, sink->priv->cached_clock_id,
2007             time)) {
2008       gst_clock_id_unref (sink->priv->cached_clock_id);
2009       sink->priv->cached_clock_id = gst_clock_new_single_shot_id (clock, time);
2010     }
2011   } else {
2012     if (sink->priv->cached_clock_id != NULL)
2013       gst_clock_id_unref (sink->priv->cached_clock_id);
2014     sink->priv->cached_clock_id = gst_clock_new_single_shot_id (clock, time);
2015   }
2016   GST_OBJECT_UNLOCK (sink);
2017
2018   /* A blocking wait is performed on the clock. We save the ClockID
2019    * so we can unlock the entry at any time. While we are blocking, we
2020    * release the PREROLL_LOCK so that other threads can interrupt the
2021    * entry. */
2022   sink->clock_id = sink->priv->cached_clock_id;
2023   /* release the preroll lock while waiting */
2024   GST_BASE_SINK_PREROLL_UNLOCK (sink);
2025
2026   ret = gst_clock_id_wait (sink->priv->cached_clock_id, jitter);
2027
2028   GST_BASE_SINK_PREROLL_LOCK (sink);
2029   sink->clock_id = NULL;
2030
2031   return ret;
2032
2033   /* no syncing needed */
2034 invalid_time:
2035   {
2036     GST_DEBUG_OBJECT (sink, "time not valid, no sync needed");
2037     return GST_CLOCK_BADTIME;
2038   }
2039 no_sync:
2040   {
2041     GST_DEBUG_OBJECT (sink, "sync disabled");
2042     GST_OBJECT_UNLOCK (sink);
2043     return GST_CLOCK_BADTIME;
2044   }
2045 no_clock:
2046   {
2047     GST_DEBUG_OBJECT (sink, "no clock, can't sync");
2048     GST_OBJECT_UNLOCK (sink);
2049     return GST_CLOCK_BADTIME;
2050   }
2051 }
2052
2053 /**
2054  * gst_base_sink_wait_preroll:
2055  * @sink: the sink
2056  *
2057  * If the #GstBaseSinkClass.render() method performs its own synchronisation
2058  * against the clock it must unblock when going from PLAYING to the PAUSED state
2059  * and call this method before continuing to render the remaining data.
2060  *
2061  * This function will block until a state change to PLAYING happens (in which
2062  * case this function returns #GST_FLOW_OK) or the processing must be stopped due
2063  * to a state change to READY or a FLUSH event (in which case this function
2064  * returns #GST_FLOW_WRONG_STATE).
2065  *
2066  * This function should only be called with the PREROLL_LOCK held, like in the
2067  * render function.
2068  *
2069  * Returns: #GST_FLOW_OK if the preroll completed and processing can
2070  * continue. Any other return value should be returned from the render vmethod.
2071  *
2072  * Since: 0.10.11
2073  */
2074 GstFlowReturn
2075 gst_base_sink_wait_preroll (GstBaseSink * sink)
2076 {
2077   sink->have_preroll = TRUE;
2078   GST_DEBUG_OBJECT (sink, "waiting in preroll for flush or PLAYING");
2079   /* block until the state changes, or we get a flush, or something */
2080   GST_BASE_SINK_PREROLL_WAIT (sink);
2081   sink->have_preroll = FALSE;
2082   if (G_UNLIKELY (sink->flushing))
2083     goto stopping;
2084   if (G_UNLIKELY (sink->priv->step_unlock))
2085     goto step_unlocked;
2086   GST_DEBUG_OBJECT (sink, "continue after preroll");
2087
2088   return GST_FLOW_OK;
2089
2090   /* ERRORS */
2091 stopping:
2092   {
2093     GST_DEBUG_OBJECT (sink, "preroll interrupted because of flush");
2094     return GST_FLOW_WRONG_STATE;
2095   }
2096 step_unlocked:
2097   {
2098     sink->priv->step_unlock = FALSE;
2099     GST_DEBUG_OBJECT (sink, "preroll interrupted because of step");
2100     return GST_FLOW_STEP;
2101   }
2102 }
2103
2104 /**
2105  * gst_base_sink_do_preroll:
2106  * @sink: the sink
2107  * @obj: (transfer none): the mini object that caused the preroll
2108  *
2109  * If the @sink spawns its own thread for pulling buffers from upstream it
2110  * should call this method after it has pulled a buffer. If the element needed
2111  * to preroll, this function will perform the preroll and will then block
2112  * until the element state is changed.
2113  *
2114  * This function should be called with the PREROLL_LOCK held.
2115  *
2116  * Returns: #GST_FLOW_OK if the preroll completed and processing can
2117  * continue. Any other return value should be returned from the render vmethod.
2118  *
2119  * Since: 0.10.22
2120  */
2121 GstFlowReturn
2122 gst_base_sink_do_preroll (GstBaseSink * sink, GstMiniObject * obj)
2123 {
2124   GstFlowReturn ret;
2125
2126   while (G_UNLIKELY (sink->need_preroll)) {
2127     GST_DEBUG_OBJECT (sink, "prerolling object %p", obj);
2128
2129     /* if it's a buffer, we need to call the preroll method */
2130     if (sink->priv->call_preroll) {
2131       GstBaseSinkClass *bclass;
2132       GstBuffer *buf;
2133
2134       if (GST_IS_BUFFER_LIST (obj)) {
2135         buf = gst_buffer_list_get (GST_BUFFER_LIST_CAST (obj), 0);
2136         g_assert (NULL != buf);
2137       } else if (GST_IS_BUFFER (obj)) {
2138         buf = GST_BUFFER_CAST (obj);
2139         /* For buffer lists do not set last buffer for now */
2140         gst_base_sink_set_last_buffer (sink, buf);
2141       } else
2142         buf = NULL;
2143
2144       if (buf) {
2145         GST_DEBUG_OBJECT (sink, "preroll buffer %" GST_TIME_FORMAT,
2146             GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
2147
2148         bclass = GST_BASE_SINK_GET_CLASS (sink);
2149         if (bclass->preroll)
2150           if ((ret = bclass->preroll (sink, buf)) != GST_FLOW_OK)
2151             goto preroll_canceled;
2152
2153         sink->priv->call_preroll = FALSE;
2154       }
2155     }
2156
2157     /* commit state */
2158     if (G_LIKELY (sink->playing_async)) {
2159       if (G_UNLIKELY (!gst_base_sink_commit_state (sink)))
2160         goto stopping;
2161     }
2162
2163     /* need to recheck here because the commit state could have
2164      * made us not need the preroll anymore */
2165     if (G_LIKELY (sink->need_preroll)) {
2166       /* block until the state changes, or we get a flush, or something */
2167       ret = gst_base_sink_wait_preroll (sink);
2168       if ((ret != GST_FLOW_OK) && (ret != GST_FLOW_STEP))
2169         goto preroll_failed;
2170     }
2171   }
2172   return GST_FLOW_OK;
2173
2174   /* ERRORS */
2175 preroll_canceled:
2176   {
2177     GST_DEBUG_OBJECT (sink, "preroll failed, abort state");
2178     gst_element_abort_state (GST_ELEMENT_CAST (sink));
2179     return ret;
2180   }
2181 stopping:
2182   {
2183     GST_DEBUG_OBJECT (sink, "stopping while commiting state");
2184     return GST_FLOW_WRONG_STATE;
2185   }
2186 preroll_failed:
2187   {
2188     GST_DEBUG_OBJECT (sink, "preroll failed: %s", gst_flow_get_name (ret));
2189     return ret;
2190   }
2191 }
2192
2193 /**
2194  * gst_base_sink_wait_eos:
2195  * @sink: the sink
2196  * @time: the running_time to be reached
2197  * @jitter: (out) (allow-none): the jitter to be filled with time diff, or NULL
2198  *
2199  * This function will block until @time is reached. It is usually called by
2200  * subclasses that use their own internal synchronisation but want to let the
2201  * EOS be handled by the base class.
2202  *
2203  * This function should only be called with the PREROLL_LOCK held, like when
2204  * receiving an EOS event in the ::event vmethod.
2205  *
2206  * The @time argument should be the running_time of when the EOS should happen
2207  * and will be adjusted with any latency and offset configured in the sink.
2208  *
2209  * Returns: #GstFlowReturn
2210  *
2211  * Since: 0.10.15
2212  */
2213 GstFlowReturn
2214 gst_base_sink_wait_eos (GstBaseSink * sink, GstClockTime time,
2215     GstClockTimeDiff * jitter)
2216 {
2217   GstClockReturn status;
2218   GstFlowReturn ret;
2219
2220   do {
2221     GstClockTime stime;
2222
2223     GST_DEBUG_OBJECT (sink, "checking preroll");
2224
2225     /* first wait for the playing state before we can continue */
2226     while (G_UNLIKELY (sink->need_preroll)) {
2227       ret = gst_base_sink_wait_preroll (sink);
2228       if ((ret != GST_FLOW_OK) && (ret != GST_FLOW_STEP))
2229         goto flushing;
2230     }
2231
2232     /* preroll done, we can sync since we are in PLAYING now. */
2233     GST_DEBUG_OBJECT (sink, "possibly waiting for clock to reach %"
2234         GST_TIME_FORMAT, GST_TIME_ARGS (time));
2235
2236     /* compensate for latency and ts_offset. We don't adjust for render delay
2237      * because we don't interact with the device on EOS normally. */
2238     stime = gst_base_sink_adjust_time (sink, time);
2239
2240     /* wait for the clock, this can be interrupted because we got shut down or
2241      * we PAUSED. */
2242     status = gst_base_sink_wait_clock (sink, stime, jitter);
2243
2244     GST_DEBUG_OBJECT (sink, "clock returned %d", status);
2245
2246     /* invalid time, no clock or sync disabled, just continue then */
2247     if (status == GST_CLOCK_BADTIME)
2248       break;
2249
2250     /* waiting could have been interrupted and we can be flushing now */
2251     if (G_UNLIKELY (sink->flushing))
2252       goto flushing;
2253
2254     /* retry if we got unscheduled, which means we did not reach the timeout
2255      * yet. if some other error occures, we continue. */
2256   } while (status == GST_CLOCK_UNSCHEDULED);
2257
2258   GST_DEBUG_OBJECT (sink, "end of stream");
2259
2260   return GST_FLOW_OK;
2261
2262   /* ERRORS */
2263 flushing:
2264   {
2265     GST_DEBUG_OBJECT (sink, "we are flushing");
2266     return GST_FLOW_WRONG_STATE;
2267   }
2268 }
2269
2270 /* with STREAM_LOCK, PREROLL_LOCK
2271  *
2272  * Make sure we are in PLAYING and synchronize an object to the clock.
2273  *
2274  * If we need preroll, we are not in PLAYING. We try to commit the state
2275  * if needed and then block if we still are not PLAYING.
2276  *
2277  * We start waiting on the clock in PLAYING. If we got interrupted, we
2278  * immediately try to re-preroll.
2279  *
2280  * Some objects do not need synchronisation (most events) and so this function
2281  * immediately returns GST_FLOW_OK.
2282  *
2283  * for objects that arrive later than max-lateness to be synchronized to the
2284  * clock have the @late boolean set to TRUE.
2285  *
2286  * This function keeps a running average of the jitter (the diff between the
2287  * clock time and the requested sync time). The jitter is negative for
2288  * objects that arrive in time and positive for late buffers.
2289  *
2290  * does not take ownership of obj.
2291  */
2292 static GstFlowReturn
2293 gst_base_sink_do_sync (GstBaseSink * basesink,
2294     GstMiniObject * obj, gboolean * late, gboolean * step_end)
2295 {
2296   GstClockTimeDiff jitter = 0;
2297   gboolean syncable;
2298   GstClockReturn status = GST_CLOCK_OK;
2299   GstClockTime rstart, rstop, sstart, sstop, stime;
2300   gboolean do_sync;
2301   GstBaseSinkPrivate *priv;
2302   GstFlowReturn ret;
2303   GstStepInfo *current, *pending;
2304   gboolean stepped;
2305
2306   priv = basesink->priv;
2307
2308 do_step:
2309   sstart = sstop = rstart = rstop = GST_CLOCK_TIME_NONE;
2310   do_sync = TRUE;
2311   stepped = FALSE;
2312
2313   priv->current_rstart = GST_CLOCK_TIME_NONE;
2314
2315   /* get stepping info */
2316   current = &priv->current_step;
2317   pending = &priv->pending_step;
2318
2319   /* get timing information for this object against the render segment */
2320   syncable = gst_base_sink_get_sync_times (basesink, obj,
2321       &sstart, &sstop, &rstart, &rstop, &do_sync, &stepped, current, step_end);
2322
2323   if (G_UNLIKELY (stepped))
2324     goto step_skipped;
2325
2326   /* a syncable object needs to participate in preroll and
2327    * clocking. All buffers and EOS are syncable. */
2328   if (G_UNLIKELY (!syncable))
2329     goto not_syncable;
2330
2331   /* store timing info for current object */
2332   priv->current_rstart = rstart;
2333   priv->current_rstop = (GST_CLOCK_TIME_IS_VALID (rstop) ? rstop : rstart);
2334
2335   /* save sync time for eos when the previous object needed sync */
2336   priv->eos_rtime = (do_sync ? priv->current_rstop : GST_CLOCK_TIME_NONE);
2337
2338   /* calculate inter frame spacing */
2339   if (G_UNLIKELY (priv->prev_rstart != -1 && priv->prev_rstart < rstart)) {
2340     GstClockTime in_diff;
2341
2342     in_diff = rstart - priv->prev_rstart;
2343
2344     if (priv->avg_in_diff == -1)
2345       priv->avg_in_diff = in_diff;
2346     else
2347       priv->avg_in_diff = UPDATE_RUNNING_AVG (priv->avg_in_diff, in_diff);
2348
2349     GST_LOG_OBJECT (basesink, "avg frame diff %" GST_TIME_FORMAT,
2350         GST_TIME_ARGS (priv->avg_in_diff));
2351
2352   }
2353   priv->prev_rstart = rstart;
2354
2355   if (G_UNLIKELY (priv->earliest_in_time != -1
2356           && rstart < priv->earliest_in_time))
2357     goto qos_dropped;
2358
2359 again:
2360   /* first do preroll, this makes sure we commit our state
2361    * to PAUSED and can continue to PLAYING. We cannot perform
2362    * any clock sync in PAUSED because there is no clock. */
2363   ret = gst_base_sink_do_preroll (basesink, obj);
2364   if (G_UNLIKELY (ret != GST_FLOW_OK))
2365     goto preroll_failed;
2366
2367   /* update the segment with a pending step if the current one is invalid and we
2368    * have a new pending one. We only accept new step updates after a preroll */
2369   if (G_UNLIKELY (pending->valid && !current->valid)) {
2370     start_stepping (basesink, &basesink->segment, pending, current);
2371     goto do_step;
2372   }
2373
2374   /* After rendering we store the position of the last buffer so that we can use
2375    * it to report the position. We need to take the lock here. */
2376   GST_OBJECT_LOCK (basesink);
2377   priv->current_sstart = sstart;
2378   priv->current_sstop = (GST_CLOCK_TIME_IS_VALID (sstop) ? sstop : sstart);
2379   GST_OBJECT_UNLOCK (basesink);
2380
2381   if (!do_sync)
2382     goto done;
2383
2384   /* adjust for latency */
2385   stime = gst_base_sink_adjust_time (basesink, rstart);
2386
2387   /* adjust for render-delay, avoid underflows */
2388   if (GST_CLOCK_TIME_IS_VALID (stime)) {
2389     if (stime > priv->render_delay)
2390       stime -= priv->render_delay;
2391     else
2392       stime = 0;
2393   }
2394
2395   /* preroll done, we can sync since we are in PLAYING now. */
2396   GST_DEBUG_OBJECT (basesink, "possibly waiting for clock to reach %"
2397       GST_TIME_FORMAT ", adjusted %" GST_TIME_FORMAT,
2398       GST_TIME_ARGS (rstart), GST_TIME_ARGS (stime));
2399
2400   /* This function will return immediately if start == -1, no clock
2401    * or sync is disabled with GST_CLOCK_BADTIME. */
2402   status = gst_base_sink_wait_clock (basesink, stime, &jitter);
2403
2404   GST_DEBUG_OBJECT (basesink, "clock returned %d, jitter %c%" GST_TIME_FORMAT,
2405       status, (jitter < 0 ? '-' : ' '), GST_TIME_ARGS (ABS (jitter)));
2406
2407   /* invalid time, no clock or sync disabled, just render */
2408   if (status == GST_CLOCK_BADTIME)
2409     goto done;
2410
2411   /* waiting could have been interrupted and we can be flushing now */
2412   if (G_UNLIKELY (basesink->flushing))
2413     goto flushing;
2414
2415   /* check for unlocked by a state change, we are not flushing so
2416    * we can try to preroll on the current buffer. */
2417   if (G_UNLIKELY (status == GST_CLOCK_UNSCHEDULED)) {
2418     GST_DEBUG_OBJECT (basesink, "unscheduled, waiting some more");
2419     priv->call_preroll = TRUE;
2420     goto again;
2421   }
2422
2423   /* successful syncing done, record observation */
2424   priv->current_jitter = jitter;
2425
2426   /* check if the object should be dropped */
2427   *late = gst_base_sink_is_too_late (basesink, obj, rstart, rstop,
2428       status, jitter);
2429
2430 done:
2431   return GST_FLOW_OK;
2432
2433   /* ERRORS */
2434 step_skipped:
2435   {
2436     GST_DEBUG_OBJECT (basesink, "skipped stepped object %p", obj);
2437     *late = TRUE;
2438     return GST_FLOW_OK;
2439   }
2440 not_syncable:
2441   {
2442     GST_DEBUG_OBJECT (basesink, "non syncable object %p", obj);
2443     return GST_FLOW_OK;
2444   }
2445 qos_dropped:
2446   {
2447     GST_DEBUG_OBJECT (basesink, "dropped because of QoS %p", obj);
2448     *late = TRUE;
2449     return GST_FLOW_OK;
2450   }
2451 flushing:
2452   {
2453     GST_DEBUG_OBJECT (basesink, "we are flushing");
2454     return GST_FLOW_WRONG_STATE;
2455   }
2456 preroll_failed:
2457   {
2458     GST_DEBUG_OBJECT (basesink, "preroll failed");
2459     *step_end = FALSE;
2460     return ret;
2461   }
2462 }
2463
2464 static gboolean
2465 gst_base_sink_send_qos (GstBaseSink * basesink, GstQOSType type,
2466     gdouble proportion, GstClockTime time, GstClockTimeDiff diff)
2467 {
2468   GstEvent *event;
2469   gboolean res;
2470
2471   /* generate Quality-of-Service event */
2472   GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, basesink,
2473       "qos: type %d, proportion: %lf, diff %" G_GINT64_FORMAT ", timestamp %"
2474       GST_TIME_FORMAT, type, proportion, diff, GST_TIME_ARGS (time));
2475
2476   event = gst_event_new_qos (type, proportion, diff, time);
2477
2478   /* send upstream */
2479   res = gst_pad_push_event (basesink->sinkpad, event);
2480
2481   return res;
2482 }
2483
2484 static void
2485 gst_base_sink_perform_qos (GstBaseSink * sink, gboolean dropped)
2486 {
2487   GstBaseSinkPrivate *priv;
2488   GstClockTime start, stop;
2489   GstClockTimeDiff jitter;
2490   GstClockTime pt, entered, left;
2491   GstClockTime duration;
2492   gdouble rate;
2493
2494   priv = sink->priv;
2495
2496   start = priv->current_rstart;
2497
2498   if (priv->current_step.valid)
2499     return;
2500
2501   /* if Quality-of-Service disabled, do nothing */
2502   if (!g_atomic_int_get (&priv->qos_enabled) ||
2503       !GST_CLOCK_TIME_IS_VALID (start))
2504     return;
2505
2506   stop = priv->current_rstop;
2507   jitter = priv->current_jitter;
2508
2509   if (jitter < 0) {
2510     /* this is the time the buffer entered the sink */
2511     if (start < -jitter)
2512       entered = 0;
2513     else
2514       entered = start + jitter;
2515     left = start;
2516   } else {
2517     /* this is the time the buffer entered the sink */
2518     entered = start + jitter;
2519     /* this is the time the buffer left the sink */
2520     left = start + jitter;
2521   }
2522
2523   /* calculate duration of the buffer */
2524   if (GST_CLOCK_TIME_IS_VALID (stop) && stop != start)
2525     duration = stop - start;
2526   else
2527     duration = priv->avg_in_diff;
2528
2529   /* if we have the time when the last buffer left us, calculate
2530    * processing time */
2531   if (GST_CLOCK_TIME_IS_VALID (priv->last_left)) {
2532     if (entered > priv->last_left) {
2533       pt = entered - priv->last_left;
2534     } else {
2535       pt = 0;
2536     }
2537   } else {
2538     pt = priv->avg_pt;
2539   }
2540
2541   GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, sink, "start: %" GST_TIME_FORMAT
2542       ", stop %" GST_TIME_FORMAT ", entered %" GST_TIME_FORMAT ", left %"
2543       GST_TIME_FORMAT ", pt: %" GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT
2544       ",jitter %" G_GINT64_FORMAT, GST_TIME_ARGS (start), GST_TIME_ARGS (stop),
2545       GST_TIME_ARGS (entered), GST_TIME_ARGS (left), GST_TIME_ARGS (pt),
2546       GST_TIME_ARGS (duration), jitter);
2547
2548   GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, sink, "avg_duration: %" GST_TIME_FORMAT
2549       ", avg_pt: %" GST_TIME_FORMAT ", avg_rate: %g",
2550       GST_TIME_ARGS (priv->avg_duration), GST_TIME_ARGS (priv->avg_pt),
2551       priv->avg_rate);
2552
2553   /* collect running averages. for first observations, we copy the
2554    * values */
2555   if (!GST_CLOCK_TIME_IS_VALID (priv->avg_duration))
2556     priv->avg_duration = duration;
2557   else
2558     priv->avg_duration = UPDATE_RUNNING_AVG (priv->avg_duration, duration);
2559
2560   if (!GST_CLOCK_TIME_IS_VALID (priv->avg_pt))
2561     priv->avg_pt = pt;
2562   else
2563     priv->avg_pt = UPDATE_RUNNING_AVG (priv->avg_pt, pt);
2564
2565   if (priv->avg_duration != 0)
2566     rate =
2567         gst_guint64_to_gdouble (priv->avg_pt) /
2568         gst_guint64_to_gdouble (priv->avg_duration);
2569   else
2570     rate = 1.0;
2571
2572   if (GST_CLOCK_TIME_IS_VALID (priv->last_left)) {
2573     if (dropped || priv->avg_rate < 0.0) {
2574       priv->avg_rate = rate;
2575     } else {
2576       if (rate > 1.0)
2577         priv->avg_rate = UPDATE_RUNNING_AVG_N (priv->avg_rate, rate);
2578       else
2579         priv->avg_rate = UPDATE_RUNNING_AVG_P (priv->avg_rate, rate);
2580     }
2581   }
2582
2583   GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, sink,
2584       "updated: avg_duration: %" GST_TIME_FORMAT ", avg_pt: %" GST_TIME_FORMAT
2585       ", avg_rate: %g", GST_TIME_ARGS (priv->avg_duration),
2586       GST_TIME_ARGS (priv->avg_pt), priv->avg_rate);
2587
2588
2589   if (priv->avg_rate >= 0.0) {
2590     GstQOSType type;
2591     GstClockTimeDiff diff;
2592
2593     /* if we have a valid rate, start sending QoS messages */
2594     if (priv->current_jitter < 0) {
2595       /* make sure we never go below 0 when adding the jitter to the
2596        * timestamp. */
2597       if (priv->current_rstart < -priv->current_jitter)
2598         priv->current_jitter = -priv->current_rstart;
2599     }
2600
2601     if (priv->throttle_time > 0) {
2602       diff = priv->throttle_time;
2603       type = GST_QOS_TYPE_THROTTLE;
2604     } else {
2605       diff = priv->current_jitter;
2606       if (diff <= 0)
2607         type = GST_QOS_TYPE_OVERFLOW;
2608       else
2609         type = GST_QOS_TYPE_UNDERFLOW;
2610     }
2611
2612     gst_base_sink_send_qos (sink, type, priv->avg_rate, priv->current_rstart,
2613         diff);
2614   }
2615
2616   /* record when this buffer will leave us */
2617   priv->last_left = left;
2618 }
2619
2620 /* reset all qos measuring */
2621 static void
2622 gst_base_sink_reset_qos (GstBaseSink * sink)
2623 {
2624   GstBaseSinkPrivate *priv;
2625
2626   priv = sink->priv;
2627
2628   priv->last_render_time = GST_CLOCK_TIME_NONE;
2629   priv->prev_rstart = GST_CLOCK_TIME_NONE;
2630   priv->earliest_in_time = GST_CLOCK_TIME_NONE;
2631   priv->last_left = GST_CLOCK_TIME_NONE;
2632   priv->avg_duration = GST_CLOCK_TIME_NONE;
2633   priv->avg_pt = GST_CLOCK_TIME_NONE;
2634   priv->avg_rate = -1.0;
2635   priv->avg_render = GST_CLOCK_TIME_NONE;
2636   priv->avg_in_diff = GST_CLOCK_TIME_NONE;
2637   priv->rendered = 0;
2638   priv->dropped = 0;
2639
2640 }
2641
2642 /* Checks if the object was scheduled too late.
2643  *
2644  * rstart/rstop contain the running_time start and stop values
2645  * of the object.
2646  *
2647  * status and jitter contain the return values from the clock wait.
2648  *
2649  * returns TRUE if the buffer was too late.
2650  */
2651 static gboolean
2652 gst_base_sink_is_too_late (GstBaseSink * basesink, GstMiniObject * obj,
2653     GstClockTime rstart, GstClockTime rstop,
2654     GstClockReturn status, GstClockTimeDiff jitter)
2655 {
2656   gboolean late;
2657   guint64 max_lateness;
2658   GstBaseSinkPrivate *priv;
2659
2660   priv = basesink->priv;
2661
2662   late = FALSE;
2663
2664   /* only for objects that were too late */
2665   if (G_LIKELY (status != GST_CLOCK_EARLY))
2666     goto in_time;
2667
2668   max_lateness = basesink->max_lateness;
2669
2670   /* check if frame dropping is enabled */
2671   if (max_lateness == -1)
2672     goto no_drop;
2673
2674   /* only check for buffers */
2675   if (G_UNLIKELY (!GST_IS_BUFFER (obj)))
2676     goto not_buffer;
2677
2678   /* can't do check if we don't have a timestamp */
2679   if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (rstart)))
2680     goto no_timestamp;
2681
2682   /* we can add a valid stop time */
2683   if (GST_CLOCK_TIME_IS_VALID (rstop))
2684     max_lateness += rstop;
2685   else {
2686     max_lateness += rstart;
2687     /* no stop time, use avg frame diff */
2688     if (priv->avg_in_diff != -1)
2689       max_lateness += priv->avg_in_diff;
2690   }
2691
2692   /* if the jitter bigger than duration and lateness we are too late */
2693   if ((late = rstart + jitter > max_lateness)) {
2694     GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, basesink,
2695         "buffer is too late %" GST_TIME_FORMAT
2696         " > %" GST_TIME_FORMAT, GST_TIME_ARGS (rstart + jitter),
2697         GST_TIME_ARGS (max_lateness));
2698     /* !!emergency!!, if we did not receive anything valid for more than a
2699      * second, render it anyway so the user sees something */
2700     if (GST_CLOCK_TIME_IS_VALID (priv->last_render_time) &&
2701         rstart - priv->last_render_time > GST_SECOND) {
2702       late = FALSE;
2703       GST_ELEMENT_WARNING (basesink, CORE, CLOCK,
2704           (_("A lot of buffers are being dropped.")),
2705           ("There may be a timestamping problem, or this computer is too slow."));
2706       GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, basesink,
2707           "**emergency** last buffer at %" GST_TIME_FORMAT " > GST_SECOND",
2708           GST_TIME_ARGS (priv->last_render_time));
2709     }
2710   }
2711
2712 done:
2713   if (!late || !GST_CLOCK_TIME_IS_VALID (priv->last_render_time)) {
2714     priv->last_render_time = rstart;
2715     /* the next allowed input timestamp */
2716     if (priv->throttle_time > 0)
2717       priv->earliest_in_time = rstart + priv->throttle_time;
2718   }
2719   return late;
2720
2721   /* all is fine */
2722 in_time:
2723   {
2724     GST_DEBUG_OBJECT (basesink, "object was scheduled in time");
2725     goto done;
2726   }
2727 no_drop:
2728   {
2729     GST_DEBUG_OBJECT (basesink, "frame dropping disabled");
2730     goto done;
2731   }
2732 not_buffer:
2733   {
2734     GST_DEBUG_OBJECT (basesink, "object is not a buffer");
2735     return FALSE;
2736   }
2737 no_timestamp:
2738   {
2739     GST_DEBUG_OBJECT (basesink, "buffer has no timestamp");
2740     return FALSE;
2741   }
2742 }
2743
2744 /* called before and after calling the render vmethod. It keeps track of how
2745  * much time was spent in the render method and is used to check if we are
2746  * flooded */
2747 static void
2748 gst_base_sink_do_render_stats (GstBaseSink * basesink, gboolean start)
2749 {
2750   GstBaseSinkPrivate *priv;
2751
2752   priv = basesink->priv;
2753
2754   if (start) {
2755     priv->start = gst_util_get_timestamp ();
2756   } else {
2757     GstClockTime elapsed;
2758
2759     priv->stop = gst_util_get_timestamp ();
2760
2761     elapsed = GST_CLOCK_DIFF (priv->start, priv->stop);
2762
2763     if (!GST_CLOCK_TIME_IS_VALID (priv->avg_render))
2764       priv->avg_render = elapsed;
2765     else
2766       priv->avg_render = UPDATE_RUNNING_AVG (priv->avg_render, elapsed);
2767
2768     GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, basesink,
2769         "avg_render: %" GST_TIME_FORMAT, GST_TIME_ARGS (priv->avg_render));
2770   }
2771 }
2772
2773 static void
2774 gst_base_sink_flush_start (GstBaseSink * basesink, GstPad * pad)
2775 {
2776   /* make sure we are not blocked on the clock also clear any pending
2777    * eos state. */
2778   gst_base_sink_set_flushing (basesink, pad, TRUE);
2779
2780   /* we grab the stream lock but that is not needed since setting the
2781    * sink to flushing would make sure no state commit is being done
2782    * anymore */
2783   GST_PAD_STREAM_LOCK (pad);
2784   gst_base_sink_reset_qos (basesink);
2785   /* and we need to commit our state again on the next
2786    * prerolled buffer */
2787   basesink->playing_async = TRUE;
2788   if (basesink->priv->async_enabled) {
2789     gst_element_lost_state (GST_ELEMENT_CAST (basesink));
2790   } else {
2791     /* start time reset in above case as well;
2792      * arranges for a.o. proper position reporting when flushing in PAUSED */
2793     gst_element_set_start_time (GST_ELEMENT_CAST (basesink), 0);
2794     basesink->priv->have_latency = TRUE;
2795   }
2796   gst_base_sink_set_last_buffer (basesink, NULL);
2797   GST_PAD_STREAM_UNLOCK (pad);
2798 }
2799
2800 static void
2801 gst_base_sink_flush_stop (GstBaseSink * basesink, GstPad * pad,
2802     gboolean reset_time)
2803 {
2804   /* unset flushing so we can accept new data, this also flushes out any EOS
2805    * event. */
2806   gst_base_sink_set_flushing (basesink, pad, FALSE);
2807
2808   /* for position reporting */
2809   GST_OBJECT_LOCK (basesink);
2810   basesink->priv->current_sstart = GST_CLOCK_TIME_NONE;
2811   basesink->priv->current_sstop = GST_CLOCK_TIME_NONE;
2812   basesink->priv->eos_rtime = GST_CLOCK_TIME_NONE;
2813   basesink->priv->call_preroll = TRUE;
2814   basesink->priv->current_step.valid = FALSE;
2815   basesink->priv->pending_step.valid = FALSE;
2816   if (basesink->pad_mode == GST_PAD_MODE_PUSH) {
2817     /* we need new segment info after the flush. */
2818     basesink->have_newsegment = FALSE;
2819     if (reset_time) {
2820       gst_segment_init (&basesink->segment, GST_FORMAT_UNDEFINED);
2821     }
2822   }
2823   basesink->priv->reset_time = reset_time;
2824   GST_OBJECT_UNLOCK (basesink);
2825 }
2826
2827 static GstFlowReturn
2828 gst_base_sink_default_wait_eos (GstBaseSink * basesink, GstEvent * event)
2829 {
2830   GstFlowReturn ret;
2831   gboolean late, step_end;
2832
2833   ret = gst_base_sink_do_sync (basesink, GST_MINI_OBJECT_CAST (event),
2834       &late, &step_end);
2835
2836   return ret;
2837 }
2838
2839 static gboolean
2840 gst_base_sink_default_event (GstBaseSink * basesink, GstEvent * event)
2841 {
2842   gboolean result = TRUE;
2843   GstBaseSinkClass *bclass;
2844
2845   bclass = GST_BASE_SINK_GET_CLASS (basesink);
2846
2847   switch (GST_EVENT_TYPE (event)) {
2848     case GST_EVENT_FLUSH_START:
2849     {
2850       GST_DEBUG_OBJECT (basesink, "flush-start %p", event);
2851       gst_base_sink_flush_start (basesink, basesink->sinkpad);
2852       break;
2853     }
2854     case GST_EVENT_FLUSH_STOP:
2855     {
2856       gboolean reset_time;
2857
2858       gst_event_parse_flush_stop (event, &reset_time);
2859       GST_DEBUG_OBJECT (basesink, "flush-stop %p, reset_time: %d", event,
2860           reset_time);
2861       gst_base_sink_flush_stop (basesink, basesink->sinkpad, reset_time);
2862       break;
2863     }
2864     case GST_EVENT_EOS:
2865     {
2866       GstMessage *message;
2867       guint32 seqnum;
2868
2869       /* we set the received EOS flag here so that we can use it when testing if
2870        * we are prerolled and to refuse more buffers. */
2871       basesink->priv->received_eos = TRUE;
2872
2873       /* wait for EOS */
2874       if (G_LIKELY (bclass->wait_eos)) {
2875         GstFlowReturn ret;
2876
2877         ret = bclass->wait_eos (basesink, event);
2878         if (G_UNLIKELY (ret != GST_FLOW_OK)) {
2879           result = FALSE;
2880           goto done;
2881         }
2882       }
2883
2884       /* the EOS event is completely handled so we mark
2885        * ourselves as being in the EOS state. eos is also
2886        * protected by the object lock so we can read it when
2887        * answering the POSITION query. */
2888       GST_OBJECT_LOCK (basesink);
2889       basesink->eos = TRUE;
2890       GST_OBJECT_UNLOCK (basesink);
2891
2892       /* ok, now we can post the message */
2893       GST_DEBUG_OBJECT (basesink, "Now posting EOS");
2894
2895       seqnum = basesink->priv->seqnum = gst_event_get_seqnum (event);
2896       GST_DEBUG_OBJECT (basesink, "Got seqnum #%" G_GUINT32_FORMAT, seqnum);
2897
2898       message = gst_message_new_eos (GST_OBJECT_CAST (basesink));
2899       gst_message_set_seqnum (message, seqnum);
2900       gst_element_post_message (GST_ELEMENT_CAST (basesink), message);
2901       break;
2902     }
2903     case GST_EVENT_CAPS:
2904     {
2905       GstCaps *caps;
2906
2907       GST_DEBUG_OBJECT (basesink, "caps %p", event);
2908
2909       gst_event_parse_caps (event, &caps);
2910       if (bclass->set_caps)
2911         result = bclass->set_caps (basesink, caps);
2912
2913       if (result) {
2914         GST_OBJECT_LOCK (basesink);
2915         gst_caps_replace (&basesink->priv->caps, caps);
2916         GST_OBJECT_UNLOCK (basesink);
2917       }
2918       break;
2919     }
2920     case GST_EVENT_SEGMENT:
2921       /* configure the segment */
2922       /* The segment is protected with both the STREAM_LOCK and the OBJECT_LOCK.
2923        * We protect with the OBJECT_LOCK so that we can use the values to
2924        * safely answer a POSITION query. */
2925       GST_OBJECT_LOCK (basesink);
2926       /* the newsegment event is needed to bring the buffer timestamps to the
2927        * stream time and to drop samples outside of the playback segment. */
2928       gst_event_copy_segment (event, &basesink->segment);
2929       GST_DEBUG_OBJECT (basesink, "configured SEGMENT %" GST_SEGMENT_FORMAT,
2930           &basesink->segment);
2931       basesink->have_newsegment = TRUE;
2932       GST_OBJECT_UNLOCK (basesink);
2933       break;
2934     case GST_EVENT_TAG:
2935     {
2936       GstTagList *taglist;
2937
2938       gst_event_parse_tag (event, &taglist);
2939
2940       gst_element_post_message (GST_ELEMENT_CAST (basesink),
2941           gst_message_new_tag (GST_OBJECT_CAST (basesink),
2942               gst_tag_list_copy (taglist)));
2943       break;
2944     }
2945     case GST_EVENT_SINK_MESSAGE:
2946     {
2947       GstMessage *msg = NULL;
2948
2949       gst_event_parse_sink_message (event, &msg);
2950       if (msg)
2951         gst_element_post_message (GST_ELEMENT_CAST (basesink), msg);
2952       break;
2953     }
2954     default:
2955       break;
2956   }
2957 done:
2958   gst_event_unref (event);
2959
2960   return result;
2961 }
2962
2963 static gboolean
2964 gst_base_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
2965 {
2966   GstBaseSink *basesink;
2967   gboolean result = TRUE;
2968   GstBaseSinkClass *bclass;
2969
2970   basesink = GST_BASE_SINK_CAST (parent);
2971   bclass = GST_BASE_SINK_GET_CLASS (basesink);
2972
2973   GST_DEBUG_OBJECT (basesink, "received event %p %" GST_PTR_FORMAT, event,
2974       event);
2975
2976   switch (GST_EVENT_TYPE (event)) {
2977     case GST_EVENT_FLUSH_STOP:
2978       /* special case for this serialized event because we don't want to grab
2979        * the PREROLL lock or check if we were flushing */
2980       if (bclass->event)
2981         result = bclass->event (basesink, event);
2982       break;
2983     default:
2984       if (GST_EVENT_IS_SERIALIZED (event)) {
2985         GST_BASE_SINK_PREROLL_LOCK (basesink);
2986         if (G_UNLIKELY (basesink->flushing))
2987           goto flushing;
2988
2989         if (G_UNLIKELY (basesink->priv->received_eos))
2990           goto after_eos;
2991
2992         if (bclass->event)
2993           result = bclass->event (basesink, event);
2994
2995         GST_BASE_SINK_PREROLL_UNLOCK (basesink);
2996       } else {
2997         if (bclass->event)
2998           result = bclass->event (basesink, event);
2999       }
3000       break;
3001   }
3002 done:
3003   return result;
3004
3005   /* ERRORS */
3006 flushing:
3007   {
3008     GST_DEBUG_OBJECT (basesink, "we are flushing");
3009     GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3010     gst_event_unref (event);
3011     result = FALSE;
3012     goto done;
3013   }
3014
3015 after_eos:
3016   {
3017     GST_DEBUG_OBJECT (basesink, "Event received after EOS, dropping");
3018     GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3019     gst_event_unref (event);
3020     result = FALSE;
3021     goto done;
3022   }
3023 }
3024
3025 /* default implementation to calculate the start and end
3026  * timestamps on a buffer, subclasses can override
3027  */
3028 static void
3029 gst_base_sink_default_get_times (GstBaseSink * basesink, GstBuffer * buffer,
3030     GstClockTime * start, GstClockTime * end)
3031 {
3032   GstClockTime timestamp, duration;
3033
3034   /* first sync on DTS, else use PTS */
3035   timestamp = GST_BUFFER_DTS (buffer);
3036   if (!GST_CLOCK_TIME_IS_VALID (timestamp))
3037     timestamp = GST_BUFFER_PTS (buffer);
3038
3039   if (GST_CLOCK_TIME_IS_VALID (timestamp)) {
3040     /* get duration to calculate end time */
3041     duration = GST_BUFFER_DURATION (buffer);
3042     if (GST_CLOCK_TIME_IS_VALID (duration)) {
3043       *end = timestamp + duration;
3044     }
3045     *start = timestamp;
3046   }
3047 }
3048
3049 /* must be called with PREROLL_LOCK */
3050 static gboolean
3051 gst_base_sink_needs_preroll (GstBaseSink * basesink)
3052 {
3053   gboolean is_prerolled, res;
3054
3055   /* we have 2 cases where the PREROLL_LOCK is released:
3056    *  1) we are blocking in the PREROLL_LOCK and thus are prerolled.
3057    *  2) we are syncing on the clock
3058    */
3059   is_prerolled = basesink->have_preroll || basesink->priv->received_eos;
3060   res = !is_prerolled;
3061
3062   GST_DEBUG_OBJECT (basesink, "have_preroll: %d, EOS: %d => needs preroll: %d",
3063       basesink->have_preroll, basesink->priv->received_eos, res);
3064
3065   return res;
3066 }
3067
3068 /* with STREAM_LOCK, PREROLL_LOCK
3069  *
3070  * Takes a buffer and compare the timestamps with the last segment.
3071  * If the buffer falls outside of the segment boundaries, drop it.
3072  * Else send the buffer for preroll and rendering.
3073  *
3074  * This function takes ownership of the buffer.
3075  */
3076 static GstFlowReturn
3077 gst_base_sink_chain_unlocked (GstBaseSink * basesink, GstPad * pad,
3078     gpointer obj)
3079 {
3080   GstBaseSinkClass *bclass;
3081   GstBaseSinkPrivate *priv = basesink->priv;
3082   GstFlowReturn ret;
3083   GstClockTime start = GST_CLOCK_TIME_NONE, end = GST_CLOCK_TIME_NONE;
3084   GstSegment *segment;
3085   GstBuffer *sync_buf;
3086   gint do_qos;
3087   gboolean late, step_end;
3088
3089   if (G_UNLIKELY (basesink->flushing))
3090     goto flushing;
3091
3092   if (G_UNLIKELY (priv->received_eos))
3093     goto was_eos;
3094
3095   if (GST_IS_BUFFER_LIST (obj)) {
3096     sync_buf = gst_buffer_list_get (GST_BUFFER_LIST_CAST (obj), 0);
3097     g_assert (NULL != sync_buf);
3098   } else {
3099     sync_buf = GST_BUFFER_CAST (obj);
3100   }
3101
3102   /* for code clarity */
3103   segment = &basesink->segment;
3104
3105   if (G_UNLIKELY (!basesink->have_newsegment)) {
3106     gboolean sync;
3107
3108     sync = gst_base_sink_get_sync (basesink);
3109     if (sync) {
3110       GST_ELEMENT_WARNING (basesink, STREAM, FAILED,
3111           (_("Internal data flow problem.")),
3112           ("Received buffer without a new-segment. Assuming timestamps start from 0."));
3113     }
3114
3115     /* this means this sink will assume timestamps start from 0 */
3116     GST_OBJECT_LOCK (basesink);
3117     segment->start = 0;
3118     segment->stop = -1;
3119     basesink->segment.start = 0;
3120     basesink->segment.stop = -1;
3121     basesink->have_newsegment = TRUE;
3122     GST_OBJECT_UNLOCK (basesink);
3123   }
3124
3125   bclass = GST_BASE_SINK_GET_CLASS (basesink);
3126
3127   /* check if the buffer needs to be dropped, we first ask the subclass for the
3128    * start and end */
3129   if (bclass->get_times)
3130     bclass->get_times (basesink, sync_buf, &start, &end);
3131
3132   if (!GST_CLOCK_TIME_IS_VALID (start)) {
3133     /* if the subclass does not want sync, we use our own values so that we at
3134      * least clip the buffer to the segment */
3135     gst_base_sink_default_get_times (basesink, sync_buf, &start, &end);
3136   }
3137
3138   GST_DEBUG_OBJECT (basesink, "got times start: %" GST_TIME_FORMAT
3139       ", end: %" GST_TIME_FORMAT, GST_TIME_ARGS (start), GST_TIME_ARGS (end));
3140
3141   /* a dropped buffer does not participate in anything */
3142   if (GST_CLOCK_TIME_IS_VALID (start) && (segment->format == GST_FORMAT_TIME)) {
3143     if (G_UNLIKELY (!gst_segment_clip (segment,
3144                 GST_FORMAT_TIME, start, end, NULL, NULL)))
3145       goto out_of_segment;
3146   }
3147
3148 again:
3149   late = FALSE;
3150   step_end = FALSE;
3151
3152   /* synchronize this object, non syncable objects return OK
3153    * immediately. */
3154   ret = gst_base_sink_do_sync (basesink, GST_MINI_OBJECT_CAST (sync_buf),
3155       &late, &step_end);
3156   if (G_UNLIKELY (ret != GST_FLOW_OK))
3157     goto sync_failed;
3158
3159   /* drop late buffers unconditionally, let's hope it's unlikely */
3160   if (G_UNLIKELY (late))
3161     goto dropped;
3162
3163   /* read once, to get same value before and after */
3164   do_qos = g_atomic_int_get (&priv->qos_enabled);
3165
3166   GST_DEBUG_OBJECT (basesink, "rendering object %p", obj);
3167
3168   /* record rendering time for QoS and stats */
3169   if (do_qos)
3170     gst_base_sink_do_render_stats (basesink, TRUE);
3171
3172   if (!GST_IS_BUFFER_LIST (obj)) {
3173     /* For buffer lists do not set last buffer for now. */
3174     gst_base_sink_set_last_buffer (basesink, GST_BUFFER_CAST (obj));
3175
3176     if (bclass->render)
3177       ret = bclass->render (basesink, GST_BUFFER_CAST (obj));
3178   } else {
3179     if (bclass->render_list)
3180       ret = bclass->render_list (basesink, GST_BUFFER_LIST_CAST (obj));
3181   }
3182
3183   if (do_qos)
3184     gst_base_sink_do_render_stats (basesink, FALSE);
3185
3186   if (ret == GST_FLOW_STEP)
3187     goto again;
3188
3189   if (G_UNLIKELY (basesink->flushing))
3190     goto flushing;
3191
3192   priv->rendered++;
3193
3194 done:
3195   if (step_end) {
3196     /* the step ended, check if we need to activate a new step */
3197     GST_DEBUG_OBJECT (basesink, "step ended");
3198     stop_stepping (basesink, &basesink->segment, &priv->current_step,
3199         priv->current_rstart, priv->current_rstop, basesink->eos);
3200     goto again;
3201   }
3202
3203   gst_base_sink_perform_qos (basesink, late);
3204
3205   GST_DEBUG_OBJECT (basesink, "object unref after render %p", obj);
3206   gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3207
3208   return ret;
3209
3210   /* ERRORS */
3211 flushing:
3212   {
3213     GST_DEBUG_OBJECT (basesink, "sink is flushing");
3214     gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3215     return GST_FLOW_WRONG_STATE;
3216   }
3217 was_eos:
3218   {
3219     GST_DEBUG_OBJECT (basesink, "we are EOS, dropping object, return EOS");
3220     gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3221     return GST_FLOW_EOS;
3222   }
3223 out_of_segment:
3224   {
3225     GST_DEBUG_OBJECT (basesink, "dropping buffer, out of clipping segment");
3226     gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3227     return GST_FLOW_OK;
3228   }
3229 sync_failed:
3230   {
3231     GST_DEBUG_OBJECT (basesink, "do_sync returned %s", gst_flow_get_name (ret));
3232     goto done;
3233   }
3234 dropped:
3235   {
3236     priv->dropped++;
3237     GST_DEBUG_OBJECT (basesink, "buffer late, dropping");
3238
3239     if (g_atomic_int_get (&priv->qos_enabled)) {
3240       GstMessage *qos_msg;
3241       GstClockTime timestamp, duration;
3242
3243       timestamp = GST_BUFFER_TIMESTAMP (GST_BUFFER_CAST (sync_buf));
3244       duration = GST_BUFFER_DURATION (GST_BUFFER_CAST (sync_buf));
3245
3246       GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, basesink,
3247           "qos: dropped buffer rt %" GST_TIME_FORMAT ", st %" GST_TIME_FORMAT
3248           ", ts %" GST_TIME_FORMAT ", dur %" GST_TIME_FORMAT,
3249           GST_TIME_ARGS (priv->current_rstart),
3250           GST_TIME_ARGS (priv->current_sstart), GST_TIME_ARGS (timestamp),
3251           GST_TIME_ARGS (duration));
3252       GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, basesink,
3253           "qos: rendered %" G_GUINT64_FORMAT ", dropped %" G_GUINT64_FORMAT,
3254           priv->rendered, priv->dropped);
3255
3256       qos_msg =
3257           gst_message_new_qos (GST_OBJECT_CAST (basesink), basesink->sync,
3258           priv->current_rstart, priv->current_sstart, timestamp, duration);
3259       gst_message_set_qos_values (qos_msg, priv->current_jitter, priv->avg_rate,
3260           1000000);
3261       gst_message_set_qos_stats (qos_msg, GST_FORMAT_BUFFERS, priv->rendered,
3262           priv->dropped);
3263       gst_element_post_message (GST_ELEMENT_CAST (basesink), qos_msg);
3264     }
3265     goto done;
3266   }
3267 }
3268
3269 /* with STREAM_LOCK
3270  */
3271 static GstFlowReturn
3272 gst_base_sink_chain_main (GstBaseSink * basesink, GstPad * pad, gpointer obj)
3273 {
3274   GstFlowReturn result;
3275
3276   if (G_UNLIKELY (basesink->pad_mode != GST_PAD_MODE_PUSH))
3277     goto wrong_mode;
3278
3279   GST_BASE_SINK_PREROLL_LOCK (basesink);
3280   result = gst_base_sink_chain_unlocked (basesink, pad, obj);
3281   GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3282
3283 done:
3284   return result;
3285
3286   /* ERRORS */
3287 wrong_mode:
3288   {
3289     GST_OBJECT_LOCK (pad);
3290     GST_WARNING_OBJECT (basesink,
3291         "Push on pad %s:%s, but it was not activated in push mode",
3292         GST_DEBUG_PAD_NAME (pad));
3293     GST_OBJECT_UNLOCK (pad);
3294     gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3295     /* we don't post an error message this will signal to the peer
3296      * pushing that EOS is reached. */
3297     result = GST_FLOW_EOS;
3298     goto done;
3299   }
3300 }
3301
3302 static GstFlowReturn
3303 gst_base_sink_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
3304 {
3305   GstBaseSink *basesink;
3306
3307   basesink = GST_BASE_SINK (parent);
3308
3309   return gst_base_sink_chain_main (basesink, pad, buf);
3310 }
3311
3312 static GstFlowReturn
3313 gst_base_sink_chain_list (GstPad * pad, GstObject * parent,
3314     GstBufferList * list)
3315 {
3316   GstBaseSink *basesink;
3317   GstBaseSinkClass *bclass;
3318   GstFlowReturn result;
3319
3320   basesink = GST_BASE_SINK (parent);
3321   bclass = GST_BASE_SINK_GET_CLASS (basesink);
3322
3323   if (G_LIKELY (bclass->render_list)) {
3324     result = gst_base_sink_chain_main (basesink, pad, list);
3325   } else {
3326     guint i, len;
3327     GstBuffer *buffer;
3328
3329     GST_INFO_OBJECT (pad, "chaining each group in list as a merged buffer");
3330
3331     len = gst_buffer_list_length (list);
3332
3333     result = GST_FLOW_OK;
3334     for (i = 0; i < len; i++) {
3335       buffer = gst_buffer_list_get (list, 0);
3336       result = gst_base_sink_chain_main (basesink, pad,
3337           gst_buffer_ref (buffer));
3338       if (result != GST_FLOW_OK)
3339         break;
3340     }
3341     gst_buffer_list_unref (list);
3342   }
3343   return result;
3344 }
3345
3346
3347 static gboolean
3348 gst_base_sink_default_do_seek (GstBaseSink * sink, GstSegment * segment)
3349 {
3350   gboolean res = TRUE;
3351
3352   /* update our offset if the start/stop position was updated */
3353   if (segment->format == GST_FORMAT_BYTES) {
3354     segment->time = segment->start;
3355   } else if (segment->start == 0) {
3356     /* seek to start, we can implement a default for this. */
3357     segment->time = 0;
3358   } else {
3359     res = FALSE;
3360     GST_INFO_OBJECT (sink, "Can't do a default seek");
3361   }
3362
3363   return res;
3364 }
3365
3366 #define SEEK_TYPE_IS_RELATIVE(t) (((t) != GST_SEEK_TYPE_NONE) && ((t) != GST_SEEK_TYPE_SET))
3367
3368 static gboolean
3369 gst_base_sink_default_prepare_seek_segment (GstBaseSink * sink,
3370     GstEvent * event, GstSegment * segment)
3371 {
3372   /* By default, we try one of 2 things:
3373    *   - For absolute seek positions, convert the requested position to our
3374    *     configured processing format and place it in the output segment \
3375    *   - For relative seek positions, convert our current (input) values to the
3376    *     seek format, adjust by the relative seek offset and then convert back to
3377    *     the processing format
3378    */
3379   GstSeekType cur_type, stop_type;
3380   gint64 cur, stop;
3381   GstSeekFlags flags;
3382   GstFormat seek_format;
3383   gdouble rate;
3384   gboolean update;
3385   gboolean res = TRUE;
3386
3387   gst_event_parse_seek (event, &rate, &seek_format, &flags,
3388       &cur_type, &cur, &stop_type, &stop);
3389
3390   if (seek_format == segment->format) {
3391     gst_segment_do_seek (segment, rate, seek_format, flags,
3392         cur_type, cur, stop_type, stop, &update);
3393     return TRUE;
3394   }
3395
3396   if (cur_type != GST_SEEK_TYPE_NONE) {
3397     /* FIXME: Handle seek_cur & seek_end by converting the input segment vals */
3398     res =
3399         gst_pad_query_convert (sink->sinkpad, seek_format, cur, segment->format,
3400         &cur);
3401     cur_type = GST_SEEK_TYPE_SET;
3402   }
3403
3404   if (res && stop_type != GST_SEEK_TYPE_NONE) {
3405     /* FIXME: Handle seek_cur & seek_end by converting the input segment vals */
3406     res =
3407         gst_pad_query_convert (sink->sinkpad, seek_format, stop,
3408         segment->format, &stop);
3409     stop_type = GST_SEEK_TYPE_SET;
3410   }
3411
3412   /* And finally, configure our output segment in the desired format */
3413   gst_segment_do_seek (segment, rate, segment->format, flags, cur_type, cur,
3414       stop_type, stop, &update);
3415
3416   if (!res)
3417     goto no_format;
3418
3419   return res;
3420
3421 no_format:
3422   {
3423     GST_DEBUG_OBJECT (sink, "undefined format given, seek aborted.");
3424     return FALSE;
3425   }
3426 }
3427
3428 /* perform a seek, only executed in pull mode */
3429 static gboolean
3430 gst_base_sink_perform_seek (GstBaseSink * sink, GstPad * pad, GstEvent * event)
3431 {
3432   gboolean flush;
3433   gdouble rate;
3434   GstFormat seek_format, dest_format;
3435   GstSeekFlags flags;
3436   GstSeekType cur_type, stop_type;
3437   gboolean seekseg_configured = FALSE;
3438   gint64 cur, stop;
3439   gboolean update, res = TRUE;
3440   GstSegment seeksegment;
3441
3442   dest_format = sink->segment.format;
3443
3444   if (event) {
3445     GST_DEBUG_OBJECT (sink, "performing seek with event %p", event);
3446     gst_event_parse_seek (event, &rate, &seek_format, &flags,
3447         &cur_type, &cur, &stop_type, &stop);
3448
3449     flush = flags & GST_SEEK_FLAG_FLUSH;
3450   } else {
3451     GST_DEBUG_OBJECT (sink, "performing seek without event");
3452     flush = FALSE;
3453   }
3454
3455   if (flush) {
3456     GST_DEBUG_OBJECT (sink, "flushing upstream");
3457     gst_pad_push_event (pad, gst_event_new_flush_start ());
3458     gst_base_sink_flush_start (sink, pad);
3459   } else {
3460     GST_DEBUG_OBJECT (sink, "pausing pulling thread");
3461   }
3462
3463   GST_PAD_STREAM_LOCK (pad);
3464
3465   /* If we configured the seeksegment above, don't overwrite it now. Otherwise
3466    * copy the current segment info into the temp segment that we can actually
3467    * attempt the seek with. We only update the real segment if the seek succeeds. */
3468   if (!seekseg_configured) {
3469     memcpy (&seeksegment, &sink->segment, sizeof (GstSegment));
3470
3471     /* now configure the final seek segment */
3472     if (event) {
3473       if (sink->segment.format != seek_format) {
3474         /* OK, here's where we give the subclass a chance to convert the relative
3475          * seek into an absolute one in the processing format. We set up any
3476          * absolute seek above, before taking the stream lock. */
3477         if (!gst_base_sink_default_prepare_seek_segment (sink, event,
3478                 &seeksegment)) {
3479           GST_DEBUG_OBJECT (sink,
3480               "Preparing the seek failed after flushing. " "Aborting seek");
3481           res = FALSE;
3482         }
3483       } else {
3484         /* The seek format matches our processing format, no need to ask the
3485          * the subclass to configure the segment. */
3486         gst_segment_do_seek (&seeksegment, rate, seek_format, flags,
3487             cur_type, cur, stop_type, stop, &update);
3488       }
3489     }
3490     /* Else, no seek event passed, so we're just (re)starting the
3491        current segment. */
3492   }
3493
3494   if (res) {
3495     GST_DEBUG_OBJECT (sink, "segment configured from %" G_GINT64_FORMAT
3496         " to %" G_GINT64_FORMAT ", position %" G_GINT64_FORMAT,
3497         seeksegment.start, seeksegment.stop, seeksegment.position);
3498
3499     /* do the seek, segment.position contains the new position. */
3500     res = gst_base_sink_default_do_seek (sink, &seeksegment);
3501   }
3502
3503
3504   if (flush) {
3505     GST_DEBUG_OBJECT (sink, "stop flushing upstream");
3506     gst_pad_push_event (pad, gst_event_new_flush_stop (TRUE));
3507     gst_base_sink_flush_stop (sink, pad, TRUE);
3508   } else if (res && sink->running) {
3509     /* we are running the current segment and doing a non-flushing seek,
3510      * close the segment first based on the position. */
3511     GST_DEBUG_OBJECT (sink, "closing running segment %" G_GINT64_FORMAT
3512         " to %" G_GINT64_FORMAT, sink->segment.start, sink->segment.position);
3513   }
3514
3515   /* The subclass must have converted the segment to the processing format
3516    * by now */
3517   if (res && seeksegment.format != dest_format) {
3518     GST_DEBUG_OBJECT (sink, "Subclass failed to prepare a seek segment "
3519         "in the correct format. Aborting seek.");
3520     res = FALSE;
3521   }
3522
3523   /* if successful seek, we update our real segment and push
3524    * out the new segment. */
3525   if (res) {
3526     gst_segment_copy_into (&seeksegment, &sink->segment);
3527
3528     if (sink->segment.flags & GST_SEEK_FLAG_SEGMENT) {
3529       gst_element_post_message (GST_ELEMENT (sink),
3530           gst_message_new_segment_start (GST_OBJECT (sink),
3531               sink->segment.format, sink->segment.position));
3532     }
3533   }
3534
3535   sink->priv->discont = TRUE;
3536   sink->running = TRUE;
3537
3538   GST_PAD_STREAM_UNLOCK (pad);
3539
3540   return res;
3541 }
3542
3543 static void
3544 set_step_info (GstBaseSink * sink, GstStepInfo * current, GstStepInfo * pending,
3545     guint seqnum, GstFormat format, guint64 amount, gdouble rate,
3546     gboolean flush, gboolean intermediate)
3547 {
3548   GST_OBJECT_LOCK (sink);
3549   pending->seqnum = seqnum;
3550   pending->format = format;
3551   pending->amount = amount;
3552   pending->position = 0;
3553   pending->rate = rate;
3554   pending->flush = flush;
3555   pending->intermediate = intermediate;
3556   pending->valid = TRUE;
3557   /* flush invalidates the current stepping segment */
3558   if (flush)
3559     current->valid = FALSE;
3560   GST_OBJECT_UNLOCK (sink);
3561 }
3562
3563 static gboolean
3564 gst_base_sink_perform_step (GstBaseSink * sink, GstPad * pad, GstEvent * event)
3565 {
3566   GstBaseSinkPrivate *priv;
3567   GstBaseSinkClass *bclass;
3568   gboolean flush, intermediate;
3569   gdouble rate;
3570   GstFormat format;
3571   guint64 amount;
3572   guint seqnum;
3573   GstStepInfo *pending, *current;
3574   GstMessage *message;
3575
3576   bclass = GST_BASE_SINK_GET_CLASS (sink);
3577   priv = sink->priv;
3578
3579   GST_DEBUG_OBJECT (sink, "performing step with event %p", event);
3580
3581   gst_event_parse_step (event, &format, &amount, &rate, &flush, &intermediate);
3582   seqnum = gst_event_get_seqnum (event);
3583
3584   pending = &priv->pending_step;
3585   current = &priv->current_step;
3586
3587   /* post message first */
3588   message = gst_message_new_step_start (GST_OBJECT (sink), FALSE, format,
3589       amount, rate, flush, intermediate);
3590   gst_message_set_seqnum (message, seqnum);
3591   gst_element_post_message (GST_ELEMENT (sink), message);
3592
3593   if (flush) {
3594     /* we need to call ::unlock before locking PREROLL_LOCK
3595      * since we lock it before going into ::render */
3596     if (bclass->unlock)
3597       bclass->unlock (sink);
3598
3599     GST_BASE_SINK_PREROLL_LOCK (sink);
3600     /* now that we have the PREROLL lock, clear our unlock request */
3601     if (bclass->unlock_stop)
3602       bclass->unlock_stop (sink);
3603
3604     /* update the stepinfo and make it valid */
3605     set_step_info (sink, current, pending, seqnum, format, amount, rate, flush,
3606         intermediate);
3607
3608     if (sink->priv->async_enabled) {
3609       /* and we need to commit our state again on the next
3610        * prerolled buffer */
3611       sink->playing_async = TRUE;
3612       priv->pending_step.need_preroll = TRUE;
3613       sink->need_preroll = FALSE;
3614       gst_element_lost_state (GST_ELEMENT_CAST (sink));
3615     } else {
3616       sink->priv->have_latency = TRUE;
3617       sink->need_preroll = FALSE;
3618     }
3619     priv->current_sstart = GST_CLOCK_TIME_NONE;
3620     priv->current_sstop = GST_CLOCK_TIME_NONE;
3621     priv->eos_rtime = GST_CLOCK_TIME_NONE;
3622     priv->call_preroll = TRUE;
3623     gst_base_sink_set_last_buffer (sink, NULL);
3624     gst_base_sink_reset_qos (sink);
3625
3626     if (sink->clock_id) {
3627       gst_clock_id_unschedule (sink->clock_id);
3628     }
3629
3630     if (sink->have_preroll) {
3631       GST_DEBUG_OBJECT (sink, "signal waiter");
3632       priv->step_unlock = TRUE;
3633       GST_BASE_SINK_PREROLL_SIGNAL (sink);
3634     }
3635     GST_BASE_SINK_PREROLL_UNLOCK (sink);
3636   } else {
3637     /* update the stepinfo and make it valid */
3638     set_step_info (sink, current, pending, seqnum, format, amount, rate, flush,
3639         intermediate);
3640   }
3641
3642   return TRUE;
3643 }
3644
3645 /* with STREAM_LOCK
3646  */
3647 static void
3648 gst_base_sink_loop (GstPad * pad)
3649 {
3650   GstObject *parent;
3651   GstBaseSink *basesink;
3652   GstBuffer *buf = NULL;
3653   GstFlowReturn result;
3654   guint blocksize;
3655   guint64 offset;
3656
3657   parent = GST_OBJECT_PARENT (pad);
3658   basesink = GST_BASE_SINK (parent);
3659
3660   g_assert (basesink->pad_mode == GST_PAD_MODE_PULL);
3661
3662   if ((blocksize = basesink->priv->blocksize) == 0)
3663     blocksize = -1;
3664
3665   offset = basesink->segment.position;
3666
3667   GST_DEBUG_OBJECT (basesink, "pulling %" G_GUINT64_FORMAT ", %u",
3668       offset, blocksize);
3669
3670   result = gst_pad_pull_range (pad, offset, blocksize, &buf);
3671   if (G_UNLIKELY (result != GST_FLOW_OK))
3672     goto paused;
3673
3674   if (G_UNLIKELY (buf == NULL))
3675     goto no_buffer;
3676
3677   offset += gst_buffer_get_size (buf);
3678
3679   basesink->segment.position = offset;
3680
3681   GST_BASE_SINK_PREROLL_LOCK (basesink);
3682   result = gst_base_sink_chain_unlocked (basesink, pad, buf);
3683   GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3684   if (G_UNLIKELY (result != GST_FLOW_OK))
3685     goto paused;
3686
3687   return;
3688
3689   /* ERRORS */
3690 paused:
3691   {
3692     GST_LOG_OBJECT (basesink, "pausing task, reason %s",
3693         gst_flow_get_name (result));
3694     gst_pad_pause_task (pad);
3695     if (result == GST_FLOW_EOS) {
3696       /* perform EOS logic */
3697       if (basesink->segment.flags & GST_SEEK_FLAG_SEGMENT) {
3698         gst_element_post_message (GST_ELEMENT_CAST (basesink),
3699             gst_message_new_segment_done (GST_OBJECT_CAST (basesink),
3700                 basesink->segment.format, basesink->segment.position));
3701       } else {
3702         gst_base_sink_event (pad, parent, gst_event_new_eos ());
3703       }
3704     } else if (result == GST_FLOW_NOT_LINKED || result <= GST_FLOW_EOS) {
3705       /* for fatal errors we post an error message, post the error
3706        * first so the app knows about the error first. 
3707        * wrong-state is not a fatal error because it happens due to
3708        * flushing and posting an error message in that case is the
3709        * wrong thing to do, e.g. when basesrc is doing a flushing
3710        * seek. */
3711       GST_ELEMENT_ERROR (basesink, STREAM, FAILED,
3712           (_("Internal data stream error.")),
3713           ("stream stopped, reason %s", gst_flow_get_name (result)));
3714       gst_base_sink_event (pad, parent, gst_event_new_eos ());
3715     }
3716     return;
3717   }
3718 no_buffer:
3719   {
3720     GST_LOG_OBJECT (basesink, "no buffer, pausing");
3721     GST_ELEMENT_ERROR (basesink, STREAM, FAILED,
3722         (_("Internal data flow error.")), ("element returned NULL buffer"));
3723     result = GST_FLOW_ERROR;
3724     goto paused;
3725   }
3726 }
3727
3728 static gboolean
3729 gst_base_sink_set_flushing (GstBaseSink * basesink, GstPad * pad,
3730     gboolean flushing)
3731 {
3732   GstBaseSinkClass *bclass;
3733
3734   bclass = GST_BASE_SINK_GET_CLASS (basesink);
3735
3736   if (flushing) {
3737     /* unlock any subclasses, we need to do this before grabbing the
3738      * PREROLL_LOCK since we hold this lock before going into ::render. */
3739     if (bclass->unlock)
3740       bclass->unlock (basesink);
3741   }
3742
3743   GST_BASE_SINK_PREROLL_LOCK (basesink);
3744   basesink->flushing = flushing;
3745   if (flushing) {
3746     /* step 1, now that we have the PREROLL lock, clear our unlock request */
3747     if (bclass->unlock_stop)
3748       bclass->unlock_stop (basesink);
3749
3750     /* set need_preroll before we unblock the clock. If the clock is unblocked
3751      * before timing out, we can reuse the buffer for preroll. */
3752     basesink->need_preroll = TRUE;
3753
3754     /* step 2, unblock clock sync (if any) or any other blocking thing */
3755     if (basesink->clock_id) {
3756       gst_clock_id_unschedule (basesink->clock_id);
3757     }
3758
3759     /* flush out the data thread if it's locked in finish_preroll, this will
3760      * also flush out the EOS state */
3761     GST_DEBUG_OBJECT (basesink,
3762         "flushing out data thread, need preroll to TRUE");
3763
3764     /* we can't have EOS anymore now */
3765     basesink->eos = FALSE;
3766     basesink->priv->received_eos = FALSE;
3767     basesink->have_preroll = FALSE;
3768     basesink->priv->step_unlock = FALSE;
3769     /* can't report latency anymore until we preroll again */
3770     if (basesink->priv->async_enabled) {
3771       GST_OBJECT_LOCK (basesink);
3772       basesink->priv->have_latency = FALSE;
3773       GST_OBJECT_UNLOCK (basesink);
3774     }
3775     /* and signal any waiters now */
3776     GST_BASE_SINK_PREROLL_SIGNAL (basesink);
3777   }
3778   GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3779
3780   return TRUE;
3781 }
3782
3783 static gboolean
3784 gst_base_sink_default_activate_pull (GstBaseSink * basesink, gboolean active)
3785 {
3786   gboolean result;
3787
3788   if (active) {
3789     /* start task */
3790     result = gst_pad_start_task (basesink->sinkpad,
3791         (GstTaskFunction) gst_base_sink_loop, basesink->sinkpad);
3792   } else {
3793     /* step 2, make sure streaming finishes */
3794     result = gst_pad_stop_task (basesink->sinkpad);
3795   }
3796
3797   return result;
3798 }
3799
3800 static gboolean
3801 gst_base_sink_pad_activate (GstPad * pad, GstObject * parent)
3802 {
3803   gboolean result = FALSE;
3804   GstBaseSink *basesink;
3805   GstQuery *query;
3806   gboolean pull_mode;
3807
3808   basesink = GST_BASE_SINK (parent);
3809
3810   GST_DEBUG_OBJECT (basesink, "Trying pull mode first");
3811
3812   gst_base_sink_set_flushing (basesink, pad, FALSE);
3813
3814   /* we need to have the pull mode enabled */
3815   if (!basesink->can_activate_pull) {
3816     GST_DEBUG_OBJECT (basesink, "pull mode disabled");
3817     goto fallback;
3818   }
3819
3820   /* check if downstreams supports pull mode at all */
3821   query = gst_query_new_scheduling ();
3822
3823   if (!gst_pad_peer_query (pad, query)) {
3824     gst_query_unref (query);
3825     GST_DEBUG_OBJECT (basesink, "peer query faild, no pull mode");
3826     goto fallback;
3827   }
3828
3829   /* parse result of the query */
3830   pull_mode = gst_query_has_scheduling_mode (query, GST_PAD_MODE_PULL);
3831   gst_query_unref (query);
3832
3833   if (!pull_mode) {
3834     GST_DEBUG_OBJECT (basesink, "pull mode not supported");
3835     goto fallback;
3836   }
3837
3838   /* set the pad mode before starting the task so that it's in the
3839    * correct state for the new thread. also the sink set_caps and get_caps
3840    * function checks this */
3841   basesink->pad_mode = GST_PAD_MODE_PULL;
3842
3843   /* we first try to negotiate a format so that when we try to activate
3844    * downstream, it knows about our format */
3845   if (!gst_base_sink_negotiate_pull (basesink)) {
3846     GST_DEBUG_OBJECT (basesink, "failed to negotiate in pull mode");
3847     goto fallback;
3848   }
3849
3850   /* ok activate now */
3851   if (!gst_pad_activate_mode (pad, GST_PAD_MODE_PULL, TRUE)) {
3852     /* clear any pending caps */
3853     GST_OBJECT_LOCK (basesink);
3854     gst_caps_replace (&basesink->priv->caps, NULL);
3855     GST_OBJECT_UNLOCK (basesink);
3856     GST_DEBUG_OBJECT (basesink, "failed to activate in pull mode");
3857     goto fallback;
3858   }
3859
3860   GST_DEBUG_OBJECT (basesink, "Success activating pull mode");
3861   result = TRUE;
3862   goto done;
3863
3864   /* push mode fallback */
3865 fallback:
3866   GST_DEBUG_OBJECT (basesink, "Falling back to push mode");
3867   if ((result = gst_pad_activate_mode (pad, GST_PAD_MODE_PUSH, TRUE))) {
3868     GST_DEBUG_OBJECT (basesink, "Success activating push mode");
3869   }
3870
3871 done:
3872   if (!result) {
3873     GST_WARNING_OBJECT (basesink, "Could not activate pad in either mode");
3874     gst_base_sink_set_flushing (basesink, pad, TRUE);
3875   }
3876
3877   return result;
3878 }
3879
3880 static gboolean
3881 gst_base_sink_pad_activate_push (GstPad * pad, GstObject * parent,
3882     gboolean active)
3883 {
3884   gboolean result;
3885   GstBaseSink *basesink;
3886
3887   basesink = GST_BASE_SINK (parent);
3888
3889   if (active) {
3890     if (!basesink->can_activate_push) {
3891       result = FALSE;
3892       basesink->pad_mode = GST_PAD_MODE_NONE;
3893     } else {
3894       result = TRUE;
3895       basesink->pad_mode = GST_PAD_MODE_PUSH;
3896     }
3897   } else {
3898     if (G_UNLIKELY (basesink->pad_mode != GST_PAD_MODE_PUSH)) {
3899       g_warning ("Internal GStreamer activation error!!!");
3900       result = FALSE;
3901     } else {
3902       gst_base_sink_set_flushing (basesink, pad, TRUE);
3903       result = TRUE;
3904       basesink->pad_mode = GST_PAD_MODE_NONE;
3905     }
3906   }
3907
3908   return result;
3909 }
3910
3911 static gboolean
3912 gst_base_sink_negotiate_pull (GstBaseSink * basesink)
3913 {
3914   GstCaps *caps;
3915   gboolean result;
3916
3917   result = FALSE;
3918
3919   /* this returns the intersection between our caps and the peer caps. If there
3920    * is no peer, it returns NULL and we can't operate in pull mode so we can
3921    * fail the negotiation. */
3922   caps = gst_pad_get_allowed_caps (GST_BASE_SINK_PAD (basesink));
3923   if (caps == NULL || gst_caps_is_empty (caps))
3924     goto no_caps_possible;
3925
3926   GST_DEBUG_OBJECT (basesink, "allowed caps: %" GST_PTR_FORMAT, caps);
3927
3928   if (gst_caps_is_any (caps)) {
3929     GST_DEBUG_OBJECT (basesink, "caps were ANY after fixating, "
3930         "allowing pull()");
3931     /* neither side has template caps in this case, so they are prepared for
3932        pull() without setcaps() */
3933     result = TRUE;
3934   } else {
3935     caps = gst_caps_make_writable (caps);
3936     /* try to fixate */
3937     gst_base_sink_fixate (basesink, caps);
3938     GST_DEBUG_OBJECT (basesink, "fixated to: %" GST_PTR_FORMAT, caps);
3939
3940     if (gst_caps_is_fixed (caps)) {
3941       if (!gst_pad_send_event (GST_BASE_SINK_PAD (basesink),
3942               gst_event_new_caps (caps)))
3943         goto could_not_set_caps;
3944
3945       result = TRUE;
3946     }
3947   }
3948
3949   gst_caps_unref (caps);
3950
3951   return result;
3952
3953 no_caps_possible:
3954   {
3955     GST_INFO_OBJECT (basesink, "Pipeline could not agree on caps");
3956     GST_DEBUG_OBJECT (basesink, "get_allowed_caps() returned EMPTY");
3957     if (caps)
3958       gst_caps_unref (caps);
3959     return FALSE;
3960   }
3961 could_not_set_caps:
3962   {
3963     GST_INFO_OBJECT (basesink, "Could not set caps: %" GST_PTR_FORMAT, caps);
3964     gst_caps_unref (caps);
3965     return FALSE;
3966   }
3967 }
3968
3969 /* this won't get called until we implement an activate function */
3970 static gboolean
3971 gst_base_sink_pad_activate_pull (GstPad * pad, GstObject * parent,
3972     gboolean active)
3973 {
3974   gboolean result = FALSE;
3975   GstBaseSink *basesink;
3976   GstBaseSinkClass *bclass;
3977
3978   basesink = GST_BASE_SINK (parent);
3979   bclass = GST_BASE_SINK_GET_CLASS (basesink);
3980
3981   if (active) {
3982     gint64 duration;
3983
3984     /* we mark we have a newsegment here because pull based
3985      * mode works just fine without having a newsegment before the
3986      * first buffer */
3987     gst_segment_init (&basesink->segment, GST_FORMAT_BYTES);
3988     GST_OBJECT_LOCK (basesink);
3989     basesink->have_newsegment = TRUE;
3990     GST_OBJECT_UNLOCK (basesink);
3991
3992     /* get the peer duration in bytes */
3993     result = gst_pad_peer_query_duration (pad, GST_FORMAT_BYTES, &duration);
3994     if (result) {
3995       GST_DEBUG_OBJECT (basesink,
3996           "setting duration in bytes to %" G_GINT64_FORMAT, duration);
3997       basesink->segment.duration = duration;
3998     } else {
3999       GST_DEBUG_OBJECT (basesink, "unknown duration");
4000     }
4001
4002     if (bclass->activate_pull)
4003       result = bclass->activate_pull (basesink, TRUE);
4004     else
4005       result = FALSE;
4006
4007     if (!result)
4008       goto activate_failed;
4009
4010   } else {
4011     if (G_UNLIKELY (basesink->pad_mode != GST_PAD_MODE_PULL)) {
4012       g_warning ("Internal GStreamer activation error!!!");
4013       result = FALSE;
4014     } else {
4015       result = gst_base_sink_set_flushing (basesink, pad, TRUE);
4016       if (bclass->activate_pull)
4017         result &= bclass->activate_pull (basesink, FALSE);
4018       basesink->pad_mode = GST_PAD_MODE_NONE;
4019     }
4020   }
4021
4022   return result;
4023
4024   /* ERRORS */
4025 activate_failed:
4026   {
4027     /* reset, as starting the thread failed */
4028     basesink->pad_mode = GST_PAD_MODE_NONE;
4029
4030     GST_ERROR_OBJECT (basesink, "subclass failed to activate in pull mode");
4031     return FALSE;
4032   }
4033 }
4034
4035 static gboolean
4036 gst_base_sink_pad_activate_mode (GstPad * pad, GstObject * parent,
4037     GstPadMode mode, gboolean active)
4038 {
4039   gboolean res;
4040
4041   switch (mode) {
4042     case GST_PAD_MODE_PULL:
4043       res = gst_base_sink_pad_activate_pull (pad, parent, active);
4044       break;
4045     case GST_PAD_MODE_PUSH:
4046       res = gst_base_sink_pad_activate_push (pad, parent, active);
4047       break;
4048     default:
4049       GST_LOG_OBJECT (pad, "unknown activation mode %d", mode);
4050       res = FALSE;
4051       break;
4052   }
4053   return res;
4054 }
4055
4056 /* send an event to our sinkpad peer. */
4057 static gboolean
4058 gst_base_sink_send_event (GstElement * element, GstEvent * event)
4059 {
4060   GstPad *pad;
4061   GstBaseSink *basesink = GST_BASE_SINK (element);
4062   gboolean forward, result = TRUE;
4063   GstPadMode mode;
4064
4065   GST_OBJECT_LOCK (element);
4066   /* get the pad and the scheduling mode */
4067   pad = gst_object_ref (basesink->sinkpad);
4068   mode = basesink->pad_mode;
4069   GST_OBJECT_UNLOCK (element);
4070
4071   /* only push UPSTREAM events upstream */
4072   forward = GST_EVENT_IS_UPSTREAM (event);
4073
4074   GST_DEBUG_OBJECT (basesink, "handling event %p %" GST_PTR_FORMAT, event,
4075       event);
4076
4077   switch (GST_EVENT_TYPE (event)) {
4078     case GST_EVENT_LATENCY:
4079     {
4080       GstClockTime latency;
4081
4082       gst_event_parse_latency (event, &latency);
4083
4084       /* store the latency. We use this to adjust the running_time before syncing
4085        * it to the clock. */
4086       GST_OBJECT_LOCK (element);
4087       basesink->priv->latency = latency;
4088       if (!basesink->priv->have_latency)
4089         forward = FALSE;
4090       GST_OBJECT_UNLOCK (element);
4091       GST_DEBUG_OBJECT (basesink, "latency set to %" GST_TIME_FORMAT,
4092           GST_TIME_ARGS (latency));
4093
4094       /* We forward this event so that all elements know about the global pipeline
4095        * latency. This is interesting for an element when it wants to figure out
4096        * when a particular piece of data will be rendered. */
4097       break;
4098     }
4099     case GST_EVENT_SEEK:
4100       /* in pull mode we will execute the seek */
4101       if (mode == GST_PAD_MODE_PULL)
4102         result = gst_base_sink_perform_seek (basesink, pad, event);
4103       break;
4104     case GST_EVENT_STEP:
4105       result = gst_base_sink_perform_step (basesink, pad, event);
4106       forward = FALSE;
4107       break;
4108     default:
4109       break;
4110   }
4111
4112   if (forward) {
4113     result = gst_pad_push_event (pad, event);
4114   } else {
4115     /* not forwarded, unref the event */
4116     gst_event_unref (event);
4117   }
4118
4119   gst_object_unref (pad);
4120
4121   GST_DEBUG_OBJECT (basesink, "handled event %p %" GST_PTR_FORMAT ": %d", event,
4122       event, result);
4123
4124   return result;
4125 }
4126
4127 static gboolean
4128 gst_base_sink_get_position (GstBaseSink * basesink, GstFormat format,
4129     gint64 * cur, gboolean * upstream)
4130 {
4131   GstClock *clock = NULL;
4132   gboolean res = FALSE;
4133   GstFormat oformat;
4134   GstSegment *segment;
4135   GstClockTime now, latency;
4136   GstClockTimeDiff base_time;
4137   gint64 time, base, duration;
4138   gdouble rate;
4139   gint64 last;
4140   gboolean last_seen, with_clock, in_paused;
4141
4142   GST_OBJECT_LOCK (basesink);
4143   /* we can only get the segment when we are not NULL or READY */
4144   if (!basesink->have_newsegment)
4145     goto wrong_state;
4146
4147   in_paused = FALSE;
4148   /* when not in PLAYING or when we're busy with a state change, we
4149    * cannot read from the clock so we report time based on the
4150    * last seen timestamp. */
4151   if (GST_STATE (basesink) != GST_STATE_PLAYING ||
4152       GST_STATE_PENDING (basesink) != GST_STATE_VOID_PENDING) {
4153     in_paused = TRUE;
4154   }
4155
4156   segment = &basesink->segment;
4157
4158   /* get the format in the segment */
4159   oformat = segment->format;
4160
4161   /* report with last seen position when EOS */
4162   last_seen = basesink->eos;
4163
4164   /* assume we will use the clock for getting the current position */
4165   with_clock = TRUE;
4166   if (basesink->sync == FALSE)
4167     with_clock = FALSE;
4168
4169   /* and we need a clock */
4170   if (G_UNLIKELY ((clock = GST_ELEMENT_CLOCK (basesink)) == NULL))
4171     with_clock = FALSE;
4172   else
4173     gst_object_ref (clock);
4174
4175   /* mainloop might be querying position when going to playing async,
4176    * while (audio) rendering might be quickly advancing stream position,
4177    * so use clock asap rather than last reported position */
4178   if (in_paused && with_clock && g_atomic_int_get (&basesink->priv->to_playing)) {
4179     GST_DEBUG_OBJECT (basesink, "going to PLAYING, so not PAUSED");
4180     in_paused = FALSE;
4181   }
4182
4183   /* collect all data we need holding the lock */
4184   if (GST_CLOCK_TIME_IS_VALID (segment->time))
4185     time = segment->time;
4186   else
4187     time = 0;
4188
4189   if (GST_CLOCK_TIME_IS_VALID (segment->stop))
4190     duration = segment->stop - segment->start;
4191   else
4192     duration = 0;
4193
4194   base = segment->base;
4195   rate = segment->rate * segment->applied_rate;
4196   latency = basesink->priv->latency;
4197
4198   if (oformat == GST_FORMAT_TIME) {
4199     gint64 start, stop;
4200
4201     start = basesink->priv->current_sstart;
4202     stop = basesink->priv->current_sstop;
4203
4204     if (in_paused) {
4205       /* in paused we use the last position as a lower bound */
4206       if (stop == -1 || segment->rate > 0.0)
4207         last = start;
4208       else
4209         last = stop;
4210     } else {
4211       /* in playing, use last stop time as upper bound */
4212       if (start == -1 || segment->rate > 0.0)
4213         last = stop;
4214       else
4215         last = start;
4216     }
4217   } else {
4218     /* convert last stop to stream time */
4219     last = gst_segment_to_stream_time (segment, oformat, segment->position);
4220   }
4221
4222   if (in_paused) {
4223     /* in paused, use start_time */
4224     base_time = GST_ELEMENT_START_TIME (basesink);
4225     GST_DEBUG_OBJECT (basesink, "in paused, using start time %" GST_TIME_FORMAT,
4226         GST_TIME_ARGS (base_time));
4227   } else if (with_clock) {
4228     /* else use clock when needed */
4229     base_time = GST_ELEMENT_CAST (basesink)->base_time;
4230     GST_DEBUG_OBJECT (basesink, "using clock and base time %" GST_TIME_FORMAT,
4231         GST_TIME_ARGS (base_time));
4232   } else {
4233     /* else, no sync or clock -> no base time */
4234     GST_DEBUG_OBJECT (basesink, "no sync or no clock");
4235     base_time = -1;
4236   }
4237
4238   /* no base_time, we can't calculate running_time, use last seem timestamp to report
4239    * time */
4240   if (base_time == -1)
4241     last_seen = TRUE;
4242
4243   /* need to release the object lock before we can get the time,
4244    * a clock might take the LOCK of the provider, which could be
4245    * a basesink subclass. */
4246   GST_OBJECT_UNLOCK (basesink);
4247
4248   if (last_seen) {
4249     /* in EOS or when no valid stream_time, report the value of last seen
4250      * timestamp */
4251     if (last == -1) {
4252       /* no timestamp, we need to ask upstream */
4253       GST_DEBUG_OBJECT (basesink, "no last seen timestamp, asking upstream");
4254       res = FALSE;
4255       *upstream = TRUE;
4256       goto done;
4257     }
4258     GST_DEBUG_OBJECT (basesink, "using last seen timestamp %" GST_TIME_FORMAT,
4259         GST_TIME_ARGS (last));
4260     *cur = last;
4261   } else {
4262     if (oformat != GST_FORMAT_TIME) {
4263       /* convert base, time and duration to time */
4264       if (!gst_pad_query_convert (basesink->sinkpad, oformat, base,
4265               GST_FORMAT_TIME, &base))
4266         goto convert_failed;
4267       if (!gst_pad_query_convert (basesink->sinkpad, oformat, duration,
4268               GST_FORMAT_TIME, &duration))
4269         goto convert_failed;
4270       if (!gst_pad_query_convert (basesink->sinkpad, oformat, time,
4271               GST_FORMAT_TIME, &time))
4272         goto convert_failed;
4273       if (!gst_pad_query_convert (basesink->sinkpad, oformat, last,
4274               GST_FORMAT_TIME, &last))
4275         goto convert_failed;
4276
4277       /* assume time format from now on */
4278       oformat = GST_FORMAT_TIME;
4279     }
4280
4281     if (!in_paused && with_clock) {
4282       now = gst_clock_get_time (clock);
4283     } else {
4284       now = base_time;
4285       base_time = 0;
4286     }
4287
4288     /* subtract base time and base time from the clock time.
4289      * Make sure we don't go negative. This is the current time in
4290      * the segment which we need to scale with the combined
4291      * rate and applied rate. */
4292     base_time += base;
4293     base_time += latency;
4294     if (GST_CLOCK_DIFF (base_time, now) < 0)
4295       base_time = now;
4296
4297     /* for negative rates we need to count back from the segment
4298      * duration. */
4299     if (rate < 0.0)
4300       time += duration;
4301
4302     *cur = time + gst_guint64_to_gdouble (now - base_time) * rate;
4303
4304     if (in_paused) {
4305       /* never report less than segment values in paused */
4306       if (last != -1)
4307         *cur = MAX (last, *cur);
4308     } else {
4309       /* never report more than last seen position in playing */
4310       if (last != -1)
4311         *cur = MIN (last, *cur);
4312     }
4313
4314     GST_DEBUG_OBJECT (basesink,
4315         "now %" GST_TIME_FORMAT " - base_time %" GST_TIME_FORMAT " - base %"
4316         GST_TIME_FORMAT " + time %" GST_TIME_FORMAT "  last %" GST_TIME_FORMAT,
4317         GST_TIME_ARGS (now), GST_TIME_ARGS (base_time), GST_TIME_ARGS (base),
4318         GST_TIME_ARGS (time), GST_TIME_ARGS (last));
4319   }
4320
4321   if (oformat != format) {
4322     /* convert to final format */
4323     if (!gst_pad_query_convert (basesink->sinkpad, oformat, *cur, format, cur))
4324       goto convert_failed;
4325   }
4326
4327   res = TRUE;
4328
4329 done:
4330   GST_DEBUG_OBJECT (basesink, "res: %d, POSITION: %" GST_TIME_FORMAT,
4331       res, GST_TIME_ARGS (*cur));
4332
4333   if (clock)
4334     gst_object_unref (clock);
4335
4336   return res;
4337
4338   /* special cases */
4339 wrong_state:
4340   {
4341     /* in NULL or READY we always return FALSE and -1 */
4342     GST_DEBUG_OBJECT (basesink, "position in wrong state, return -1");
4343     res = FALSE;
4344     *cur = -1;
4345     GST_OBJECT_UNLOCK (basesink);
4346     goto done;
4347   }
4348 convert_failed:
4349   {
4350     GST_DEBUG_OBJECT (basesink, "convert failed, try upstream");
4351     *upstream = TRUE;
4352     res = FALSE;
4353     goto done;
4354   }
4355 }
4356
4357 static gboolean
4358 gst_base_sink_get_duration (GstBaseSink * basesink, GstFormat format,
4359     gint64 * dur, gboolean * upstream)
4360 {
4361   gboolean res = FALSE;
4362
4363   if (basesink->pad_mode == GST_PAD_MODE_PULL) {
4364     gint64 uduration;
4365
4366     /* get the duration in bytes, in pull mode that's all we are sure to
4367      * know. We have to explicitly get this value from upstream instead of
4368      * using our cached value because it might change. Duration caching
4369      * should be done at a higher level. */
4370     res =
4371         gst_pad_peer_query_duration (basesink->sinkpad, GST_FORMAT_BYTES,
4372         &uduration);
4373     if (res) {
4374       basesink->segment.duration = uduration;
4375       if (format != GST_FORMAT_BYTES) {
4376         /* convert to the requested format */
4377         res =
4378             gst_pad_query_convert (basesink->sinkpad, GST_FORMAT_BYTES,
4379             uduration, format, dur);
4380       } else {
4381         *dur = uduration;
4382       }
4383     }
4384     *upstream = FALSE;
4385   } else {
4386     *upstream = TRUE;
4387   }
4388
4389   return res;
4390 }
4391
4392 static gboolean
4393 default_element_query (GstElement * element, GstQuery * query)
4394 {
4395   gboolean res = FALSE;
4396
4397   GstBaseSink *basesink = GST_BASE_SINK (element);
4398
4399   switch (GST_QUERY_TYPE (query)) {
4400     case GST_QUERY_POSITION:
4401     {
4402       gint64 cur = 0;
4403       GstFormat format;
4404       gboolean upstream = FALSE;
4405
4406       gst_query_parse_position (query, &format, NULL);
4407
4408       GST_DEBUG_OBJECT (basesink, "position query in format %s",
4409           gst_format_get_name (format));
4410
4411       /* first try to get the position based on the clock */
4412       if ((res =
4413               gst_base_sink_get_position (basesink, format, &cur, &upstream))) {
4414         gst_query_set_position (query, format, cur);
4415       } else if (upstream) {
4416         /* fallback to peer query */
4417         res = gst_pad_peer_query (basesink->sinkpad, query);
4418       }
4419       if (!res) {
4420         /* we can handle a few things if upstream failed */
4421         if (format == GST_FORMAT_PERCENT) {
4422           gint64 dur = 0;
4423
4424           res = gst_base_sink_get_position (basesink, GST_FORMAT_TIME, &cur,
4425               &upstream);
4426           if (!res && upstream) {
4427             res =
4428                 gst_pad_peer_query_position (basesink->sinkpad, GST_FORMAT_TIME,
4429                 &cur);
4430           }
4431           if (res) {
4432             res = gst_base_sink_get_duration (basesink, GST_FORMAT_TIME, &dur,
4433                 &upstream);
4434             if (!res && upstream) {
4435               res =
4436                   gst_pad_peer_query_duration (basesink->sinkpad,
4437                   GST_FORMAT_TIME, &dur);
4438             }
4439           }
4440           if (res) {
4441             gint64 pos;
4442
4443             pos = gst_util_uint64_scale (100 * GST_FORMAT_PERCENT_SCALE, cur,
4444                 dur);
4445             gst_query_set_position (query, GST_FORMAT_PERCENT, pos);
4446           }
4447         }
4448       }
4449       break;
4450     }
4451     case GST_QUERY_DURATION:
4452     {
4453       gint64 dur = 0;
4454       GstFormat format;
4455       gboolean upstream = FALSE;
4456
4457       gst_query_parse_duration (query, &format, NULL);
4458
4459       GST_DEBUG_OBJECT (basesink, "duration query in format %s",
4460           gst_format_get_name (format));
4461
4462       if ((res =
4463               gst_base_sink_get_duration (basesink, format, &dur, &upstream))) {
4464         gst_query_set_duration (query, format, dur);
4465       } else if (upstream) {
4466         /* fallback to peer query */
4467         res = gst_pad_peer_query (basesink->sinkpad, query);
4468       }
4469       if (!res) {
4470         /* we can handle a few things if upstream failed */
4471         if (format == GST_FORMAT_PERCENT) {
4472           gst_query_set_duration (query, GST_FORMAT_PERCENT,
4473               GST_FORMAT_PERCENT_MAX);
4474           res = TRUE;
4475         }
4476       }
4477       break;
4478     }
4479     case GST_QUERY_LATENCY:
4480     {
4481       gboolean live, us_live;
4482       GstClockTime min, max;
4483
4484       if ((res = gst_base_sink_query_latency (basesink, &live, &us_live, &min,
4485                   &max))) {
4486         gst_query_set_latency (query, live, min, max);
4487       }
4488       break;
4489     }
4490     case GST_QUERY_JITTER:
4491       break;
4492     case GST_QUERY_RATE:
4493       /* gst_query_set_rate (query, basesink->segment_rate); */
4494       res = TRUE;
4495       break;
4496     case GST_QUERY_SEGMENT:
4497     {
4498       if (basesink->pad_mode == GST_PAD_MODE_PULL) {
4499         gst_query_set_segment (query, basesink->segment.rate,
4500             GST_FORMAT_TIME, basesink->segment.start, basesink->segment.stop);
4501         res = TRUE;
4502       } else {
4503         res = gst_pad_peer_query (basesink->sinkpad, query);
4504       }
4505       break;
4506     }
4507     case GST_QUERY_SEEKING:
4508     case GST_QUERY_CONVERT:
4509     case GST_QUERY_FORMATS:
4510     default:
4511       res = gst_pad_peer_query (basesink->sinkpad, query);
4512       break;
4513   }
4514   GST_DEBUG_OBJECT (basesink, "query %s returns %d",
4515       GST_QUERY_TYPE_NAME (query), res);
4516   return res;
4517 }
4518
4519
4520 static gboolean
4521 gst_base_sink_default_query (GstBaseSink * basesink, GstQuery * query)
4522 {
4523   gboolean res;
4524   GstBaseSinkClass *bclass;
4525
4526   bclass = GST_BASE_SINK_GET_CLASS (basesink);
4527
4528   switch (GST_QUERY_TYPE (query)) {
4529     case GST_QUERY_ALLOCATION:
4530     {
4531       if (bclass->propose_allocation)
4532         res = bclass->propose_allocation (basesink, query);
4533       else
4534         res = FALSE;
4535       break;
4536     }
4537     case GST_QUERY_CAPS:
4538     {
4539       GstCaps *caps, *filter;
4540
4541       gst_query_parse_caps (query, &filter);
4542       caps = gst_base_sink_query_caps (basesink, basesink->sinkpad, filter);
4543       gst_query_set_caps_result (query, caps);
4544       gst_caps_unref (caps);
4545       res = TRUE;
4546       break;
4547     }
4548     default:
4549       res =
4550           gst_pad_query_default (basesink->sinkpad, GST_OBJECT_CAST (basesink),
4551           query);
4552       break;
4553   }
4554   return res;
4555 }
4556
4557 static gboolean
4558 gst_base_sink_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
4559 {
4560   GstBaseSink *basesink;
4561   GstBaseSinkClass *bclass;
4562   gboolean res;
4563
4564   basesink = GST_BASE_SINK_CAST (parent);
4565   bclass = GST_BASE_SINK_GET_CLASS (basesink);
4566
4567   if (bclass->query)
4568     res = bclass->query (basesink, query);
4569   else
4570     res = FALSE;
4571
4572   return res;
4573 }
4574
4575 static GstStateChangeReturn
4576 gst_base_sink_change_state (GstElement * element, GstStateChange transition)
4577 {
4578   GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
4579   GstBaseSink *basesink = GST_BASE_SINK (element);
4580   GstBaseSinkClass *bclass;
4581   GstBaseSinkPrivate *priv;
4582
4583   priv = basesink->priv;
4584
4585   bclass = GST_BASE_SINK_GET_CLASS (basesink);
4586
4587   switch (transition) {
4588     case GST_STATE_CHANGE_NULL_TO_READY:
4589       if (bclass->start)
4590         if (!bclass->start (basesink))
4591           goto start_failed;
4592       break;
4593     case GST_STATE_CHANGE_READY_TO_PAUSED:
4594       /* need to complete preroll before this state change completes, there
4595        * is no data flow in READY so we can safely assume we need to preroll. */
4596       GST_BASE_SINK_PREROLL_LOCK (basesink);
4597       GST_DEBUG_OBJECT (basesink, "READY to PAUSED");
4598       basesink->have_newsegment = FALSE;
4599       gst_segment_init (&basesink->segment, GST_FORMAT_UNDEFINED);
4600       basesink->offset = 0;
4601       basesink->have_preroll = FALSE;
4602       priv->step_unlock = FALSE;
4603       basesink->need_preroll = TRUE;
4604       basesink->playing_async = TRUE;
4605       basesink->priv->reset_time = FALSE;
4606       priv->current_sstart = GST_CLOCK_TIME_NONE;
4607       priv->current_sstop = GST_CLOCK_TIME_NONE;
4608       priv->eos_rtime = GST_CLOCK_TIME_NONE;
4609       priv->latency = 0;
4610       basesink->eos = FALSE;
4611       priv->received_eos = FALSE;
4612       gst_base_sink_reset_qos (basesink);
4613       priv->commited = FALSE;
4614       priv->call_preroll = TRUE;
4615       priv->current_step.valid = FALSE;
4616       priv->pending_step.valid = FALSE;
4617       if (priv->async_enabled) {
4618         GST_DEBUG_OBJECT (basesink, "doing async state change");
4619         /* when async enabled, post async-start message and return ASYNC from
4620          * the state change function */
4621         ret = GST_STATE_CHANGE_ASYNC;
4622         gst_element_post_message (GST_ELEMENT_CAST (basesink),
4623             gst_message_new_async_start (GST_OBJECT_CAST (basesink)));
4624       } else {
4625         priv->have_latency = TRUE;
4626       }
4627       GST_BASE_SINK_PREROLL_UNLOCK (basesink);
4628       break;
4629     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
4630       GST_BASE_SINK_PREROLL_LOCK (basesink);
4631       g_atomic_int_set (&basesink->priv->to_playing, TRUE);
4632       if (!gst_base_sink_needs_preroll (basesink)) {
4633         GST_DEBUG_OBJECT (basesink, "PAUSED to PLAYING, don't need preroll");
4634         /* no preroll needed anymore now. */
4635         basesink->playing_async = FALSE;
4636         basesink->need_preroll = FALSE;
4637         if (basesink->eos) {
4638           GstMessage *message;
4639
4640           /* need to post EOS message here */
4641           GST_DEBUG_OBJECT (basesink, "Now posting EOS");
4642           message = gst_message_new_eos (GST_OBJECT_CAST (basesink));
4643           gst_message_set_seqnum (message, basesink->priv->seqnum);
4644           gst_element_post_message (GST_ELEMENT_CAST (basesink), message);
4645         } else {
4646           GST_DEBUG_OBJECT (basesink, "signal preroll");
4647           GST_BASE_SINK_PREROLL_SIGNAL (basesink);
4648         }
4649       } else {
4650         GST_DEBUG_OBJECT (basesink, "PAUSED to PLAYING, we are not prerolled");
4651         basesink->need_preroll = TRUE;
4652         basesink->playing_async = TRUE;
4653         priv->call_preroll = TRUE;
4654         priv->commited = FALSE;
4655         if (priv->async_enabled) {
4656           GST_DEBUG_OBJECT (basesink, "doing async state change");
4657           ret = GST_STATE_CHANGE_ASYNC;
4658           gst_element_post_message (GST_ELEMENT_CAST (basesink),
4659               gst_message_new_async_start (GST_OBJECT_CAST (basesink)));
4660         }
4661       }
4662       GST_BASE_SINK_PREROLL_UNLOCK (basesink);
4663       break;
4664     default:
4665       break;
4666   }
4667
4668   {
4669     GstStateChangeReturn bret;
4670
4671     bret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
4672     if (G_UNLIKELY (bret == GST_STATE_CHANGE_FAILURE))
4673       goto activate_failed;
4674   }
4675
4676   switch (transition) {
4677     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
4678       /* completed transition, so need not be marked any longer
4679        * And it should be unmarked, since e.g. losing our position upon flush
4680        * does not really change state to PAUSED ... */
4681       g_atomic_int_set (&basesink->priv->to_playing, FALSE);
4682       break;
4683     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
4684       g_atomic_int_set (&basesink->priv->to_playing, FALSE);
4685       GST_DEBUG_OBJECT (basesink, "PLAYING to PAUSED");
4686       /* FIXME, make sure we cannot enter _render first */
4687
4688       /* we need to call ::unlock before locking PREROLL_LOCK
4689        * since we lock it before going into ::render */
4690       if (bclass->unlock)
4691         bclass->unlock (basesink);
4692
4693       GST_BASE_SINK_PREROLL_LOCK (basesink);
4694       GST_DEBUG_OBJECT (basesink, "got preroll lock");
4695       /* now that we have the PREROLL lock, clear our unlock request */
4696       if (bclass->unlock_stop)
4697         bclass->unlock_stop (basesink);
4698
4699       /* we need preroll again and we set the flag before unlocking the clockid
4700        * because if the clockid is unlocked before a current buffer expired, we
4701        * can use that buffer to preroll with */
4702       basesink->need_preroll = TRUE;
4703
4704       if (basesink->clock_id) {
4705         GST_DEBUG_OBJECT (basesink, "unschedule clock");
4706         gst_clock_id_unschedule (basesink->clock_id);
4707       }
4708
4709       /* if we don't have a preroll buffer we need to wait for a preroll and
4710        * return ASYNC. */
4711       if (!gst_base_sink_needs_preroll (basesink)) {
4712         GST_DEBUG_OBJECT (basesink, "PLAYING to PAUSED, we are prerolled");
4713         basesink->playing_async = FALSE;
4714       } else {
4715         if (GST_STATE_TARGET (GST_ELEMENT (basesink)) <= GST_STATE_READY) {
4716           GST_DEBUG_OBJECT (basesink, "element is <= READY");
4717           ret = GST_STATE_CHANGE_SUCCESS;
4718         } else {
4719           GST_DEBUG_OBJECT (basesink,
4720               "PLAYING to PAUSED, we are not prerolled");
4721           basesink->playing_async = TRUE;
4722           priv->commited = FALSE;
4723           priv->call_preroll = TRUE;
4724           if (priv->async_enabled) {
4725             GST_DEBUG_OBJECT (basesink, "doing async state change");
4726             ret = GST_STATE_CHANGE_ASYNC;
4727             gst_element_post_message (GST_ELEMENT_CAST (basesink),
4728                 gst_message_new_async_start (GST_OBJECT_CAST (basesink)));
4729           }
4730         }
4731       }
4732       GST_DEBUG_OBJECT (basesink, "rendered: %" G_GUINT64_FORMAT
4733           ", dropped: %" G_GUINT64_FORMAT, priv->rendered, priv->dropped);
4734
4735       gst_base_sink_reset_qos (basesink);
4736       GST_BASE_SINK_PREROLL_UNLOCK (basesink);
4737       break;
4738     case GST_STATE_CHANGE_PAUSED_TO_READY:
4739       GST_BASE_SINK_PREROLL_LOCK (basesink);
4740       /* start by resetting our position state with the object lock so that the
4741        * position query gets the right idea. We do this before we post the
4742        * messages so that the message handlers pick this up. */
4743       GST_OBJECT_LOCK (basesink);
4744       basesink->have_newsegment = FALSE;
4745       priv->current_sstart = GST_CLOCK_TIME_NONE;
4746       priv->current_sstop = GST_CLOCK_TIME_NONE;
4747       priv->have_latency = FALSE;
4748       if (priv->cached_clock_id) {
4749         gst_clock_id_unref (priv->cached_clock_id);
4750         priv->cached_clock_id = NULL;
4751       }
4752       gst_caps_replace (&basesink->priv->caps, NULL);
4753       GST_OBJECT_UNLOCK (basesink);
4754
4755       gst_base_sink_set_last_buffer (basesink, NULL);
4756       priv->call_preroll = FALSE;
4757
4758       if (!priv->commited) {
4759         if (priv->async_enabled) {
4760           GST_DEBUG_OBJECT (basesink, "PAUSED to READY, posting async-done");
4761
4762           gst_element_post_message (GST_ELEMENT_CAST (basesink),
4763               gst_message_new_state_changed (GST_OBJECT_CAST (basesink),
4764                   GST_STATE_PLAYING, GST_STATE_PAUSED, GST_STATE_READY));
4765
4766           gst_element_post_message (GST_ELEMENT_CAST (basesink),
4767               gst_message_new_async_done (GST_OBJECT_CAST (basesink), FALSE));
4768         }
4769         priv->commited = TRUE;
4770       } else {
4771         GST_DEBUG_OBJECT (basesink, "PAUSED to READY, don't need_preroll");
4772       }
4773       GST_BASE_SINK_PREROLL_UNLOCK (basesink);
4774       break;
4775     case GST_STATE_CHANGE_READY_TO_NULL:
4776       if (bclass->stop) {
4777         if (!bclass->stop (basesink)) {
4778           GST_WARNING_OBJECT (basesink, "failed to stop");
4779         }
4780       }
4781       gst_base_sink_set_last_buffer (basesink, NULL);
4782       priv->call_preroll = FALSE;
4783       break;
4784     default:
4785       break;
4786   }
4787
4788   return ret;
4789
4790   /* ERRORS */
4791 start_failed:
4792   {
4793     GST_DEBUG_OBJECT (basesink, "failed to start");
4794     return GST_STATE_CHANGE_FAILURE;
4795   }
4796 activate_failed:
4797   {
4798     GST_DEBUG_OBJECT (basesink,
4799         "element failed to change states -- activation problem?");
4800     return GST_STATE_CHANGE_FAILURE;
4801   }
4802 }