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