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