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