2 * Copyright (C) 2005-2007 Wim Taymans <wim.taymans@gmail.com>
4 * gstbasesink.c: Base class for sink elements
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.
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.
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.
24 * @short_description: Base class for sink elements
25 * @see_also: #GstBaseTransform, #GstBaseSrc
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.
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.
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:
42 * my_element_class_init (GstMyElementClass *klass)
44 * GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
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 (&sinktemplate));
50 * // see #GstElementDetails
51 * gst_element_class_set_details (gstelement_class, &details);
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.
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.
67 * After synchronisation the virtual method #GstBaseSinkClass.render() will be
68 * called. Subclasses should minimally implement this method.
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.
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.
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.
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
94 * The #GstBaseSinkClass.set_caps() function will be called when the subclass
95 * should configure itself to process a specific media type.
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.
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.
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.
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
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.
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
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.
138 * Last reviewed on 2007-08-29 (0.10.15)
145 #include <gst/gst_private.h>
147 #include "gstbasesink.h"
148 #include <gst/gstmarshal.h>
149 #include <gst/gst-i18n-lib.h>
151 GST_DEBUG_CATEGORY_STATIC (gst_base_sink_debug);
152 #define GST_CAT_DEFAULT gst_base_sink_debug
154 #define GST_BASE_SINK_GET_PRIVATE(obj) \
155 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_BASE_SINK, GstBaseSinkPrivate))
157 #define GST_FLOW_STEP GST_FLOW_CUSTOM_ERROR
161 gboolean valid; /* if this info is valid */
162 guint32 seqnum; /* the seqnum of the STEP event */
163 GstFormat format; /* the format of the amount */
164 guint64 amount; /* the total amount of data to skip */
165 guint64 position; /* the position in the stepped data */
166 guint64 duration; /* the duration in time of the skipped data */
167 guint64 start; /* running_time of the start */
168 gdouble rate; /* rate of skipping */
169 gdouble start_rate; /* rate before skipping */
170 guint64 start_start; /* start position skipping */
171 guint64 start_stop; /* stop position skipping */
172 gboolean flush; /* if this was a flushing step */
173 gboolean intermediate; /* if this is an intermediate step */
174 gboolean need_preroll; /* if we need preroll after this step */
177 /* FIXME, some stuff in ABI.data and other in Private...
178 * Make up your mind please.
180 struct _GstBaseSinkPrivate
182 gint qos_enabled; /* ATOMIC */
183 gboolean async_enabled;
184 GstClockTimeDiff ts_offset;
185 GstClockTime render_delay;
187 /* start, stop of current buffer, stream time, used to report position */
188 GstClockTime current_sstart;
189 GstClockTime current_sstop;
191 /* start, stop and jitter of current buffer, running time */
192 GstClockTime current_rstart;
193 GstClockTime current_rstop;
194 GstClockTimeDiff current_jitter;
195 /* the running time of the previous buffer */
196 GstClockTime prev_rstart;
198 /* EOS sync time in running time */
199 GstClockTime eos_rtime;
201 /* last buffer that arrived in time, running time */
202 GstClockTime last_render_time;
203 /* when the last buffer left the sink, running time */
204 GstClockTime last_left;
206 /* running averages go here these are done on running time */
208 GstClockTime avg_duration;
210 GstClockTime avg_in_diff;
212 /* these are done on system time. avg_jitter and avg_render are
213 * compared to eachother to see if the rendering time takes a
214 * huge amount of the processing, If so we are flooded with
216 GstClockTime last_left_systime;
217 GstClockTime avg_jitter;
218 GstClockTime start, stop;
219 GstClockTime avg_render;
221 /* number of rendered and dropped frames */
226 GstClockTime latency;
228 /* if we already commited the state */
231 /* when we received EOS */
232 gboolean received_eos;
234 /* when we are prerolled and able to report latency */
235 gboolean have_latency;
237 /* the last buffer we prerolled or rendered. Useful for making snapshots */
238 gint enable_last_buffer; /* atomic */
239 GstBuffer *last_buffer;
241 /* caps for pull based scheduling */
244 /* blocksize for pulling */
249 /* seqnum of the stream */
252 gboolean call_preroll;
253 gboolean step_unlock;
255 /* we have a pending and a current step operation */
256 GstStepInfo current_step;
257 GstStepInfo pending_step;
259 /* Cached GstClockID */
260 GstClockID cached_clock_id;
262 /* for throttling and QoS */
263 GstClockTime earliest_in_time;
264 GstClockTime throttle_time;
267 #define DO_RUNNING_AVG(avg,val,size) (((val) + ((size)-1) * (avg)) / (size))
269 /* generic running average, this has a neutral window size */
270 #define UPDATE_RUNNING_AVG(avg,val) DO_RUNNING_AVG(avg,val,8)
272 /* the windows for these running averages are experimentally obtained.
273 * possitive values get averaged more while negative values use a small
274 * window so we can react faster to badness. */
275 #define UPDATE_RUNNING_AVG_P(avg,val) DO_RUNNING_AVG(avg,val,16)
276 #define UPDATE_RUNNING_AVG_N(avg,val) DO_RUNNING_AVG(avg,val,4)
280 _PR_IS_NOTHING = 1 << 0,
281 _PR_IS_BUFFER = 1 << 1,
282 _PR_IS_BUFFERLIST = 1 << 2,
283 _PR_IS_EVENT = 1 << 3
286 #define OBJ_IS_BUFFER(a) ((a) & _PR_IS_BUFFER)
287 #define OBJ_IS_BUFFERLIST(a) ((a) & _PR_IS_BUFFERLIST)
288 #define OBJ_IS_EVENT(a) ((a) & _PR_IS_EVENT)
289 #define OBJ_IS_BUFFERFULL(a) ((a) & (_PR_IS_BUFFER | _PR_IS_BUFFERLIST))
291 /* BaseSink properties */
293 #define DEFAULT_CAN_ACTIVATE_PULL FALSE /* fixme: enable me */
294 #define DEFAULT_CAN_ACTIVATE_PUSH TRUE
296 #define DEFAULT_PREROLL_QUEUE_LEN 0
297 #define DEFAULT_SYNC TRUE
298 #define DEFAULT_MAX_LATENESS -1
299 #define DEFAULT_QOS FALSE
300 #define DEFAULT_ASYNC TRUE
301 #define DEFAULT_TS_OFFSET 0
302 #define DEFAULT_BLOCKSIZE 4096
303 #define DEFAULT_RENDER_DELAY 0
304 #define DEFAULT_ENABLE_LAST_BUFFER TRUE
305 #define DEFAULT_THROTTLE_TIME 0
310 PROP_PREROLL_QUEUE_LEN,
316 PROP_ENABLE_LAST_BUFFER,
324 static GstElementClass *parent_class = NULL;
326 static void gst_base_sink_class_init (GstBaseSinkClass * klass);
327 static void gst_base_sink_init (GstBaseSink * trans, gpointer g_class);
328 static void gst_base_sink_finalize (GObject * object);
331 gst_base_sink_get_type (void)
333 static volatile gsize base_sink_type = 0;
335 if (g_once_init_enter (&base_sink_type)) {
337 static const GTypeInfo base_sink_info = {
338 sizeof (GstBaseSinkClass),
341 (GClassInitFunc) gst_base_sink_class_init,
344 sizeof (GstBaseSink),
346 (GInstanceInitFunc) gst_base_sink_init,
349 _type = g_type_register_static (GST_TYPE_ELEMENT,
350 "GstBaseSink", &base_sink_info, G_TYPE_FLAG_ABSTRACT);
351 g_once_init_leave (&base_sink_type, _type);
353 return base_sink_type;
356 static void gst_base_sink_set_property (GObject * object, guint prop_id,
357 const GValue * value, GParamSpec * pspec);
358 static void gst_base_sink_get_property (GObject * object, guint prop_id,
359 GValue * value, GParamSpec * pspec);
361 static gboolean gst_base_sink_send_event (GstElement * element,
363 static gboolean gst_base_sink_query (GstElement * element, GstQuery * query);
364 static const GstQueryType *gst_base_sink_get_query_types (GstElement * element);
366 static GstCaps *gst_base_sink_get_caps (GstBaseSink * sink);
367 static gboolean gst_base_sink_set_caps (GstBaseSink * sink, GstCaps * caps);
368 static void gst_base_sink_get_times (GstBaseSink * basesink, GstBuffer * buffer,
369 GstClockTime * start, GstClockTime * end);
370 static gboolean gst_base_sink_set_flushing (GstBaseSink * basesink,
371 GstPad * pad, gboolean flushing);
372 static gboolean gst_base_sink_default_activate_pull (GstBaseSink * basesink,
374 static gboolean gst_base_sink_default_do_seek (GstBaseSink * sink,
375 GstSegment * segment);
376 static gboolean gst_base_sink_default_prepare_seek_segment (GstBaseSink * sink,
377 GstEvent * event, GstSegment * segment);
379 static GstStateChangeReturn gst_base_sink_change_state (GstElement * element,
380 GstStateChange transition);
382 static GstFlowReturn gst_base_sink_chain (GstPad * pad, GstBuffer * buffer);
383 static GstFlowReturn gst_base_sink_chain_list (GstPad * pad,
384 GstBufferList * list);
386 static void gst_base_sink_loop (GstPad * pad);
387 static gboolean gst_base_sink_pad_activate (GstPad * pad);
388 static gboolean gst_base_sink_pad_activate_push (GstPad * pad, gboolean active);
389 static gboolean gst_base_sink_pad_activate_pull (GstPad * pad, gboolean active);
390 static gboolean gst_base_sink_event (GstPad * pad, GstEvent * event);
392 static gboolean gst_base_sink_negotiate_pull (GstBaseSink * basesink);
393 static GstCaps *gst_base_sink_pad_getcaps (GstPad * pad);
394 static void gst_base_sink_pad_fixate (GstPad * pad, GstCaps * caps);
396 /* check if an object was too late */
397 static gboolean gst_base_sink_is_too_late (GstBaseSink * basesink,
398 GstMiniObject * obj, GstClockTime rstart, GstClockTime rstop,
399 GstClockReturn status, GstClockTimeDiff jitter);
400 static GstFlowReturn gst_base_sink_preroll_object (GstBaseSink * basesink,
401 guint8 obj_type, GstMiniObject * obj);
404 gst_base_sink_class_init (GstBaseSinkClass * klass)
406 GObjectClass *gobject_class;
407 GstElementClass *gstelement_class;
409 gobject_class = G_OBJECT_CLASS (klass);
410 gstelement_class = GST_ELEMENT_CLASS (klass);
412 GST_DEBUG_CATEGORY_INIT (gst_base_sink_debug, "basesink", 0,
415 g_type_class_add_private (klass, sizeof (GstBaseSinkPrivate));
417 parent_class = g_type_class_peek_parent (klass);
419 gobject_class->finalize = gst_base_sink_finalize;
420 gobject_class->set_property = gst_base_sink_set_property;
421 gobject_class->get_property = gst_base_sink_get_property;
423 /* FIXME, this next value should be configured using an event from the
424 * upstream element, ie, the BUFFER_SIZE event. */
425 g_object_class_install_property (gobject_class, PROP_PREROLL_QUEUE_LEN,
426 g_param_spec_uint ("preroll-queue-len", "Preroll queue length",
427 "Number of buffers to queue during preroll", 0, G_MAXUINT,
428 DEFAULT_PREROLL_QUEUE_LEN,
429 G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
431 g_object_class_install_property (gobject_class, PROP_SYNC,
432 g_param_spec_boolean ("sync", "Sync", "Sync on the clock", DEFAULT_SYNC,
433 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
435 g_object_class_install_property (gobject_class, PROP_MAX_LATENESS,
436 g_param_spec_int64 ("max-lateness", "Max Lateness",
437 "Maximum number of nanoseconds that a buffer can be late before it "
438 "is dropped (-1 unlimited)", -1, G_MAXINT64, DEFAULT_MAX_LATENESS,
439 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
441 g_object_class_install_property (gobject_class, PROP_QOS,
442 g_param_spec_boolean ("qos", "Qos",
443 "Generate Quality-of-Service events upstream", DEFAULT_QOS,
444 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
448 * If set to #TRUE, the basesink will perform asynchronous state changes.
449 * When set to #FALSE, the sink will not signal the parent when it prerolls.
450 * Use this option when dealing with sparse streams or when synchronisation is
455 g_object_class_install_property (gobject_class, PROP_ASYNC,
456 g_param_spec_boolean ("async", "Async",
457 "Go asynchronously to PAUSED", DEFAULT_ASYNC,
458 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
460 * GstBaseSink:ts-offset
462 * Controls the final synchronisation, a negative value will render the buffer
463 * earlier while a positive value delays playback. This property can be
464 * used to fix synchronisation in bad files.
468 g_object_class_install_property (gobject_class, PROP_TS_OFFSET,
469 g_param_spec_int64 ("ts-offset", "TS Offset",
470 "Timestamp offset in nanoseconds", G_MININT64, G_MAXINT64,
471 DEFAULT_TS_OFFSET, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
474 * GstBaseSink:enable-last-buffer
476 * Enable the last-buffer property. If FALSE, basesink doesn't keep a
477 * reference to the last buffer arrived and the last-buffer property is always
478 * set to NULL. This can be useful if you need buffers to be released as soon
479 * as possible, eg. if you're using a buffer pool.
483 g_object_class_install_property (gobject_class, PROP_ENABLE_LAST_BUFFER,
484 g_param_spec_boolean ("enable-last-buffer", "Enable Last Buffer",
485 "Enable the last-buffer property", DEFAULT_ENABLE_LAST_BUFFER,
486 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
489 * GstBaseSink:last-buffer
491 * The last buffer that arrived in the sink and was used for preroll or for
492 * rendering. This property can be used to generate thumbnails. This property
493 * can be NULL when the sink has not yet received a bufer.
497 g_object_class_install_property (gobject_class, PROP_LAST_BUFFER,
498 g_param_spec_boxed ("last-buffer", "Last Buffer",
499 "The last buffer received in the sink", GST_TYPE_BUFFER,
500 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
502 * GstBaseSink:blocksize
504 * The amount of bytes to pull when operating in pull mode.
508 /* FIXME 0.11: blocksize property should be int, otherwise min>max.. */
509 g_object_class_install_property (gobject_class, PROP_BLOCKSIZE,
510 g_param_spec_uint ("blocksize", "Block size",
511 "Size in bytes to pull per buffer (0 = default)", 0, G_MAXUINT,
512 DEFAULT_BLOCKSIZE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
514 * GstBaseSink:render-delay
516 * The additional delay between synchronisation and actual rendering of the
517 * media. This property will add additional latency to the device in order to
518 * make other sinks compensate for the delay.
522 g_object_class_install_property (gobject_class, PROP_RENDER_DELAY,
523 g_param_spec_uint64 ("render-delay", "Render Delay",
524 "Additional render delay of the sink in nanoseconds", 0, G_MAXUINT64,
525 DEFAULT_RENDER_DELAY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
527 * GstBaseSink:throttle-time
529 * The time to insert between buffers. This property can be used to control
530 * the maximum amount of buffers per second to render. Setting this property
531 * to a value bigger than 0 will make the sink create THROTTLE QoS events.
535 g_object_class_install_property (gobject_class, PROP_THROTTLE_TIME,
536 g_param_spec_uint64 ("throttle-time", "Throttle time",
537 "The time to keep between rendered buffers (unused)", 0, G_MAXUINT64,
538 DEFAULT_THROTTLE_TIME, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
540 gstelement_class->change_state =
541 GST_DEBUG_FUNCPTR (gst_base_sink_change_state);
542 gstelement_class->send_event = GST_DEBUG_FUNCPTR (gst_base_sink_send_event);
543 gstelement_class->query = GST_DEBUG_FUNCPTR (gst_base_sink_query);
544 gstelement_class->get_query_types =
545 GST_DEBUG_FUNCPTR (gst_base_sink_get_query_types);
547 klass->get_caps = GST_DEBUG_FUNCPTR (gst_base_sink_get_caps);
548 klass->set_caps = GST_DEBUG_FUNCPTR (gst_base_sink_set_caps);
549 klass->get_times = GST_DEBUG_FUNCPTR (gst_base_sink_get_times);
550 klass->activate_pull =
551 GST_DEBUG_FUNCPTR (gst_base_sink_default_activate_pull);
553 /* Registering debug symbols for function pointers */
554 GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_pad_getcaps);
555 GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_pad_fixate);
556 GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_pad_activate);
557 GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_pad_activate_push);
558 GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_pad_activate_pull);
559 GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_event);
560 GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_chain);
561 GST_DEBUG_REGISTER_FUNCPTR (gst_base_sink_chain_list);
565 gst_base_sink_pad_getcaps (GstPad * pad)
567 GstBaseSinkClass *bclass;
569 GstCaps *caps = NULL;
571 bsink = GST_BASE_SINK (gst_pad_get_parent (pad));
572 bclass = GST_BASE_SINK_GET_CLASS (bsink);
574 if (bsink->pad_mode == GST_ACTIVATE_PULL) {
575 /* if we are operating in pull mode we only accept the negotiated caps */
576 caps = gst_pad_get_current_caps (pad);
579 if (bclass->get_caps)
580 caps = bclass->get_caps (bsink);
583 GstPadTemplate *pad_template;
586 gst_element_class_get_pad_template (GST_ELEMENT_CLASS (bclass),
588 if (pad_template != NULL) {
589 caps = gst_caps_ref (gst_pad_template_get_caps (pad_template));
593 gst_object_unref (bsink);
599 gst_base_sink_pad_fixate (GstPad * pad, GstCaps * caps)
601 GstBaseSinkClass *bclass;
604 bsink = GST_BASE_SINK (gst_pad_get_parent (pad));
605 bclass = GST_BASE_SINK_GET_CLASS (bsink);
608 bclass->fixate (bsink, caps);
610 gst_object_unref (bsink);
614 gst_base_sink_init (GstBaseSink * basesink, gpointer g_class)
616 GstPadTemplate *pad_template;
617 GstBaseSinkPrivate *priv;
619 basesink->priv = priv = GST_BASE_SINK_GET_PRIVATE (basesink);
622 gst_element_class_get_pad_template (GST_ELEMENT_CLASS (g_class), "sink");
623 g_return_if_fail (pad_template != NULL);
625 basesink->sinkpad = gst_pad_new_from_template (pad_template, "sink");
627 gst_pad_set_getcaps_function (basesink->sinkpad, gst_base_sink_pad_getcaps);
628 gst_pad_set_fixatecaps_function (basesink->sinkpad, gst_base_sink_pad_fixate);
629 gst_pad_set_activate_function (basesink->sinkpad, gst_base_sink_pad_activate);
630 gst_pad_set_activatepush_function (basesink->sinkpad,
631 gst_base_sink_pad_activate_push);
632 gst_pad_set_activatepull_function (basesink->sinkpad,
633 gst_base_sink_pad_activate_pull);
634 gst_pad_set_event_function (basesink->sinkpad, gst_base_sink_event);
635 gst_pad_set_chain_function (basesink->sinkpad, gst_base_sink_chain);
636 gst_pad_set_chain_list_function (basesink->sinkpad, gst_base_sink_chain_list);
637 gst_element_add_pad (GST_ELEMENT_CAST (basesink), basesink->sinkpad);
639 basesink->pad_mode = GST_ACTIVATE_NONE;
640 basesink->preroll_lock = g_mutex_new ();
641 basesink->preroll_cond = g_cond_new ();
642 basesink->preroll_queue = g_queue_new ();
643 basesink->clip_segment = gst_segment_new ();
644 priv->have_latency = FALSE;
646 basesink->can_activate_push = DEFAULT_CAN_ACTIVATE_PUSH;
647 basesink->can_activate_pull = DEFAULT_CAN_ACTIVATE_PULL;
649 basesink->sync = DEFAULT_SYNC;
650 basesink->max_lateness = DEFAULT_MAX_LATENESS;
651 g_atomic_int_set (&priv->qos_enabled, DEFAULT_QOS);
652 priv->async_enabled = DEFAULT_ASYNC;
653 priv->ts_offset = DEFAULT_TS_OFFSET;
654 priv->render_delay = DEFAULT_RENDER_DELAY;
655 priv->blocksize = DEFAULT_BLOCKSIZE;
656 priv->cached_clock_id = NULL;
657 g_atomic_int_set (&priv->enable_last_buffer, DEFAULT_ENABLE_LAST_BUFFER);
658 priv->throttle_time = DEFAULT_THROTTLE_TIME;
660 GST_OBJECT_FLAG_SET (basesink, GST_ELEMENT_IS_SINK);
664 gst_base_sink_finalize (GObject * object)
666 GstBaseSink *basesink;
668 basesink = GST_BASE_SINK (object);
670 g_mutex_free (basesink->preroll_lock);
671 g_cond_free (basesink->preroll_cond);
672 g_queue_free (basesink->preroll_queue);
673 gst_segment_free (basesink->clip_segment);
675 G_OBJECT_CLASS (parent_class)->finalize (object);
679 * gst_base_sink_set_sync:
681 * @sync: the new sync value.
683 * Configures @sink to synchronize on the clock or not. When
684 * @sync is FALSE, incomming samples will be played as fast as
685 * possible. If @sync is TRUE, the timestamps of the incomming
686 * buffers will be used to schedule the exact render time of its
692 gst_base_sink_set_sync (GstBaseSink * sink, gboolean sync)
694 g_return_if_fail (GST_IS_BASE_SINK (sink));
696 GST_OBJECT_LOCK (sink);
698 GST_OBJECT_UNLOCK (sink);
702 * gst_base_sink_get_sync:
705 * Checks if @sink is currently configured to synchronize against the
708 * Returns: TRUE if the sink is configured to synchronize against the clock.
713 gst_base_sink_get_sync (GstBaseSink * sink)
717 g_return_val_if_fail (GST_IS_BASE_SINK (sink), FALSE);
719 GST_OBJECT_LOCK (sink);
721 GST_OBJECT_UNLOCK (sink);
727 * gst_base_sink_set_max_lateness:
729 * @max_lateness: the new max lateness value.
731 * Sets the new max lateness value to @max_lateness. This value is
732 * used to decide if a buffer should be dropped or not based on the
733 * buffer timestamp and the current clock time. A value of -1 means
739 gst_base_sink_set_max_lateness (GstBaseSink * sink, gint64 max_lateness)
741 g_return_if_fail (GST_IS_BASE_SINK (sink));
743 GST_OBJECT_LOCK (sink);
744 sink->max_lateness = max_lateness;
745 GST_OBJECT_UNLOCK (sink);
749 * gst_base_sink_get_max_lateness:
752 * Gets the max lateness value. See gst_base_sink_set_max_lateness for
755 * Returns: The maximum time in nanoseconds that a buffer can be late
756 * before it is dropped and not rendered. A value of -1 means an
762 gst_base_sink_get_max_lateness (GstBaseSink * sink)
766 g_return_val_if_fail (GST_IS_BASE_SINK (sink), -1);
768 GST_OBJECT_LOCK (sink);
769 res = sink->max_lateness;
770 GST_OBJECT_UNLOCK (sink);
776 * gst_base_sink_set_qos_enabled:
778 * @enabled: the new qos value.
780 * Configures @sink to send Quality-of-Service events upstream.
785 gst_base_sink_set_qos_enabled (GstBaseSink * sink, gboolean enabled)
787 g_return_if_fail (GST_IS_BASE_SINK (sink));
789 g_atomic_int_set (&sink->priv->qos_enabled, enabled);
793 * gst_base_sink_is_qos_enabled:
796 * Checks if @sink is currently configured to send Quality-of-Service events
799 * Returns: TRUE if the sink is configured to perform Quality-of-Service.
804 gst_base_sink_is_qos_enabled (GstBaseSink * sink)
808 g_return_val_if_fail (GST_IS_BASE_SINK (sink), FALSE);
810 res = g_atomic_int_get (&sink->priv->qos_enabled);
816 * gst_base_sink_set_async_enabled:
818 * @enabled: the new async value.
820 * Configures @sink to perform all state changes asynchronusly. When async is
821 * disabled, the sink will immediatly go to PAUSED instead of waiting for a
822 * preroll buffer. This feature is usefull if the sink does not synchronize
823 * against the clock or when it is dealing with sparse streams.
828 gst_base_sink_set_async_enabled (GstBaseSink * sink, gboolean enabled)
830 g_return_if_fail (GST_IS_BASE_SINK (sink));
832 GST_BASE_SINK_PREROLL_LOCK (sink);
833 g_atomic_int_set (&sink->priv->async_enabled, enabled);
834 GST_LOG_OBJECT (sink, "set async enabled to %d", enabled);
835 GST_BASE_SINK_PREROLL_UNLOCK (sink);
839 * gst_base_sink_is_async_enabled:
842 * Checks if @sink is currently configured to perform asynchronous state
845 * Returns: TRUE if the sink is configured to perform asynchronous state
851 gst_base_sink_is_async_enabled (GstBaseSink * sink)
855 g_return_val_if_fail (GST_IS_BASE_SINK (sink), FALSE);
857 res = g_atomic_int_get (&sink->priv->async_enabled);
863 * gst_base_sink_set_ts_offset:
865 * @offset: the new offset
867 * Adjust the synchronisation of @sink with @offset. A negative value will
868 * render buffers earlier than their timestamp. A positive value will delay
869 * rendering. This function can be used to fix playback of badly timestamped
875 gst_base_sink_set_ts_offset (GstBaseSink * sink, GstClockTimeDiff offset)
877 g_return_if_fail (GST_IS_BASE_SINK (sink));
879 GST_OBJECT_LOCK (sink);
880 sink->priv->ts_offset = offset;
881 GST_LOG_OBJECT (sink, "set time offset to %" G_GINT64_FORMAT, offset);
882 GST_OBJECT_UNLOCK (sink);
886 * gst_base_sink_get_ts_offset:
889 * Get the synchronisation offset of @sink.
891 * Returns: The synchronisation offset.
896 gst_base_sink_get_ts_offset (GstBaseSink * sink)
898 GstClockTimeDiff res;
900 g_return_val_if_fail (GST_IS_BASE_SINK (sink), 0);
902 GST_OBJECT_LOCK (sink);
903 res = sink->priv->ts_offset;
904 GST_OBJECT_UNLOCK (sink);
910 * gst_base_sink_get_last_buffer:
913 * Get the last buffer that arrived in the sink and was used for preroll or for
914 * rendering. This property can be used to generate thumbnails.
916 * The #GstCaps on the buffer can be used to determine the type of the buffer.
918 * Free-function: gst_buffer_unref
920 * Returns: (transfer full): a #GstBuffer. gst_buffer_unref() after usage.
921 * This function returns NULL when no buffer has arrived in the sink yet
922 * or when the sink is not in PAUSED or PLAYING.
927 gst_base_sink_get_last_buffer (GstBaseSink * sink)
931 g_return_val_if_fail (GST_IS_BASE_SINK (sink), NULL);
933 GST_OBJECT_LOCK (sink);
934 if ((res = sink->priv->last_buffer))
935 gst_buffer_ref (res);
936 GST_OBJECT_UNLOCK (sink);
941 /* with OBJECT_LOCK */
943 gst_base_sink_set_last_buffer_unlocked (GstBaseSink * sink, GstBuffer * buffer)
947 old = sink->priv->last_buffer;
948 if (G_LIKELY (old != buffer)) {
949 GST_DEBUG_OBJECT (sink, "setting last buffer to %p", buffer);
950 if (G_LIKELY (buffer))
951 gst_buffer_ref (buffer);
952 sink->priv->last_buffer = buffer;
956 /* avoid unreffing with the lock because cleanup code might want to take the
958 if (G_LIKELY (old)) {
959 GST_OBJECT_UNLOCK (sink);
960 gst_buffer_unref (old);
961 GST_OBJECT_LOCK (sink);
966 gst_base_sink_set_last_buffer (GstBaseSink * sink, GstBuffer * buffer)
968 if (!g_atomic_int_get (&sink->priv->enable_last_buffer))
971 GST_OBJECT_LOCK (sink);
972 gst_base_sink_set_last_buffer_unlocked (sink, buffer);
973 GST_OBJECT_UNLOCK (sink);
977 * gst_base_sink_set_last_buffer_enabled:
979 * @enabled: the new enable-last-buffer value.
981 * Configures @sink to store the last received buffer in the last-buffer
987 gst_base_sink_set_last_buffer_enabled (GstBaseSink * sink, gboolean enabled)
989 g_return_if_fail (GST_IS_BASE_SINK (sink));
991 /* Only take lock if we change the value */
992 if (g_atomic_int_compare_and_exchange (&sink->priv->enable_last_buffer,
993 !enabled, enabled) && !enabled) {
994 GST_OBJECT_LOCK (sink);
995 gst_base_sink_set_last_buffer_unlocked (sink, NULL);
996 GST_OBJECT_UNLOCK (sink);
1001 * gst_base_sink_is_last_buffer_enabled:
1004 * Checks if @sink is currently configured to store the last received buffer in
1005 * the last-buffer property.
1007 * Returns: TRUE if the sink is configured to store the last received buffer.
1012 gst_base_sink_is_last_buffer_enabled (GstBaseSink * sink)
1014 g_return_val_if_fail (GST_IS_BASE_SINK (sink), FALSE);
1016 return g_atomic_int_get (&sink->priv->enable_last_buffer);
1020 * gst_base_sink_get_latency:
1023 * Get the currently configured latency.
1025 * Returns: The configured latency.
1030 gst_base_sink_get_latency (GstBaseSink * sink)
1034 GST_OBJECT_LOCK (sink);
1035 res = sink->priv->latency;
1036 GST_OBJECT_UNLOCK (sink);
1042 * gst_base_sink_query_latency:
1044 * @live: (out) (allow-none): if the sink is live
1045 * @upstream_live: (out) (allow-none): if an upstream element is live
1046 * @min_latency: (out) (allow-none): the min latency of the upstream elements
1047 * @max_latency: (out) (allow-none): the max latency of the upstream elements
1049 * Query the sink for the latency parameters. The latency will be queried from
1050 * the upstream elements. @live will be TRUE if @sink is configured to
1051 * synchronize against the clock. @upstream_live will be TRUE if an upstream
1054 * If both @live and @upstream_live are TRUE, the sink will want to compensate
1055 * for the latency introduced by the upstream elements by setting the
1056 * @min_latency to a strictly possitive value.
1058 * This function is mostly used by subclasses.
1060 * Returns: TRUE if the query succeeded.
1065 gst_base_sink_query_latency (GstBaseSink * sink, gboolean * live,
1066 gboolean * upstream_live, GstClockTime * min_latency,
1067 GstClockTime * max_latency)
1069 gboolean l, us_live, res, have_latency;
1070 GstClockTime min, max, render_delay;
1072 GstClockTime us_min, us_max;
1074 /* we are live when we sync to the clock */
1075 GST_OBJECT_LOCK (sink);
1077 have_latency = sink->priv->have_latency;
1078 render_delay = sink->priv->render_delay;
1079 GST_OBJECT_UNLOCK (sink);
1081 /* assume no latency */
1087 GST_DEBUG_OBJECT (sink, "we are ready for LATENCY query");
1088 /* we are ready for a latency query this is when we preroll or when we are
1090 query = gst_query_new_latency ();
1092 /* ask the peer for the latency */
1093 if ((res = gst_pad_peer_query (sink->sinkpad, query))) {
1094 /* get upstream min and max latency */
1095 gst_query_parse_latency (query, &us_live, &us_min, &us_max);
1098 /* upstream live, use its latency, subclasses should use these
1099 * values to create the complete latency. */
1104 /* we need to add the render delay if we are live */
1106 min += render_delay;
1108 max += render_delay;
1111 gst_query_unref (query);
1113 GST_DEBUG_OBJECT (sink, "we are not yet ready for LATENCY query");
1117 /* not live, we tried to do the query, if it failed we return TRUE anyway */
1121 GST_DEBUG_OBJECT (sink, "latency query failed but we are not live");
1123 GST_DEBUG_OBJECT (sink, "latency query failed and we are live");
1128 GST_DEBUG_OBJECT (sink, "latency query: live: %d, have_latency %d,"
1129 " upstream: %d, min %" GST_TIME_FORMAT ", max %" GST_TIME_FORMAT, l,
1130 have_latency, us_live, GST_TIME_ARGS (min), GST_TIME_ARGS (max));
1135 *upstream_live = us_live;
1145 * gst_base_sink_set_render_delay:
1146 * @sink: a #GstBaseSink
1147 * @delay: the new delay
1149 * Set the render delay in @sink to @delay. The render delay is the time
1150 * between actual rendering of a buffer and its synchronisation time. Some
1151 * devices might delay media rendering which can be compensated for with this
1154 * After calling this function, this sink will report additional latency and
1155 * other sinks will adjust their latency to delay the rendering of their media.
1157 * This function is usually called by subclasses.
1162 gst_base_sink_set_render_delay (GstBaseSink * sink, GstClockTime delay)
1164 GstClockTime old_render_delay;
1166 g_return_if_fail (GST_IS_BASE_SINK (sink));
1168 GST_OBJECT_LOCK (sink);
1169 old_render_delay = sink->priv->render_delay;
1170 sink->priv->render_delay = delay;
1171 GST_LOG_OBJECT (sink, "set render delay to %" GST_TIME_FORMAT,
1172 GST_TIME_ARGS (delay));
1173 GST_OBJECT_UNLOCK (sink);
1175 if (delay != old_render_delay) {
1176 GST_DEBUG_OBJECT (sink, "posting latency changed");
1177 gst_element_post_message (GST_ELEMENT_CAST (sink),
1178 gst_message_new_latency (GST_OBJECT_CAST (sink)));
1183 * gst_base_sink_get_render_delay:
1184 * @sink: a #GstBaseSink
1186 * Get the render delay of @sink. see gst_base_sink_set_render_delay() for more
1187 * information about the render delay.
1189 * Returns: the render delay of @sink.
1194 gst_base_sink_get_render_delay (GstBaseSink * sink)
1196 GstClockTimeDiff res;
1198 g_return_val_if_fail (GST_IS_BASE_SINK (sink), 0);
1200 GST_OBJECT_LOCK (sink);
1201 res = sink->priv->render_delay;
1202 GST_OBJECT_UNLOCK (sink);
1208 * gst_base_sink_set_blocksize:
1209 * @sink: a #GstBaseSink
1210 * @blocksize: the blocksize in bytes
1212 * Set the number of bytes that the sink will pull when it is operating in pull
1217 /* FIXME 0.11: blocksize property should be int, otherwise min>max.. */
1219 gst_base_sink_set_blocksize (GstBaseSink * sink, guint blocksize)
1221 g_return_if_fail (GST_IS_BASE_SINK (sink));
1223 GST_OBJECT_LOCK (sink);
1224 sink->priv->blocksize = blocksize;
1225 GST_LOG_OBJECT (sink, "set blocksize to %u", blocksize);
1226 GST_OBJECT_UNLOCK (sink);
1230 * gst_base_sink_get_blocksize:
1231 * @sink: a #GstBaseSink
1233 * Get the number of bytes that the sink will pull when it is operating in pull
1236 * Returns: the number of bytes @sink will pull in pull mode.
1240 /* FIXME 0.11: blocksize property should be int, otherwise min>max.. */
1242 gst_base_sink_get_blocksize (GstBaseSink * sink)
1246 g_return_val_if_fail (GST_IS_BASE_SINK (sink), 0);
1248 GST_OBJECT_LOCK (sink);
1249 res = sink->priv->blocksize;
1250 GST_OBJECT_UNLOCK (sink);
1256 * gst_base_sink_set_throttle_time:
1257 * @sink: a #GstBaseSink
1258 * @throttle: the throttle time in nanoseconds
1260 * Set the time that will be inserted between rendered buffers. This
1261 * can be used to control the maximum buffers per second that the sink
1267 gst_base_sink_set_throttle_time (GstBaseSink * sink, guint64 throttle)
1269 g_return_if_fail (GST_IS_BASE_SINK (sink));
1271 GST_OBJECT_LOCK (sink);
1272 sink->priv->throttle_time = throttle;
1273 GST_LOG_OBJECT (sink, "set throttle_time to %" G_GUINT64_FORMAT, throttle);
1274 GST_OBJECT_UNLOCK (sink);
1278 * gst_base_sink_get_throttle_time:
1279 * @sink: a #GstBaseSink
1281 * Get the time that will be inserted between frames to control the
1282 * maximum buffers per second.
1284 * Returns: the number of nanoseconds @sink will put between frames.
1289 gst_base_sink_get_throttle_time (GstBaseSink * sink)
1293 g_return_val_if_fail (GST_IS_BASE_SINK (sink), 0);
1295 GST_OBJECT_LOCK (sink);
1296 res = sink->priv->throttle_time;
1297 GST_OBJECT_UNLOCK (sink);
1303 gst_base_sink_set_property (GObject * object, guint prop_id,
1304 const GValue * value, GParamSpec * pspec)
1306 GstBaseSink *sink = GST_BASE_SINK (object);
1309 case PROP_PREROLL_QUEUE_LEN:
1310 /* preroll lock necessary to serialize with finish_preroll */
1311 GST_BASE_SINK_PREROLL_LOCK (sink);
1312 g_atomic_int_set (&sink->preroll_queue_max_len, g_value_get_uint (value));
1313 GST_BASE_SINK_PREROLL_UNLOCK (sink);
1316 gst_base_sink_set_sync (sink, g_value_get_boolean (value));
1318 case PROP_MAX_LATENESS:
1319 gst_base_sink_set_max_lateness (sink, g_value_get_int64 (value));
1322 gst_base_sink_set_qos_enabled (sink, g_value_get_boolean (value));
1325 gst_base_sink_set_async_enabled (sink, g_value_get_boolean (value));
1327 case PROP_TS_OFFSET:
1328 gst_base_sink_set_ts_offset (sink, g_value_get_int64 (value));
1330 case PROP_BLOCKSIZE:
1331 gst_base_sink_set_blocksize (sink, g_value_get_uint (value));
1333 case PROP_RENDER_DELAY:
1334 gst_base_sink_set_render_delay (sink, g_value_get_uint64 (value));
1336 case PROP_ENABLE_LAST_BUFFER:
1337 gst_base_sink_set_last_buffer_enabled (sink, g_value_get_boolean (value));
1339 case PROP_THROTTLE_TIME:
1340 gst_base_sink_set_throttle_time (sink, g_value_get_uint64 (value));
1343 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1349 gst_base_sink_get_property (GObject * object, guint prop_id, GValue * value,
1352 GstBaseSink *sink = GST_BASE_SINK (object);
1355 case PROP_PREROLL_QUEUE_LEN:
1356 g_value_set_uint (value, g_atomic_int_get (&sink->preroll_queue_max_len));
1359 g_value_set_boolean (value, gst_base_sink_get_sync (sink));
1361 case PROP_MAX_LATENESS:
1362 g_value_set_int64 (value, gst_base_sink_get_max_lateness (sink));
1365 g_value_set_boolean (value, gst_base_sink_is_qos_enabled (sink));
1368 g_value_set_boolean (value, gst_base_sink_is_async_enabled (sink));
1370 case PROP_TS_OFFSET:
1371 g_value_set_int64 (value, gst_base_sink_get_ts_offset (sink));
1373 case PROP_LAST_BUFFER:
1374 gst_value_take_buffer (value, gst_base_sink_get_last_buffer (sink));
1376 case PROP_ENABLE_LAST_BUFFER:
1377 g_value_set_boolean (value, gst_base_sink_is_last_buffer_enabled (sink));
1379 case PROP_BLOCKSIZE:
1380 g_value_set_uint (value, gst_base_sink_get_blocksize (sink));
1382 case PROP_RENDER_DELAY:
1383 g_value_set_uint64 (value, gst_base_sink_get_render_delay (sink));
1385 case PROP_THROTTLE_TIME:
1386 g_value_set_uint64 (value, gst_base_sink_get_throttle_time (sink));
1389 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1396 gst_base_sink_get_caps (GstBaseSink * sink)
1402 gst_base_sink_set_caps (GstBaseSink * sink, GstCaps * caps)
1407 /* with PREROLL_LOCK, STREAM_LOCK */
1409 gst_base_sink_preroll_queue_flush (GstBaseSink * basesink, GstPad * pad)
1413 GST_DEBUG_OBJECT (basesink, "flushing queue %p", basesink);
1414 while ((obj = g_queue_pop_head (basesink->preroll_queue))) {
1415 GST_DEBUG_OBJECT (basesink, "popped %p", obj);
1416 gst_mini_object_unref (obj);
1418 /* we can't have EOS anymore now */
1419 basesink->eos = FALSE;
1420 basesink->priv->received_eos = FALSE;
1421 basesink->have_preroll = FALSE;
1422 basesink->priv->step_unlock = FALSE;
1423 basesink->eos_queued = FALSE;
1424 basesink->preroll_queued = 0;
1425 basesink->buffers_queued = 0;
1426 basesink->events_queued = 0;
1427 /* can't report latency anymore until we preroll again */
1428 if (basesink->priv->async_enabled) {
1429 GST_OBJECT_LOCK (basesink);
1430 basesink->priv->have_latency = FALSE;
1431 GST_OBJECT_UNLOCK (basesink);
1433 /* and signal any waiters now */
1434 GST_BASE_SINK_PREROLL_SIGNAL (basesink);
1437 /* with STREAM_LOCK, configures given segment with the event information. */
1439 gst_base_sink_configure_segment (GstBaseSink * basesink, GstPad * pad,
1440 GstEvent * event, GstSegment * segment)
1443 gdouble rate, arate;
1449 /* the newsegment event is needed to bring the buffer timestamps to the
1450 * stream time and to drop samples outside of the playback segment. */
1451 gst_event_parse_new_segment (event, &update, &rate, &arate, &format,
1452 &start, &stop, &time);
1454 /* The segment is protected with both the STREAM_LOCK and the OBJECT_LOCK.
1455 * We protect with the OBJECT_LOCK so that we can use the values to
1456 * safely answer a POSITION query. */
1457 GST_OBJECT_LOCK (basesink);
1458 gst_segment_set_newsegment (segment, update, rate, arate, format, start,
1461 if (format == GST_FORMAT_TIME) {
1462 GST_DEBUG_OBJECT (basesink,
1463 "configured NEWSEGMENT update %d, rate %lf, applied rate %lf, "
1464 "format GST_FORMAT_TIME, "
1465 "%" GST_TIME_FORMAT " -- %" GST_TIME_FORMAT
1466 ", time %" GST_TIME_FORMAT ", accum %" GST_TIME_FORMAT,
1467 update, rate, arate, GST_TIME_ARGS (segment->start),
1468 GST_TIME_ARGS (segment->stop), GST_TIME_ARGS (segment->time),
1469 GST_TIME_ARGS (segment->accum));
1471 GST_DEBUG_OBJECT (basesink,
1472 "configured NEWSEGMENT update %d, rate %lf, applied rate %lf, "
1474 "%" G_GINT64_FORMAT " -- %" G_GINT64_FORMAT ", time %"
1475 G_GINT64_FORMAT ", accum %" G_GINT64_FORMAT, update, rate, arate,
1476 segment->format, segment->start, segment->stop, segment->time,
1479 GST_OBJECT_UNLOCK (basesink);
1482 /* with PREROLL_LOCK, STREAM_LOCK */
1484 gst_base_sink_commit_state (GstBaseSink * basesink)
1486 /* commit state and proceed to next pending state */
1487 GstState current, next, pending, post_pending;
1488 gboolean post_paused = FALSE;
1489 gboolean post_async_done = FALSE;
1490 gboolean post_playing = FALSE;
1492 /* we are certainly not playing async anymore now */
1493 basesink->playing_async = FALSE;
1495 GST_OBJECT_LOCK (basesink);
1496 current = GST_STATE (basesink);
1497 next = GST_STATE_NEXT (basesink);
1498 pending = GST_STATE_PENDING (basesink);
1499 post_pending = pending;
1502 case GST_STATE_PLAYING:
1504 GstBaseSinkClass *bclass;
1506 bclass = GST_BASE_SINK_GET_CLASS (basesink);
1508 GST_DEBUG_OBJECT (basesink, "commiting state to PLAYING");
1510 basesink->need_preroll = FALSE;
1511 post_async_done = TRUE;
1512 basesink->priv->commited = TRUE;
1513 post_playing = TRUE;
1514 /* post PAUSED too when we were READY */
1515 if (current == GST_STATE_READY) {
1520 case GST_STATE_PAUSED:
1521 GST_DEBUG_OBJECT (basesink, "commiting state to PAUSED");
1523 post_async_done = TRUE;
1524 basesink->priv->commited = TRUE;
1525 post_pending = GST_STATE_VOID_PENDING;
1527 case GST_STATE_READY:
1528 case GST_STATE_NULL:
1530 case GST_STATE_VOID_PENDING:
1531 goto nothing_pending;
1536 /* we can report latency queries now */
1537 basesink->priv->have_latency = TRUE;
1539 GST_STATE (basesink) = pending;
1540 GST_STATE_NEXT (basesink) = GST_STATE_VOID_PENDING;
1541 GST_STATE_PENDING (basesink) = GST_STATE_VOID_PENDING;
1542 GST_STATE_RETURN (basesink) = GST_STATE_CHANGE_SUCCESS;
1543 GST_OBJECT_UNLOCK (basesink);
1546 GST_DEBUG_OBJECT (basesink, "posting PAUSED state change message");
1547 gst_element_post_message (GST_ELEMENT_CAST (basesink),
1548 gst_message_new_state_changed (GST_OBJECT_CAST (basesink),
1549 current, next, post_pending));
1551 if (post_async_done) {
1552 GST_DEBUG_OBJECT (basesink, "posting async-done message");
1553 gst_element_post_message (GST_ELEMENT_CAST (basesink),
1554 gst_message_new_async_done (GST_OBJECT_CAST (basesink)));
1557 GST_DEBUG_OBJECT (basesink, "posting PLAYING state change message");
1558 gst_element_post_message (GST_ELEMENT_CAST (basesink),
1559 gst_message_new_state_changed (GST_OBJECT_CAST (basesink),
1560 next, pending, GST_STATE_VOID_PENDING));
1563 GST_STATE_BROADCAST (basesink);
1569 /* Depending on the state, set our vars. We get in this situation when the
1570 * state change function got a change to update the state vars before the
1571 * streaming thread did. This is fine but we need to make sure that we
1572 * update the need_preroll var since it was TRUE when we got here and might
1573 * become FALSE if we got to PLAYING. */
1574 GST_DEBUG_OBJECT (basesink, "nothing to commit, now in %s",
1575 gst_element_state_get_name (current));
1577 case GST_STATE_PLAYING:
1578 basesink->need_preroll = FALSE;
1580 case GST_STATE_PAUSED:
1581 basesink->need_preroll = TRUE;
1584 basesink->need_preroll = FALSE;
1585 basesink->flushing = TRUE;
1588 /* we can report latency queries now */
1589 basesink->priv->have_latency = TRUE;
1590 GST_OBJECT_UNLOCK (basesink);
1595 /* app is going to READY */
1596 GST_DEBUG_OBJECT (basesink, "stopping");
1597 basesink->need_preroll = FALSE;
1598 basesink->flushing = TRUE;
1599 GST_OBJECT_UNLOCK (basesink);
1605 start_stepping (GstBaseSink * sink, GstSegment * segment,
1606 GstStepInfo * pending, GstStepInfo * current)
1609 GstMessage *message;
1611 GST_DEBUG_OBJECT (sink, "update pending step");
1613 GST_OBJECT_LOCK (sink);
1614 memcpy (current, pending, sizeof (GstStepInfo));
1615 pending->valid = FALSE;
1616 GST_OBJECT_UNLOCK (sink);
1618 /* post message first */
1620 gst_message_new_step_start (GST_OBJECT (sink), TRUE, current->format,
1621 current->amount, current->rate, current->flush, current->intermediate);
1622 gst_message_set_seqnum (message, current->seqnum);
1623 gst_element_post_message (GST_ELEMENT (sink), message);
1625 /* get the running time of where we paused and remember it */
1626 current->start = gst_element_get_start_time (GST_ELEMENT_CAST (sink));
1627 gst_segment_set_running_time (segment, GST_FORMAT_TIME, current->start);
1629 /* set the new rate for the remainder of the segment */
1630 current->start_rate = segment->rate;
1631 segment->rate *= current->rate;
1634 if (segment->rate > 0.0)
1635 current->start_stop = segment->stop;
1637 current->start_start = segment->start;
1639 if (current->format == GST_FORMAT_TIME) {
1640 end = current->start + current->amount;
1641 if (!current->flush) {
1642 /* update the segment clipping regions for non-flushing seeks */
1643 if (segment->rate > 0.0) {
1644 segment->stop = gst_segment_to_position (segment, GST_FORMAT_TIME, end);
1645 segment->last_stop = segment->stop;
1649 position = gst_segment_to_position (segment, GST_FORMAT_TIME, end);
1650 segment->time = position;
1651 segment->start = position;
1652 segment->last_stop = position;
1657 GST_DEBUG_OBJECT (sink,
1658 "segment now rate %lf, applied rate %lf, "
1659 "format GST_FORMAT_TIME, "
1660 "%" GST_TIME_FORMAT " -- %" GST_TIME_FORMAT
1661 ", time %" GST_TIME_FORMAT ", accum %" GST_TIME_FORMAT,
1662 segment->rate, segment->applied_rate, GST_TIME_ARGS (segment->start),
1663 GST_TIME_ARGS (segment->stop), GST_TIME_ARGS (segment->time),
1664 GST_TIME_ARGS (segment->accum));
1666 GST_DEBUG_OBJECT (sink, "step started at running_time %" GST_TIME_FORMAT,
1667 GST_TIME_ARGS (current->start));
1669 if (current->amount == -1) {
1670 GST_DEBUG_OBJECT (sink, "step amount == -1, stop stepping");
1671 current->valid = FALSE;
1673 GST_DEBUG_OBJECT (sink, "step amount: %" G_GUINT64_FORMAT ", format: %s, "
1674 "rate: %f", current->amount, gst_format_get_name (current->format),
1680 stop_stepping (GstBaseSink * sink, GstSegment * segment,
1681 GstStepInfo * current, gint64 rstart, gint64 rstop, gboolean eos)
1683 gint64 stop, position;
1684 GstMessage *message;
1686 GST_DEBUG_OBJECT (sink, "step complete");
1688 if (segment->rate > 0.0)
1693 GST_DEBUG_OBJECT (sink,
1694 "step stop at running_time %" GST_TIME_FORMAT, GST_TIME_ARGS (stop));
1697 current->duration = current->position;
1699 current->duration = stop - current->start;
1701 GST_DEBUG_OBJECT (sink, "step elapsed running_time %" GST_TIME_FORMAT,
1702 GST_TIME_ARGS (current->duration));
1704 position = current->start + current->duration;
1706 /* now move the segment to the new running time */
1707 gst_segment_set_running_time (segment, GST_FORMAT_TIME, position);
1709 if (current->flush) {
1710 /* and remove the accumulated time we flushed, start time did not change */
1711 segment->accum = current->start;
1713 /* start time is now the stepped position */
1714 gst_element_set_start_time (GST_ELEMENT_CAST (sink), position);
1717 /* restore the previous rate */
1718 segment->rate = current->start_rate;
1720 if (segment->rate > 0.0)
1721 segment->stop = current->start_stop;
1723 segment->start = current->start_start;
1725 /* the clip segment is used for position report in paused... */
1726 memcpy (sink->clip_segment, segment, sizeof (GstSegment));
1728 /* post the step done when we know the stepped duration in TIME */
1730 gst_message_new_step_done (GST_OBJECT_CAST (sink), current->format,
1731 current->amount, current->rate, current->flush, current->intermediate,
1732 current->duration, eos);
1733 gst_message_set_seqnum (message, current->seqnum);
1734 gst_element_post_message (GST_ELEMENT_CAST (sink), message);
1736 if (!current->intermediate)
1737 sink->need_preroll = current->need_preroll;
1739 /* and the current step info finished and becomes invalid */
1740 current->valid = FALSE;
1744 handle_stepping (GstBaseSink * sink, GstSegment * segment,
1745 GstStepInfo * current, gint64 * cstart, gint64 * cstop, gint64 * rstart,
1748 gboolean step_end = FALSE;
1750 /* see if we need to skip this buffer because of stepping */
1751 switch (current->format) {
1752 case GST_FORMAT_TIME:
1758 if (segment->rate > 0.0) {
1759 if (segment->stop == *cstop)
1760 *rstop = *rstart + current->amount;
1765 if (segment->start == *cstart)
1766 *rstart = *rstop + current->amount;
1772 end = current->start + current->amount;
1773 current->position = first - current->start;
1775 abs_rate = ABS (segment->rate);
1776 if (G_UNLIKELY (abs_rate != 1.0))
1777 current->position /= abs_rate;
1779 GST_DEBUG_OBJECT (sink,
1780 "buffer: %" GST_TIME_FORMAT "-%" GST_TIME_FORMAT,
1781 GST_TIME_ARGS (first), GST_TIME_ARGS (last));
1782 GST_DEBUG_OBJECT (sink,
1783 "got time step %" GST_TIME_FORMAT "-%" GST_TIME_FORMAT "/%"
1784 GST_TIME_FORMAT, GST_TIME_ARGS (current->position),
1785 GST_TIME_ARGS (last - current->start),
1786 GST_TIME_ARGS (current->amount));
1788 if ((current->flush && current->position >= current->amount)
1790 GST_DEBUG_OBJECT (sink, "step ended, we need clipping");
1792 if (segment->rate > 0.0) {
1794 *cstart = gst_segment_to_position (segment, GST_FORMAT_TIME, end);
1797 *cstop = gst_segment_to_position (segment, GST_FORMAT_TIME, end);
1800 GST_DEBUG_OBJECT (sink,
1801 "cstart %" GST_TIME_FORMAT ", rstart %" GST_TIME_FORMAT,
1802 GST_TIME_ARGS (*cstart), GST_TIME_ARGS (*rstart));
1803 GST_DEBUG_OBJECT (sink,
1804 "cstop %" GST_TIME_FORMAT ", rstop %" GST_TIME_FORMAT,
1805 GST_TIME_ARGS (*cstop), GST_TIME_ARGS (*rstop));
1808 case GST_FORMAT_BUFFERS:
1809 GST_DEBUG_OBJECT (sink,
1810 "got default step %" G_GUINT64_FORMAT "/%" G_GUINT64_FORMAT,
1811 current->position, current->amount);
1813 if (current->position < current->amount) {
1814 current->position++;
1819 case GST_FORMAT_DEFAULT:
1821 GST_DEBUG_OBJECT (sink,
1822 "got unknown step %" G_GUINT64_FORMAT "/%" G_GUINT64_FORMAT,
1823 current->position, current->amount);
1829 /* with STREAM_LOCK, PREROLL_LOCK
1831 * Returns TRUE if the object needs synchronisation and takes therefore
1832 * part in prerolling.
1834 * rsstart/rsstop contain the start/stop in stream time.
1835 * rrstart/rrstop contain the start/stop in running time.
1838 gst_base_sink_get_sync_times (GstBaseSink * basesink, GstMiniObject * obj,
1839 GstClockTime * rsstart, GstClockTime * rsstop,
1840 GstClockTime * rrstart, GstClockTime * rrstop, gboolean * do_sync,
1841 gboolean * stepped, GstSegment * segment, GstStepInfo * step,
1842 gboolean * step_end, guint8 obj_type)
1844 GstBaseSinkClass *bclass;
1846 GstClockTime start, stop; /* raw start/stop timestamps */
1847 gint64 cstart, cstop; /* clipped raw timestamps */
1848 gint64 rstart, rstop; /* clipped timestamps converted to running time */
1849 GstClockTime sstart, sstop; /* clipped timestamps converted to stream time */
1851 GstBaseSinkPrivate *priv;
1854 priv = basesink->priv;
1856 /* start with nothing */
1857 start = stop = GST_CLOCK_TIME_NONE;
1859 if (G_UNLIKELY (OBJ_IS_EVENT (obj_type))) {
1860 GstEvent *event = GST_EVENT_CAST (obj);
1862 switch (GST_EVENT_TYPE (event)) {
1863 /* EOS event needs syncing */
1866 if (basesink->segment.rate >= 0.0) {
1867 sstart = sstop = priv->current_sstop;
1868 if (!GST_CLOCK_TIME_IS_VALID (sstart)) {
1869 /* we have not seen a buffer yet, use the segment values */
1870 sstart = sstop = gst_segment_to_stream_time (&basesink->segment,
1871 basesink->segment.format, basesink->segment.stop);
1874 sstart = sstop = priv->current_sstart;
1875 if (!GST_CLOCK_TIME_IS_VALID (sstart)) {
1876 /* we have not seen a buffer yet, use the segment values */
1877 sstart = sstop = gst_segment_to_stream_time (&basesink->segment,
1878 basesink->segment.format, basesink->segment.start);
1882 rstart = rstop = priv->eos_rtime;
1883 *do_sync = rstart != -1;
1884 GST_DEBUG_OBJECT (basesink, "sync times for EOS %" GST_TIME_FORMAT,
1885 GST_TIME_ARGS (rstart));
1886 /* if we are stepping, we end now */
1887 *step_end = step->valid;
1892 /* other events do not need syncing */
1893 /* FIXME, maybe NEWSEGMENT might need synchronisation
1894 * since the POSITION query depends on accumulated times and
1895 * we cannot accumulate the current segment before the previous
1905 /* else do buffer sync code */
1906 buffer = GST_BUFFER_CAST (obj);
1908 bclass = GST_BASE_SINK_GET_CLASS (basesink);
1910 /* just get the times to see if we need syncing, if the start returns -1 we
1912 if (bclass->get_times)
1913 bclass->get_times (basesink, buffer, &start, &stop);
1915 if (!GST_CLOCK_TIME_IS_VALID (start)) {
1916 /* we don't need to sync but we still want to get the timestamps for
1917 * tracking the position */
1918 gst_base_sink_get_times (basesink, buffer, &start, &stop);
1924 GST_DEBUG_OBJECT (basesink, "got times start: %" GST_TIME_FORMAT
1925 ", stop: %" GST_TIME_FORMAT ", do_sync %d", GST_TIME_ARGS (start),
1926 GST_TIME_ARGS (stop), *do_sync);
1928 /* collect segment and format for code clarity */
1929 format = segment->format;
1931 /* no timestamp clipping if we did not get a TIME segment format */
1932 if (G_UNLIKELY (format != GST_FORMAT_TIME)) {
1935 /* do running and stream time in TIME format */
1936 format = GST_FORMAT_TIME;
1937 GST_LOG_OBJECT (basesink, "not time format, don't clip");
1941 /* clip, only when we know about time */
1942 if (G_UNLIKELY (!gst_segment_clip (segment, GST_FORMAT_TIME,
1943 (gint64) start, (gint64) stop, &cstart, &cstop))) {
1945 GST_DEBUG_OBJECT (basesink, "step out of segment");
1946 /* when we are stepping, pretend we're at the end of the segment */
1947 if (segment->rate > 0.0) {
1948 cstart = segment->stop;
1949 cstop = segment->stop;
1951 cstart = segment->start;
1952 cstop = segment->start;
1956 goto out_of_segment;
1959 if (G_UNLIKELY (start != cstart || stop != cstop)) {
1960 GST_DEBUG_OBJECT (basesink, "clipped to: start %" GST_TIME_FORMAT
1961 ", stop: %" GST_TIME_FORMAT, GST_TIME_ARGS (cstart),
1962 GST_TIME_ARGS (cstop));
1965 /* set last stop position */
1966 if (G_LIKELY (stop != GST_CLOCK_TIME_NONE && cstop != GST_CLOCK_TIME_NONE))
1967 gst_segment_set_last_stop (segment, GST_FORMAT_TIME, cstop);
1969 gst_segment_set_last_stop (segment, GST_FORMAT_TIME, cstart);
1972 rstart = gst_segment_to_running_time (segment, format, cstart);
1973 rstop = gst_segment_to_running_time (segment, format, cstop);
1975 if (G_UNLIKELY (step->valid)) {
1976 if (!(*step_end = handle_stepping (basesink, segment, step, &cstart, &cstop,
1977 &rstart, &rstop))) {
1978 /* step is still busy, we discard data when we are flushing */
1979 *stepped = step->flush;
1980 GST_DEBUG_OBJECT (basesink, "stepping busy");
1983 /* this can produce wrong values if we accumulated non-TIME segments. If this happens,
1984 * upstream is behaving very badly */
1985 sstart = gst_segment_to_stream_time (segment, format, cstart);
1986 sstop = gst_segment_to_stream_time (segment, format, cstop);
1989 /* eos_done label only called when doing EOS, we also stop stepping then */
1990 if (*step_end && step->flush) {
1991 GST_DEBUG_OBJECT (basesink, "flushing step ended");
1992 stop_stepping (basesink, segment, step, rstart, rstop, eos);
1994 /* re-determine running start times for adjusted segment
1995 * (which has a flushed amount of running/accumulated time removed) */
1996 if (!GST_IS_EVENT (obj)) {
1997 GST_DEBUG_OBJECT (basesink, "refresh sync times");
2008 /* buffers and EOS always need syncing and preroll */
2014 /* we usually clip in the chain function already but stepping could cause
2015 * the segment to be updated later. we return FALSE so that we don't try
2017 GST_LOG_OBJECT (basesink, "buffer skipped, not in segment");
2022 /* with STREAM_LOCK, PREROLL_LOCK, LOCK
2023 * adjust a timestamp with the latency and timestamp offset. This function does
2024 * not adjust for the render delay. */
2026 gst_base_sink_adjust_time (GstBaseSink * basesink, GstClockTime time)
2028 GstClockTimeDiff ts_offset;
2030 /* don't do anything funny with invalid timestamps */
2031 if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (time)))
2034 time += basesink->priv->latency;
2036 /* apply offset, be carefull for underflows */
2037 ts_offset = basesink->priv->ts_offset;
2038 if (ts_offset < 0) {
2039 ts_offset = -ts_offset;
2040 if (ts_offset < time)
2047 /* subtract the render delay again, which was included in the latency */
2048 if (time > basesink->priv->render_delay)
2049 time -= basesink->priv->render_delay;
2057 * gst_base_sink_wait_clock:
2059 * @time: the running_time to be reached
2060 * @jitter: (out) (allow-none): the jitter to be filled with time diff, or NULL
2062 * This function will block until @time is reached. It is usually called by
2063 * subclasses that use their own internal synchronisation.
2065 * If @time is not valid, no sycnhronisation is done and #GST_CLOCK_BADTIME is
2066 * returned. Likewise, if synchronisation is disabled in the element or there
2067 * is no clock, no synchronisation is done and #GST_CLOCK_BADTIME is returned.
2069 * This function should only be called with the PREROLL_LOCK held, like when
2070 * receiving an EOS event in the #GstBaseSinkClass.event() vmethod or when
2071 * receiving a buffer in
2072 * the #GstBaseSinkClass.render() vmethod.
2074 * The @time argument should be the running_time of when this method should
2075 * return and is not adjusted with any latency or offset configured in the
2080 * Returns: #GstClockReturn
2083 gst_base_sink_wait_clock (GstBaseSink * sink, GstClockTime time,
2084 GstClockTimeDiff * jitter)
2088 GstClockTime base_time;
2090 if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (time)))
2093 GST_OBJECT_LOCK (sink);
2094 if (G_UNLIKELY (!sink->sync))
2097 if (G_UNLIKELY ((clock = GST_ELEMENT_CLOCK (sink)) == NULL))
2100 base_time = GST_ELEMENT_CAST (sink)->base_time;
2101 GST_LOG_OBJECT (sink,
2102 "time %" GST_TIME_FORMAT ", base_time %" GST_TIME_FORMAT,
2103 GST_TIME_ARGS (time), GST_TIME_ARGS (base_time));
2105 /* add base_time to running_time to get the time against the clock */
2108 /* Re-use existing clockid if available */
2109 if (G_LIKELY (sink->priv->cached_clock_id != NULL)) {
2110 if (!gst_clock_single_shot_id_reinit (clock, sink->priv->cached_clock_id,
2112 gst_clock_id_unref (sink->priv->cached_clock_id);
2113 sink->priv->cached_clock_id = gst_clock_new_single_shot_id (clock, time);
2116 sink->priv->cached_clock_id = gst_clock_new_single_shot_id (clock, time);
2117 GST_OBJECT_UNLOCK (sink);
2119 /* A blocking wait is performed on the clock. We save the ClockID
2120 * so we can unlock the entry at any time. While we are blocking, we
2121 * release the PREROLL_LOCK so that other threads can interrupt the
2123 sink->clock_id = sink->priv->cached_clock_id;
2124 /* release the preroll lock while waiting */
2125 GST_BASE_SINK_PREROLL_UNLOCK (sink);
2127 ret = gst_clock_id_wait (sink->priv->cached_clock_id, jitter);
2129 GST_BASE_SINK_PREROLL_LOCK (sink);
2130 sink->clock_id = NULL;
2134 /* no syncing needed */
2137 GST_DEBUG_OBJECT (sink, "time not valid, no sync needed");
2138 return GST_CLOCK_BADTIME;
2142 GST_DEBUG_OBJECT (sink, "sync disabled");
2143 GST_OBJECT_UNLOCK (sink);
2144 return GST_CLOCK_BADTIME;
2148 GST_DEBUG_OBJECT (sink, "no clock, can't sync");
2149 GST_OBJECT_UNLOCK (sink);
2150 return GST_CLOCK_BADTIME;
2155 * gst_base_sink_wait_preroll:
2158 * If the #GstBaseSinkClass.render() method performs its own synchronisation
2159 * against the clock it must unblock when going from PLAYING to the PAUSED state
2160 * and call this method before continuing to render the remaining data.
2162 * This function will block until a state change to PLAYING happens (in which
2163 * case this function returns #GST_FLOW_OK) or the processing must be stopped due
2164 * to a state change to READY or a FLUSH event (in which case this function
2165 * returns #GST_FLOW_WRONG_STATE).
2167 * This function should only be called with the PREROLL_LOCK held, like in the
2170 * Returns: #GST_FLOW_OK if the preroll completed and processing can
2171 * continue. Any other return value should be returned from the render vmethod.
2176 gst_base_sink_wait_preroll (GstBaseSink * sink)
2178 sink->have_preroll = TRUE;
2179 GST_DEBUG_OBJECT (sink, "waiting in preroll for flush or PLAYING");
2180 /* block until the state changes, or we get a flush, or something */
2181 GST_BASE_SINK_PREROLL_WAIT (sink);
2182 sink->have_preroll = FALSE;
2183 if (G_UNLIKELY (sink->flushing))
2185 if (G_UNLIKELY (sink->priv->step_unlock))
2187 GST_DEBUG_OBJECT (sink, "continue after preroll");
2194 GST_DEBUG_OBJECT (sink, "preroll interrupted because of flush");
2195 return GST_FLOW_WRONG_STATE;
2199 sink->priv->step_unlock = FALSE;
2200 GST_DEBUG_OBJECT (sink, "preroll interrupted because of step");
2201 return GST_FLOW_STEP;
2205 static inline guint8
2206 get_object_type (GstMiniObject * obj)
2210 if (G_LIKELY (GST_IS_BUFFER (obj)))
2211 obj_type = _PR_IS_BUFFER;
2212 else if (GST_IS_EVENT (obj))
2213 obj_type = _PR_IS_EVENT;
2214 else if (GST_IS_BUFFER_LIST (obj))
2215 obj_type = _PR_IS_BUFFERLIST;
2217 obj_type = _PR_IS_NOTHING;
2223 * gst_base_sink_do_preroll:
2225 * @obj: (transfer none): the mini object that caused the preroll
2227 * If the @sink spawns its own thread for pulling buffers from upstream it
2228 * should call this method after it has pulled a buffer. If the element needed
2229 * to preroll, this function will perform the preroll and will then block
2230 * until the element state is changed.
2232 * This function should be called with the PREROLL_LOCK held.
2234 * Returns: #GST_FLOW_OK if the preroll completed and processing can
2235 * continue. Any other return value should be returned from the render vmethod.
2240 gst_base_sink_do_preroll (GstBaseSink * sink, GstMiniObject * obj)
2244 while (G_UNLIKELY (sink->need_preroll)) {
2246 GST_DEBUG_OBJECT (sink, "prerolling object %p", obj);
2248 obj_type = get_object_type (obj);
2250 ret = gst_base_sink_preroll_object (sink, obj_type, obj);
2251 if (ret != GST_FLOW_OK)
2252 goto preroll_failed;
2254 /* need to recheck here because the commit state could have
2255 * made us not need the preroll anymore */
2256 if (G_LIKELY (sink->need_preroll)) {
2257 /* block until the state changes, or we get a flush, or something */
2258 ret = gst_base_sink_wait_preroll (sink);
2259 if ((ret != GST_FLOW_OK) && (ret != GST_FLOW_STEP))
2260 goto preroll_failed;
2268 GST_DEBUG_OBJECT (sink, "preroll failed: %s", gst_flow_get_name (ret));
2274 * gst_base_sink_wait_eos:
2276 * @time: the running_time to be reached
2277 * @jitter: (out) (allow-none): the jitter to be filled with time diff, or NULL
2279 * This function will block until @time is reached. It is usually called by
2280 * subclasses that use their own internal synchronisation but want to let the
2281 * EOS be handled by the base class.
2283 * This function should only be called with the PREROLL_LOCK held, like when
2284 * receiving an EOS event in the ::event vmethod.
2286 * The @time argument should be the running_time of when the EOS should happen
2287 * and will be adjusted with any latency and offset configured in the sink.
2289 * Returns: #GstFlowReturn
2294 gst_base_sink_wait_eos (GstBaseSink * sink, GstClockTime time,
2295 GstClockTimeDiff * jitter)
2297 GstClockReturn status;
2303 GST_DEBUG_OBJECT (sink, "checking preroll");
2305 /* first wait for the playing state before we can continue */
2306 while (G_UNLIKELY (sink->need_preroll)) {
2307 ret = gst_base_sink_wait_preroll (sink);
2308 if ((ret != GST_FLOW_OK) && (ret != GST_FLOW_STEP))
2312 /* preroll done, we can sync since we are in PLAYING now. */
2313 GST_DEBUG_OBJECT (sink, "possibly waiting for clock to reach %"
2314 GST_TIME_FORMAT, GST_TIME_ARGS (time));
2316 /* compensate for latency and ts_offset. We don't adjust for render delay
2317 * because we don't interact with the device on EOS normally. */
2318 stime = gst_base_sink_adjust_time (sink, time);
2320 /* wait for the clock, this can be interrupted because we got shut down or
2322 status = gst_base_sink_wait_clock (sink, stime, jitter);
2324 GST_DEBUG_OBJECT (sink, "clock returned %d", status);
2326 /* invalid time, no clock or sync disabled, just continue then */
2327 if (status == GST_CLOCK_BADTIME)
2330 /* waiting could have been interrupted and we can be flushing now */
2331 if (G_UNLIKELY (sink->flushing))
2334 /* retry if we got unscheduled, which means we did not reach the timeout
2335 * yet. if some other error occures, we continue. */
2336 } while (status == GST_CLOCK_UNSCHEDULED);
2338 GST_DEBUG_OBJECT (sink, "end of stream");
2345 GST_DEBUG_OBJECT (sink, "we are flushing");
2346 return GST_FLOW_WRONG_STATE;
2350 /* with STREAM_LOCK, PREROLL_LOCK
2352 * Make sure we are in PLAYING and synchronize an object to the clock.
2354 * If we need preroll, we are not in PLAYING. We try to commit the state
2355 * if needed and then block if we still are not PLAYING.
2357 * We start waiting on the clock in PLAYING. If we got interrupted, we
2358 * immediatly try to re-preroll.
2360 * Some objects do not need synchronisation (most events) and so this function
2361 * immediatly returns GST_FLOW_OK.
2363 * for objects that arrive later than max-lateness to be synchronized to the
2364 * clock have the @late boolean set to TRUE.
2366 * This function keeps a running average of the jitter (the diff between the
2367 * clock time and the requested sync time). The jitter is negative for
2368 * objects that arrive in time and positive for late buffers.
2370 * does not take ownership of obj.
2372 static GstFlowReturn
2373 gst_base_sink_do_sync (GstBaseSink * basesink, GstPad * pad,
2374 GstMiniObject * obj, gboolean * late, gboolean * step_end, guint8 obj_type)
2376 GstClockTimeDiff jitter = 0;
2378 GstClockReturn status = GST_CLOCK_OK;
2379 GstClockTime rstart, rstop, sstart, sstop, stime;
2381 GstBaseSinkPrivate *priv;
2383 GstStepInfo *current, *pending;
2386 priv = basesink->priv;
2389 sstart = sstop = rstart = rstop = GST_CLOCK_TIME_NONE;
2393 priv->current_rstart = GST_CLOCK_TIME_NONE;
2395 /* get stepping info */
2396 current = &priv->current_step;
2397 pending = &priv->pending_step;
2399 /* get timing information for this object against the render segment */
2400 syncable = gst_base_sink_get_sync_times (basesink, obj,
2401 &sstart, &sstop, &rstart, &rstop, &do_sync, &stepped, &basesink->segment,
2402 current, step_end, obj_type);
2404 if (G_UNLIKELY (stepped))
2407 /* a syncable object needs to participate in preroll and
2408 * clocking. All buffers and EOS are syncable. */
2409 if (G_UNLIKELY (!syncable))
2412 /* store timing info for current object */
2413 priv->current_rstart = rstart;
2414 priv->current_rstop = (GST_CLOCK_TIME_IS_VALID (rstop) ? rstop : rstart);
2416 /* save sync time for eos when the previous object needed sync */
2417 priv->eos_rtime = (do_sync ? priv->current_rstop : GST_CLOCK_TIME_NONE);
2419 /* calculate inter frame spacing */
2420 if (G_UNLIKELY (priv->prev_rstart != -1 && priv->prev_rstart < rstart)) {
2421 GstClockTime in_diff;
2423 in_diff = rstart - priv->prev_rstart;
2425 if (priv->avg_in_diff == -1)
2426 priv->avg_in_diff = in_diff;
2428 priv->avg_in_diff = UPDATE_RUNNING_AVG (priv->avg_in_diff, in_diff);
2430 GST_LOG_OBJECT (basesink, "avg frame diff %" GST_TIME_FORMAT,
2431 GST_TIME_ARGS (priv->avg_in_diff));
2434 priv->prev_rstart = rstart;
2436 if (G_UNLIKELY (priv->earliest_in_time != -1
2437 && rstart < priv->earliest_in_time))
2441 /* first do preroll, this makes sure we commit our state
2442 * to PAUSED and can continue to PLAYING. We cannot perform
2443 * any clock sync in PAUSED because there is no clock. */
2444 ret = gst_base_sink_do_preroll (basesink, obj);
2445 if (G_UNLIKELY (ret != GST_FLOW_OK))
2446 goto preroll_failed;
2448 /* update the segment with a pending step if the current one is invalid and we
2449 * have a new pending one. We only accept new step updates after a preroll */
2450 if (G_UNLIKELY (pending->valid && !current->valid)) {
2451 start_stepping (basesink, &basesink->segment, pending, current);
2455 /* After rendering we store the position of the last buffer so that we can use
2456 * it to report the position. We need to take the lock here. */
2457 GST_OBJECT_LOCK (basesink);
2458 priv->current_sstart = sstart;
2459 priv->current_sstop = (GST_CLOCK_TIME_IS_VALID (sstop) ? sstop : sstart);
2460 GST_OBJECT_UNLOCK (basesink);
2465 /* adjust for latency */
2466 stime = gst_base_sink_adjust_time (basesink, rstart);
2468 /* adjust for render-delay, avoid underflows */
2469 if (GST_CLOCK_TIME_IS_VALID (stime)) {
2470 if (stime > priv->render_delay)
2471 stime -= priv->render_delay;
2476 /* preroll done, we can sync since we are in PLAYING now. */
2477 GST_DEBUG_OBJECT (basesink, "possibly waiting for clock to reach %"
2478 GST_TIME_FORMAT ", adjusted %" GST_TIME_FORMAT,
2479 GST_TIME_ARGS (rstart), GST_TIME_ARGS (stime));
2481 /* This function will return immediatly if start == -1, no clock
2482 * or sync is disabled with GST_CLOCK_BADTIME. */
2483 status = gst_base_sink_wait_clock (basesink, stime, &jitter);
2485 GST_DEBUG_OBJECT (basesink, "clock returned %d, jitter %c%" GST_TIME_FORMAT,
2486 status, (jitter < 0 ? '-' : ' '), GST_TIME_ARGS (ABS (jitter)));
2488 /* invalid time, no clock or sync disabled, just render */
2489 if (status == GST_CLOCK_BADTIME)
2492 /* waiting could have been interrupted and we can be flushing now */
2493 if (G_UNLIKELY (basesink->flushing))
2496 /* check for unlocked by a state change, we are not flushing so
2497 * we can try to preroll on the current buffer. */
2498 if (G_UNLIKELY (status == GST_CLOCK_UNSCHEDULED)) {
2499 GST_DEBUG_OBJECT (basesink, "unscheduled, waiting some more");
2500 priv->call_preroll = TRUE;
2504 /* successful syncing done, record observation */
2505 priv->current_jitter = jitter;
2507 /* check if the object should be dropped */
2508 *late = gst_base_sink_is_too_late (basesink, obj, rstart, rstop,
2517 GST_DEBUG_OBJECT (basesink, "skipped stepped object %p", obj);
2523 GST_DEBUG_OBJECT (basesink, "non syncable object %p", obj);
2528 GST_DEBUG_OBJECT (basesink, "dropped because of QoS %p", obj);
2534 GST_DEBUG_OBJECT (basesink, "we are flushing");
2535 return GST_FLOW_WRONG_STATE;
2539 GST_DEBUG_OBJECT (basesink, "preroll failed");
2546 gst_base_sink_send_qos (GstBaseSink * basesink, GstQOSType type,
2547 gdouble proportion, GstClockTime time, GstClockTimeDiff diff)
2552 /* generate Quality-of-Service event */
2553 GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, basesink,
2554 "qos: type %d, proportion: %lf, diff %" G_GINT64_FORMAT ", timestamp %"
2555 GST_TIME_FORMAT, type, proportion, diff, GST_TIME_ARGS (time));
2557 event = gst_event_new_qos_full (type, proportion, diff, time);
2560 res = gst_pad_push_event (basesink->sinkpad, event);
2566 gst_base_sink_perform_qos (GstBaseSink * sink, gboolean dropped)
2568 GstBaseSinkPrivate *priv;
2569 GstClockTime start, stop;
2570 GstClockTimeDiff jitter;
2571 GstClockTime pt, entered, left;
2572 GstClockTime duration;
2577 start = priv->current_rstart;
2579 if (priv->current_step.valid)
2582 /* if Quality-of-Service disabled, do nothing */
2583 if (!g_atomic_int_get (&priv->qos_enabled) ||
2584 !GST_CLOCK_TIME_IS_VALID (start))
2587 stop = priv->current_rstop;
2588 jitter = priv->current_jitter;
2591 /* this is the time the buffer entered the sink */
2592 if (start < -jitter)
2595 entered = start + jitter;
2598 /* this is the time the buffer entered the sink */
2599 entered = start + jitter;
2600 /* this is the time the buffer left the sink */
2601 left = start + jitter;
2604 /* calculate duration of the buffer */
2605 if (GST_CLOCK_TIME_IS_VALID (stop) && stop != start)
2606 duration = stop - start;
2608 duration = priv->avg_in_diff;
2610 /* if we have the time when the last buffer left us, calculate
2611 * processing time */
2612 if (GST_CLOCK_TIME_IS_VALID (priv->last_left)) {
2613 if (entered > priv->last_left) {
2614 pt = entered - priv->last_left;
2622 GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, sink, "start: %" GST_TIME_FORMAT
2623 ", stop %" GST_TIME_FORMAT ", entered %" GST_TIME_FORMAT ", left %"
2624 GST_TIME_FORMAT ", pt: %" GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT
2625 ",jitter %" G_GINT64_FORMAT, GST_TIME_ARGS (start), GST_TIME_ARGS (stop),
2626 GST_TIME_ARGS (entered), GST_TIME_ARGS (left), GST_TIME_ARGS (pt),
2627 GST_TIME_ARGS (duration), jitter);
2629 GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, sink, "avg_duration: %" GST_TIME_FORMAT
2630 ", avg_pt: %" GST_TIME_FORMAT ", avg_rate: %g",
2631 GST_TIME_ARGS (priv->avg_duration), GST_TIME_ARGS (priv->avg_pt),
2634 /* collect running averages. for first observations, we copy the
2636 if (!GST_CLOCK_TIME_IS_VALID (priv->avg_duration))
2637 priv->avg_duration = duration;
2639 priv->avg_duration = UPDATE_RUNNING_AVG (priv->avg_duration, duration);
2641 if (!GST_CLOCK_TIME_IS_VALID (priv->avg_pt))
2644 priv->avg_pt = UPDATE_RUNNING_AVG (priv->avg_pt, pt);
2646 if (priv->avg_duration != 0)
2648 gst_guint64_to_gdouble (priv->avg_pt) /
2649 gst_guint64_to_gdouble (priv->avg_duration);
2653 if (GST_CLOCK_TIME_IS_VALID (priv->last_left)) {
2654 if (dropped || priv->avg_rate < 0.0) {
2655 priv->avg_rate = rate;
2658 priv->avg_rate = UPDATE_RUNNING_AVG_N (priv->avg_rate, rate);
2660 priv->avg_rate = UPDATE_RUNNING_AVG_P (priv->avg_rate, rate);
2664 GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, sink,
2665 "updated: avg_duration: %" GST_TIME_FORMAT ", avg_pt: %" GST_TIME_FORMAT
2666 ", avg_rate: %g", GST_TIME_ARGS (priv->avg_duration),
2667 GST_TIME_ARGS (priv->avg_pt), priv->avg_rate);
2670 if (priv->avg_rate >= 0.0) {
2672 GstClockTimeDiff diff;
2674 /* if we have a valid rate, start sending QoS messages */
2675 if (priv->current_jitter < 0) {
2676 /* make sure we never go below 0 when adding the jitter to the
2678 if (priv->current_rstart < -priv->current_jitter)
2679 priv->current_jitter = -priv->current_rstart;
2682 if (priv->throttle_time > 0) {
2683 diff = priv->throttle_time;
2684 type = GST_QOS_TYPE_THROTTLE;
2686 diff = priv->current_jitter;
2688 type = GST_QOS_TYPE_OVERFLOW;
2690 type = GST_QOS_TYPE_UNDERFLOW;
2693 gst_base_sink_send_qos (sink, type, priv->avg_rate, priv->current_rstart,
2697 /* record when this buffer will leave us */
2698 priv->last_left = left;
2701 /* reset all qos measuring */
2703 gst_base_sink_reset_qos (GstBaseSink * sink)
2705 GstBaseSinkPrivate *priv;
2709 priv->last_render_time = GST_CLOCK_TIME_NONE;
2710 priv->prev_rstart = GST_CLOCK_TIME_NONE;
2711 priv->earliest_in_time = GST_CLOCK_TIME_NONE;
2712 priv->last_left = GST_CLOCK_TIME_NONE;
2713 priv->avg_duration = GST_CLOCK_TIME_NONE;
2714 priv->avg_pt = GST_CLOCK_TIME_NONE;
2715 priv->avg_rate = -1.0;
2716 priv->avg_render = GST_CLOCK_TIME_NONE;
2717 priv->avg_in_diff = GST_CLOCK_TIME_NONE;
2723 /* Checks if the object was scheduled too late.
2725 * rstart/rstop contain the running_time start and stop values
2728 * status and jitter contain the return values from the clock wait.
2730 * returns TRUE if the buffer was too late.
2733 gst_base_sink_is_too_late (GstBaseSink * basesink, GstMiniObject * obj,
2734 GstClockTime rstart, GstClockTime rstop,
2735 GstClockReturn status, GstClockTimeDiff jitter)
2738 gint64 max_lateness;
2739 GstBaseSinkPrivate *priv;
2741 priv = basesink->priv;
2745 /* only for objects that were too late */
2746 if (G_LIKELY (status != GST_CLOCK_EARLY))
2749 max_lateness = basesink->max_lateness;
2751 /* check if frame dropping is enabled */
2752 if (max_lateness == -1)
2755 /* only check for buffers */
2756 if (G_UNLIKELY (!GST_IS_BUFFER (obj)))
2759 /* can't do check if we don't have a timestamp */
2760 if (G_UNLIKELY (!GST_CLOCK_TIME_IS_VALID (rstart)))
2763 /* we can add a valid stop time */
2764 if (GST_CLOCK_TIME_IS_VALID (rstop))
2765 max_lateness += rstop;
2767 max_lateness += rstart;
2768 /* no stop time, use avg frame diff */
2769 if (priv->avg_in_diff != -1)
2770 max_lateness += priv->avg_in_diff;
2773 /* if the jitter bigger than duration and lateness we are too late */
2774 if ((late = rstart + jitter > max_lateness)) {
2775 GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, basesink,
2776 "buffer is too late %" GST_TIME_FORMAT
2777 " > %" GST_TIME_FORMAT, GST_TIME_ARGS (rstart + jitter),
2778 GST_TIME_ARGS (max_lateness));
2779 /* !!emergency!!, if we did not receive anything valid for more than a
2780 * second, render it anyway so the user sees something */
2781 if (GST_CLOCK_TIME_IS_VALID (priv->last_render_time) &&
2782 rstart - priv->last_render_time > GST_SECOND) {
2784 GST_ELEMENT_WARNING (basesink, CORE, CLOCK,
2785 (_("A lot of buffers are being dropped.")),
2786 ("There may be a timestamping problem, or this computer is too slow."));
2787 GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, basesink,
2788 "**emergency** last buffer at %" GST_TIME_FORMAT " > GST_SECOND",
2789 GST_TIME_ARGS (priv->last_render_time));
2794 if (!late || !GST_CLOCK_TIME_IS_VALID (priv->last_render_time)) {
2795 priv->last_render_time = rstart;
2796 /* the next allowed input timestamp */
2797 if (priv->throttle_time > 0)
2798 priv->earliest_in_time = rstart + priv->throttle_time;
2805 GST_DEBUG_OBJECT (basesink, "object was scheduled in time");
2810 GST_DEBUG_OBJECT (basesink, "frame dropping disabled");
2815 GST_DEBUG_OBJECT (basesink, "object is not a buffer");
2820 GST_DEBUG_OBJECT (basesink, "buffer has no timestamp");
2825 /* called before and after calling the render vmethod. It keeps track of how
2826 * much time was spent in the render method and is used to check if we are
2829 gst_base_sink_do_render_stats (GstBaseSink * basesink, gboolean start)
2831 GstBaseSinkPrivate *priv;
2833 priv = basesink->priv;
2836 priv->start = gst_util_get_timestamp ();
2838 GstClockTime elapsed;
2840 priv->stop = gst_util_get_timestamp ();
2842 elapsed = GST_CLOCK_DIFF (priv->start, priv->stop);
2844 if (!GST_CLOCK_TIME_IS_VALID (priv->avg_render))
2845 priv->avg_render = elapsed;
2847 priv->avg_render = UPDATE_RUNNING_AVG (priv->avg_render, elapsed);
2849 GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, basesink,
2850 "avg_render: %" GST_TIME_FORMAT, GST_TIME_ARGS (priv->avg_render));
2854 /* with STREAM_LOCK, PREROLL_LOCK,
2856 * Synchronize the object on the clock and then render it.
2858 * takes ownership of obj.
2860 static GstFlowReturn
2861 gst_base_sink_render_object (GstBaseSink * basesink, GstPad * pad,
2862 guint8 obj_type, gpointer obj)
2865 GstBaseSinkClass *bclass;
2866 gboolean late, step_end;
2868 GstBaseSinkPrivate *priv;
2870 priv = basesink->priv;
2872 if (OBJ_IS_BUFFERLIST (obj_type)) {
2874 * If buffer list, use the first group buffer within the list
2877 sync_obj = gst_buffer_list_get (GST_BUFFER_LIST_CAST (obj), 0);
2878 g_assert (NULL != sync_obj);
2887 /* synchronize this object, non syncable objects return OK
2890 gst_base_sink_do_sync (basesink, pad, sync_obj, &late, &step_end,
2892 if (G_UNLIKELY (ret != GST_FLOW_OK))
2895 /* and now render, event or buffer/buffer list. */
2896 if (G_LIKELY (OBJ_IS_BUFFERFULL (obj_type))) {
2897 /* drop late buffers unconditionally, let's hope it's unlikely */
2898 if (G_UNLIKELY (late))
2901 bclass = GST_BASE_SINK_GET_CLASS (basesink);
2903 if (G_LIKELY ((OBJ_IS_BUFFERLIST (obj_type) && bclass->render_list) ||
2904 (!OBJ_IS_BUFFERLIST (obj_type) && bclass->render))) {
2907 /* read once, to get same value before and after */
2908 do_qos = g_atomic_int_get (&priv->qos_enabled);
2910 GST_DEBUG_OBJECT (basesink, "rendering object %p", obj);
2912 /* record rendering time for QoS and stats */
2914 gst_base_sink_do_render_stats (basesink, TRUE);
2916 if (!OBJ_IS_BUFFERLIST (obj_type)) {
2919 /* For buffer lists do not set last buffer. Creating buffer
2920 * with meaningful data can be done only with memcpy which will
2921 * significantly affect performance */
2922 buf = GST_BUFFER_CAST (obj);
2923 gst_base_sink_set_last_buffer (basesink, buf);
2925 ret = bclass->render (basesink, buf);
2927 GstBufferList *buflist;
2929 buflist = GST_BUFFER_LIST_CAST (obj);
2931 ret = bclass->render_list (basesink, buflist);
2935 gst_base_sink_do_render_stats (basesink, FALSE);
2937 if (ret == GST_FLOW_STEP)
2940 if (G_UNLIKELY (basesink->flushing))
2945 } else if (G_LIKELY (OBJ_IS_EVENT (obj_type))) {
2946 GstEvent *event = GST_EVENT_CAST (obj);
2947 gboolean event_res = TRUE;
2950 bclass = GST_BASE_SINK_GET_CLASS (basesink);
2952 type = GST_EVENT_TYPE (event);
2954 GST_DEBUG_OBJECT (basesink, "rendering event %p, type %s", obj,
2955 gst_event_type_get_name (type));
2958 event_res = bclass->event (basesink, event);
2960 /* when we get here we could be flushing again when the event handler calls
2961 * _wait_eos(). We have to ignore this object in that case. */
2962 if (G_UNLIKELY (basesink->flushing))
2965 if (G_LIKELY (event_res)) {
2968 seqnum = basesink->priv->seqnum = gst_event_get_seqnum (event);
2969 GST_DEBUG_OBJECT (basesink, "Got seqnum #%" G_GUINT32_FORMAT, seqnum);
2974 GstMessage *message;
2976 /* the EOS event is completely handled so we mark
2977 * ourselves as being in the EOS state. eos is also
2978 * protected by the object lock so we can read it when
2979 * answering the POSITION query. */
2980 GST_OBJECT_LOCK (basesink);
2981 basesink->eos = TRUE;
2982 GST_OBJECT_UNLOCK (basesink);
2984 /* ok, now we can post the message */
2985 GST_DEBUG_OBJECT (basesink, "Now posting EOS");
2987 message = gst_message_new_eos (GST_OBJECT_CAST (basesink));
2988 gst_message_set_seqnum (message, seqnum);
2989 gst_element_post_message (GST_ELEMENT_CAST (basesink), message);
2992 case GST_EVENT_NEWSEGMENT:
2993 /* configure the segment */
2994 gst_base_sink_configure_segment (basesink, pad, event,
2995 &basesink->segment);
2997 case GST_EVENT_SINK_MESSAGE:{
2998 GstMessage *msg = NULL;
3000 gst_event_parse_sink_message (event, &msg);
3003 gst_element_post_message (GST_ELEMENT_CAST (basesink), msg);
3010 g_return_val_if_reached (GST_FLOW_ERROR);
3015 /* the step ended, check if we need to activate a new step */
3016 GST_DEBUG_OBJECT (basesink, "step ended");
3017 stop_stepping (basesink, &basesink->segment, &priv->current_step,
3018 priv->current_rstart, priv->current_rstop, basesink->eos);
3022 gst_base_sink_perform_qos (basesink, late);
3024 GST_DEBUG_OBJECT (basesink, "object unref after render %p", obj);
3025 gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3031 GST_DEBUG_OBJECT (basesink, "do_sync returned %s", gst_flow_get_name (ret));
3037 GST_DEBUG_OBJECT (basesink, "buffer late, dropping");
3039 if (g_atomic_int_get (&priv->qos_enabled)) {
3040 GstMessage *qos_msg;
3041 GstClockTime timestamp, duration;
3043 timestamp = GST_BUFFER_TIMESTAMP (GST_BUFFER_CAST (sync_obj));
3044 duration = GST_BUFFER_DURATION (GST_BUFFER_CAST (sync_obj));
3046 GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, basesink,
3047 "qos: dropped buffer rt %" GST_TIME_FORMAT ", st %" GST_TIME_FORMAT
3048 ", ts %" GST_TIME_FORMAT ", dur %" GST_TIME_FORMAT,
3049 GST_TIME_ARGS (priv->current_rstart),
3050 GST_TIME_ARGS (priv->current_sstart), GST_TIME_ARGS (timestamp),
3051 GST_TIME_ARGS (duration));
3052 GST_CAT_DEBUG_OBJECT (GST_CAT_QOS, basesink,
3053 "qos: rendered %" G_GUINT64_FORMAT ", dropped %" G_GUINT64_FORMAT,
3054 priv->rendered, priv->dropped);
3057 gst_message_new_qos (GST_OBJECT_CAST (basesink), basesink->sync,
3058 priv->current_rstart, priv->current_sstart, timestamp, duration);
3059 gst_message_set_qos_values (qos_msg, priv->current_jitter, priv->avg_rate,
3061 gst_message_set_qos_stats (qos_msg, GST_FORMAT_BUFFERS, priv->rendered,
3063 gst_element_post_message (GST_ELEMENT_CAST (basesink), qos_msg);
3069 GST_DEBUG_OBJECT (basesink, "we are flushing, ignore object");
3070 gst_mini_object_unref (obj);
3071 return GST_FLOW_WRONG_STATE;
3075 /* with STREAM_LOCK, PREROLL_LOCK
3077 * Perform preroll on the given object. For buffers this means
3078 * calling the preroll subclass method.
3079 * If that succeeds, the state will be commited.
3081 * function does not take ownership of obj.
3083 static GstFlowReturn
3084 gst_base_sink_preroll_object (GstBaseSink * basesink, guint8 obj_type,
3085 GstMiniObject * obj)
3089 GST_DEBUG_OBJECT (basesink, "prerolling object %p", obj);
3091 /* if it's a buffer, we need to call the preroll method */
3092 if (G_LIKELY (OBJ_IS_BUFFERFULL (obj_type) && basesink->priv->call_preroll)) {
3093 GstBaseSinkClass *bclass;
3095 GstClockTime timestamp;
3097 if (OBJ_IS_BUFFERLIST (obj_type)) {
3098 buf = gst_buffer_list_get (GST_BUFFER_LIST_CAST (obj), 0);
3099 g_assert (NULL != buf);
3101 buf = GST_BUFFER_CAST (obj);
3104 timestamp = GST_BUFFER_TIMESTAMP (buf);
3106 GST_DEBUG_OBJECT (basesink, "preroll buffer %" GST_TIME_FORMAT,
3107 GST_TIME_ARGS (timestamp));
3110 * For buffer lists do not set last buffer. Creating buffer
3111 * with meaningful data can be done only with memcpy which will
3112 * significantly affect performance
3114 if (!OBJ_IS_BUFFERLIST (obj_type)) {
3115 gst_base_sink_set_last_buffer (basesink, buf);
3118 bclass = GST_BASE_SINK_GET_CLASS (basesink);
3119 if (bclass->preroll)
3120 if ((ret = bclass->preroll (basesink, buf)) != GST_FLOW_OK)
3121 goto preroll_failed;
3123 basesink->priv->call_preroll = FALSE;
3127 if (G_LIKELY (basesink->playing_async)) {
3128 if (G_UNLIKELY (!gst_base_sink_commit_state (basesink)))
3137 GST_DEBUG_OBJECT (basesink, "preroll failed, abort state");
3138 gst_element_abort_state (GST_ELEMENT_CAST (basesink));
3143 GST_DEBUG_OBJECT (basesink, "stopping while commiting state");
3144 return GST_FLOW_WRONG_STATE;
3148 /* with STREAM_LOCK, PREROLL_LOCK
3150 * Queue an object for rendering.
3151 * The first prerollable object queued will complete the preroll. If the
3152 * preroll queue if filled, we render all the objects in the queue.
3154 * This function takes ownership of the object.
3156 static GstFlowReturn
3157 gst_base_sink_queue_object_unlocked (GstBaseSink * basesink, GstPad * pad,
3158 guint8 obj_type, gpointer obj, gboolean prerollable)
3160 GstFlowReturn ret = GST_FLOW_OK;
3164 if (G_UNLIKELY (basesink->need_preroll)) {
3165 if (G_LIKELY (prerollable))
3166 basesink->preroll_queued++;
3168 length = basesink->preroll_queued;
3170 GST_DEBUG_OBJECT (basesink, "now %d prerolled items", length);
3172 /* first prerollable item needs to finish the preroll */
3174 ret = gst_base_sink_preroll_object (basesink, obj_type, obj);
3175 if (G_UNLIKELY (ret != GST_FLOW_OK))
3176 goto preroll_failed;
3178 /* need to recheck if we need preroll, commmit state during preroll
3179 * could have made us not need more preroll. */
3180 if (G_UNLIKELY (basesink->need_preroll)) {
3181 /* see if we can render now, if we can't add the object to the preroll
3183 if (G_UNLIKELY (length <= basesink->preroll_queue_max_len))
3187 /* we can start rendering (or blocking) the queued object
3189 q = basesink->preroll_queue;
3190 while (G_UNLIKELY (!g_queue_is_empty (q))) {
3194 o = g_queue_pop_head (q);
3195 GST_DEBUG_OBJECT (basesink, "rendering queued object %p", o);
3197 ot = get_object_type (o);
3199 /* do something with the return value */
3200 ret = gst_base_sink_render_object (basesink, pad, ot, o);
3201 if (ret != GST_FLOW_OK)
3202 goto dequeue_failed;
3205 /* now render the object */
3206 ret = gst_base_sink_render_object (basesink, pad, obj_type, obj);
3207 basesink->preroll_queued = 0;
3214 GST_DEBUG_OBJECT (basesink, "preroll failed, reason %s",
3215 gst_flow_get_name (ret));
3216 gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3221 /* add object to the queue and return */
3222 GST_DEBUG_OBJECT (basesink, "need more preroll data %d <= %d",
3223 length, basesink->preroll_queue_max_len);
3224 g_queue_push_tail (basesink->preroll_queue, obj);
3229 GST_DEBUG_OBJECT (basesink, "rendering queued objects failed, reason %s",
3230 gst_flow_get_name (ret));
3231 gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3238 * This function grabs the PREROLL_LOCK and adds the object to
3241 * This function takes ownership of obj.
3243 * Note: Only GstEvent seem to be passed to this private method
3245 static GstFlowReturn
3246 gst_base_sink_queue_object (GstBaseSink * basesink, GstPad * pad,
3247 GstMiniObject * obj, gboolean prerollable)
3251 GST_BASE_SINK_PREROLL_LOCK (basesink);
3252 if (G_UNLIKELY (basesink->flushing))
3255 if (G_UNLIKELY (basesink->priv->received_eos))
3259 gst_base_sink_queue_object_unlocked (basesink, pad, _PR_IS_EVENT, obj,
3261 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3268 GST_DEBUG_OBJECT (basesink, "sink is flushing");
3269 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3270 gst_mini_object_unref (obj);
3271 return GST_FLOW_WRONG_STATE;
3275 GST_DEBUG_OBJECT (basesink,
3276 "we are EOS, dropping object, return UNEXPECTED");
3277 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3278 gst_mini_object_unref (obj);
3279 return GST_FLOW_UNEXPECTED;
3284 gst_base_sink_flush_start (GstBaseSink * basesink, GstPad * pad)
3286 /* make sure we are not blocked on the clock also clear any pending
3288 gst_base_sink_set_flushing (basesink, pad, TRUE);
3290 /* we grab the stream lock but that is not needed since setting the
3291 * sink to flushing would make sure no state commit is being done
3293 GST_PAD_STREAM_LOCK (pad);
3294 gst_base_sink_reset_qos (basesink);
3295 /* and we need to commit our state again on the next
3296 * prerolled buffer */
3297 basesink->playing_async = TRUE;
3298 if (basesink->priv->async_enabled) {
3299 gst_element_lost_state (GST_ELEMENT_CAST (basesink), TRUE);
3301 basesink->priv->have_latency = TRUE;
3303 gst_base_sink_set_last_buffer (basesink, NULL);
3304 GST_PAD_STREAM_UNLOCK (pad);
3308 gst_base_sink_flush_stop (GstBaseSink * basesink, GstPad * pad)
3310 /* unset flushing so we can accept new data, this also flushes out any EOS
3312 gst_base_sink_set_flushing (basesink, pad, FALSE);
3314 /* for position reporting */
3315 GST_OBJECT_LOCK (basesink);
3316 basesink->priv->current_sstart = GST_CLOCK_TIME_NONE;
3317 basesink->priv->current_sstop = GST_CLOCK_TIME_NONE;
3318 basesink->priv->eos_rtime = GST_CLOCK_TIME_NONE;
3319 basesink->priv->call_preroll = TRUE;
3320 basesink->priv->current_step.valid = FALSE;
3321 basesink->priv->pending_step.valid = FALSE;
3322 if (basesink->pad_mode == GST_ACTIVATE_PUSH) {
3323 /* we need new segment info after the flush. */
3324 basesink->have_newsegment = FALSE;
3325 gst_segment_init (&basesink->segment, GST_FORMAT_UNDEFINED);
3326 gst_segment_init (basesink->clip_segment, GST_FORMAT_UNDEFINED);
3328 GST_OBJECT_UNLOCK (basesink);
3332 gst_base_sink_event (GstPad * pad, GstEvent * event)
3334 GstBaseSink *basesink;
3335 gboolean result = TRUE;
3336 GstBaseSinkClass *bclass;
3338 basesink = GST_BASE_SINK (gst_pad_get_parent (pad));
3339 if (G_UNLIKELY (basesink == NULL)) {
3340 gst_event_unref (event);
3344 bclass = GST_BASE_SINK_GET_CLASS (basesink);
3346 GST_DEBUG_OBJECT (basesink, "received event %p %" GST_PTR_FORMAT, event,
3349 switch (GST_EVENT_TYPE (event)) {
3354 GST_BASE_SINK_PREROLL_LOCK (basesink);
3355 if (G_UNLIKELY (basesink->flushing))
3358 if (G_UNLIKELY (basesink->priv->received_eos)) {
3359 /* we can't accept anything when we are EOS */
3361 gst_event_unref (event);
3363 /* we set the received EOS flag here so that we can use it when testing if
3364 * we are prerolled and to refuse more buffers. */
3365 basesink->priv->received_eos = TRUE;
3367 /* EOS is a prerollable object, we call the unlocked version because it
3368 * does not check the received_eos flag. */
3369 ret = gst_base_sink_queue_object_unlocked (basesink, pad,
3370 _PR_IS_EVENT, GST_MINI_OBJECT_CAST (event), TRUE);
3371 if (G_UNLIKELY (ret != GST_FLOW_OK))
3374 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3377 case GST_EVENT_CAPS:
3381 GST_DEBUG_OBJECT (basesink, "caps %p", event);
3383 gst_event_parse_caps (event, &caps);
3384 if (bclass->set_caps)
3385 result = bclass->set_caps (basesink, caps);
3387 gst_event_unref (event);
3390 case GST_EVENT_NEWSEGMENT:
3395 GST_DEBUG_OBJECT (basesink, "newsegment %p", event);
3397 GST_BASE_SINK_PREROLL_LOCK (basesink);
3398 if (G_UNLIKELY (basesink->flushing))
3401 gst_event_parse_new_segment (event, &update, NULL, NULL, NULL, NULL,
3404 if (G_UNLIKELY (basesink->priv->received_eos && !update)) {
3405 /* we can't accept anything when we are EOS */
3407 gst_event_unref (event);
3409 /* the new segment is a non prerollable item and does not block anything,
3410 * we need to configure the current clipping segment and insert the event
3411 * in the queue to serialize it with the buffers for rendering. */
3412 gst_base_sink_configure_segment (basesink, pad, event,
3413 basesink->clip_segment);
3416 gst_base_sink_queue_object_unlocked (basesink, pad,
3417 _PR_IS_EVENT, GST_MINI_OBJECT_CAST (event), FALSE);
3418 if (G_UNLIKELY (ret != GST_FLOW_OK))
3421 GST_OBJECT_LOCK (basesink);
3422 basesink->have_newsegment = TRUE;
3423 GST_OBJECT_UNLOCK (basesink);
3426 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3429 case GST_EVENT_FLUSH_START:
3431 bclass->event (basesink, event);
3433 GST_DEBUG_OBJECT (basesink, "flush-start %p", event);
3435 gst_base_sink_flush_start (basesink, pad);
3437 gst_event_unref (event);
3439 case GST_EVENT_FLUSH_STOP:
3441 bclass->event (basesink, event);
3443 GST_DEBUG_OBJECT (basesink, "flush-stop %p", event);
3445 gst_base_sink_flush_stop (basesink, pad);
3447 gst_event_unref (event);
3450 /* other events are sent to queue or subclass depending on if they
3451 * are serialized. */
3452 if (GST_EVENT_IS_SERIALIZED (event)) {
3453 gst_base_sink_queue_object (basesink, pad,
3454 GST_MINI_OBJECT_CAST (event), FALSE);
3457 bclass->event (basesink, event);
3458 gst_event_unref (event);
3463 gst_object_unref (basesink);
3470 GST_DEBUG_OBJECT (basesink, "we are flushing");
3471 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3473 gst_event_unref (event);
3478 /* default implementation to calculate the start and end
3479 * timestamps on a buffer, subclasses can override
3482 gst_base_sink_get_times (GstBaseSink * basesink, GstBuffer * buffer,
3483 GstClockTime * start, GstClockTime * end)
3485 GstClockTime timestamp, duration;
3487 timestamp = GST_BUFFER_TIMESTAMP (buffer);
3488 if (GST_CLOCK_TIME_IS_VALID (timestamp)) {
3490 /* get duration to calculate end time */
3491 duration = GST_BUFFER_DURATION (buffer);
3492 if (GST_CLOCK_TIME_IS_VALID (duration)) {
3493 *end = timestamp + duration;
3499 /* must be called with PREROLL_LOCK */
3501 gst_base_sink_needs_preroll (GstBaseSink * basesink)
3503 gboolean is_prerolled, res;
3505 /* we have 2 cases where the PREROLL_LOCK is released:
3506 * 1) we are blocking in the PREROLL_LOCK and thus are prerolled.
3507 * 2) we are syncing on the clock
3509 is_prerolled = basesink->have_preroll || basesink->priv->received_eos;
3510 res = !is_prerolled;
3512 GST_DEBUG_OBJECT (basesink, "have_preroll: %d, EOS: %d => needs preroll: %d",
3513 basesink->have_preroll, basesink->priv->received_eos, res);
3518 /* with STREAM_LOCK, PREROLL_LOCK
3520 * Takes a buffer and compare the timestamps with the last segment.
3521 * If the buffer falls outside of the segment boundaries, drop it.
3522 * Else queue the buffer for preroll and rendering.
3524 * This function takes ownership of the buffer.
3526 static GstFlowReturn
3527 gst_base_sink_chain_unlocked (GstBaseSink * basesink, GstPad * pad,
3528 guint8 obj_type, gpointer obj)
3530 GstBaseSinkClass *bclass;
3531 GstFlowReturn result;
3532 GstClockTime start = GST_CLOCK_TIME_NONE, end = GST_CLOCK_TIME_NONE;
3533 GstSegment *clip_segment;
3534 GstBuffer *time_buf;
3536 if (G_UNLIKELY (basesink->flushing))
3539 if (G_UNLIKELY (basesink->priv->received_eos))
3542 if (OBJ_IS_BUFFERLIST (obj_type)) {
3543 time_buf = gst_buffer_list_get (GST_BUFFER_LIST_CAST (obj), 0);
3544 g_assert (NULL != time_buf);
3546 time_buf = GST_BUFFER_CAST (obj);
3549 /* for code clarity */
3550 clip_segment = basesink->clip_segment;
3552 if (G_UNLIKELY (!basesink->have_newsegment)) {
3555 sync = gst_base_sink_get_sync (basesink);
3557 GST_ELEMENT_WARNING (basesink, STREAM, FAILED,
3558 (_("Internal data flow problem.")),
3559 ("Received buffer without a new-segment. Assuming timestamps start from 0."));
3562 /* this means this sink will assume timestamps start from 0 */
3563 GST_OBJECT_LOCK (basesink);
3564 clip_segment->start = 0;
3565 clip_segment->stop = -1;
3566 basesink->segment.start = 0;
3567 basesink->segment.stop = -1;
3568 basesink->have_newsegment = TRUE;
3569 GST_OBJECT_UNLOCK (basesink);
3572 bclass = GST_BASE_SINK_GET_CLASS (basesink);
3574 /* check if the buffer needs to be dropped, we first ask the subclass for the
3576 if (bclass->get_times)
3577 bclass->get_times (basesink, time_buf, &start, &end);
3579 if (!GST_CLOCK_TIME_IS_VALID (start)) {
3580 /* if the subclass does not want sync, we use our own values so that we at
3581 * least clip the buffer to the segment */
3582 gst_base_sink_get_times (basesink, time_buf, &start, &end);
3585 GST_DEBUG_OBJECT (basesink, "got times start: %" GST_TIME_FORMAT
3586 ", end: %" GST_TIME_FORMAT, GST_TIME_ARGS (start), GST_TIME_ARGS (end));
3588 /* a dropped buffer does not participate in anything */
3589 if (GST_CLOCK_TIME_IS_VALID (start) &&
3590 (clip_segment->format == GST_FORMAT_TIME)) {
3591 if (G_UNLIKELY (!gst_segment_clip (clip_segment,
3592 GST_FORMAT_TIME, (gint64) start, (gint64) end, NULL, NULL)))
3593 goto out_of_segment;
3596 /* now we can process the buffer in the queue, this function takes ownership
3598 result = gst_base_sink_queue_object_unlocked (basesink, pad,
3599 obj_type, obj, TRUE);
3605 GST_DEBUG_OBJECT (basesink, "sink is flushing");
3606 gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3607 return GST_FLOW_WRONG_STATE;
3611 GST_DEBUG_OBJECT (basesink,
3612 "we are EOS, dropping object, return UNEXPECTED");
3613 gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3614 return GST_FLOW_UNEXPECTED;
3618 GST_DEBUG_OBJECT (basesink, "dropping buffer, out of clipping segment");
3619 gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3626 static GstFlowReturn
3627 gst_base_sink_chain_main (GstBaseSink * basesink, GstPad * pad,
3628 guint8 obj_type, gpointer obj)
3630 GstFlowReturn result;
3632 if (G_UNLIKELY (basesink->pad_mode != GST_ACTIVATE_PUSH))
3635 GST_BASE_SINK_PREROLL_LOCK (basesink);
3636 result = gst_base_sink_chain_unlocked (basesink, pad, obj_type, obj);
3637 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
3645 GST_OBJECT_LOCK (pad);
3646 GST_WARNING_OBJECT (basesink,
3647 "Push on pad %s:%s, but it was not activated in push mode",
3648 GST_DEBUG_PAD_NAME (pad));
3649 GST_OBJECT_UNLOCK (pad);
3650 gst_mini_object_unref (GST_MINI_OBJECT_CAST (obj));
3651 /* we don't post an error message this will signal to the peer
3652 * pushing that EOS is reached. */
3653 result = GST_FLOW_UNEXPECTED;
3658 static GstFlowReturn
3659 gst_base_sink_chain (GstPad * pad, GstBuffer * buf)
3661 GstBaseSink *basesink;
3663 basesink = GST_BASE_SINK (GST_OBJECT_PARENT (pad));
3665 return gst_base_sink_chain_main (basesink, pad, _PR_IS_BUFFER, buf);
3668 static GstFlowReturn
3669 gst_base_sink_chain_list (GstPad * pad, GstBufferList * list)
3671 GstBaseSink *basesink;
3672 GstBaseSinkClass *bclass;
3673 GstFlowReturn result;
3675 basesink = GST_BASE_SINK (GST_OBJECT_PARENT (pad));
3676 bclass = GST_BASE_SINK_GET_CLASS (basesink);
3678 if (G_LIKELY (bclass->render_list)) {
3679 result = gst_base_sink_chain_main (basesink, pad, _PR_IS_BUFFERLIST, list);
3684 GST_INFO_OBJECT (pad, "chaining each group in list as a merged buffer");
3686 len = gst_buffer_list_len (list);
3688 result = GST_FLOW_OK;
3689 for (i = 0; i < len; i++) {
3690 buffer = gst_buffer_list_get (list, 0);
3691 result = gst_base_sink_chain_main (basesink, pad, _PR_IS_BUFFER,
3692 gst_buffer_ref (buffer));
3693 if (result != GST_FLOW_OK)
3696 gst_buffer_list_unref (list);
3703 gst_base_sink_default_do_seek (GstBaseSink * sink, GstSegment * segment)
3705 gboolean res = TRUE;
3707 /* update our offset if the start/stop position was updated */
3708 if (segment->format == GST_FORMAT_BYTES) {
3709 segment->time = segment->start;
3710 } else if (segment->start == 0) {
3711 /* seek to start, we can implement a default for this. */
3715 GST_INFO_OBJECT (sink, "Can't do a default seek");
3721 #define SEEK_TYPE_IS_RELATIVE(t) (((t) != GST_SEEK_TYPE_NONE) && ((t) != GST_SEEK_TYPE_SET))
3724 gst_base_sink_default_prepare_seek_segment (GstBaseSink * sink,
3725 GstEvent * event, GstSegment * segment)
3727 /* By default, we try one of 2 things:
3728 * - For absolute seek positions, convert the requested position to our
3729 * configured processing format and place it in the output segment \
3730 * - For relative seek positions, convert our current (input) values to the
3731 * seek format, adjust by the relative seek offset and then convert back to
3732 * the processing format
3734 GstSeekType cur_type, stop_type;
3737 GstFormat seek_format, dest_format;
3740 gboolean res = TRUE;
3742 gst_event_parse_seek (event, &rate, &seek_format, &flags,
3743 &cur_type, &cur, &stop_type, &stop);
3744 dest_format = segment->format;
3746 if (seek_format == dest_format) {
3747 gst_segment_set_seek (segment, rate, seek_format, flags,
3748 cur_type, cur, stop_type, stop, &update);
3752 if (cur_type != GST_SEEK_TYPE_NONE) {
3753 /* FIXME: Handle seek_cur & seek_end by converting the input segment vals */
3755 gst_pad_query_convert (sink->sinkpad, seek_format, cur, &dest_format,
3757 cur_type = GST_SEEK_TYPE_SET;
3760 if (res && stop_type != GST_SEEK_TYPE_NONE) {
3761 /* FIXME: Handle seek_cur & seek_end by converting the input segment vals */
3763 gst_pad_query_convert (sink->sinkpad, seek_format, stop, &dest_format,
3765 stop_type = GST_SEEK_TYPE_SET;
3768 /* And finally, configure our output segment in the desired format */
3769 gst_segment_set_seek (segment, rate, dest_format, flags, cur_type, cur,
3770 stop_type, stop, &update);
3779 GST_DEBUG_OBJECT (sink, "undefined format given, seek aborted.");
3784 /* perform a seek, only executed in pull mode */
3786 gst_base_sink_perform_seek (GstBaseSink * sink, GstPad * pad, GstEvent * event)
3790 GstFormat seek_format, dest_format;
3792 GstSeekType cur_type, stop_type;
3793 gboolean seekseg_configured = FALSE;
3795 gboolean update, res = TRUE;
3796 GstSegment seeksegment;
3798 dest_format = sink->segment.format;
3801 GST_DEBUG_OBJECT (sink, "performing seek with event %p", event);
3802 gst_event_parse_seek (event, &rate, &seek_format, &flags,
3803 &cur_type, &cur, &stop_type, &stop);
3805 flush = flags & GST_SEEK_FLAG_FLUSH;
3807 GST_DEBUG_OBJECT (sink, "performing seek without event");
3812 GST_DEBUG_OBJECT (sink, "flushing upstream");
3813 gst_pad_push_event (pad, gst_event_new_flush_start ());
3814 gst_base_sink_flush_start (sink, pad);
3816 GST_DEBUG_OBJECT (sink, "pausing pulling thread");
3819 GST_PAD_STREAM_LOCK (pad);
3821 /* If we configured the seeksegment above, don't overwrite it now. Otherwise
3822 * copy the current segment info into the temp segment that we can actually
3823 * attempt the seek with. We only update the real segment if the seek suceeds. */
3824 if (!seekseg_configured) {
3825 memcpy (&seeksegment, &sink->segment, sizeof (GstSegment));
3827 /* now configure the final seek segment */
3829 if (sink->segment.format != seek_format) {
3830 /* OK, here's where we give the subclass a chance to convert the relative
3831 * seek into an absolute one in the processing format. We set up any
3832 * absolute seek above, before taking the stream lock. */
3833 if (!gst_base_sink_default_prepare_seek_segment (sink, event,
3835 GST_DEBUG_OBJECT (sink,
3836 "Preparing the seek failed after flushing. " "Aborting seek");
3840 /* The seek format matches our processing format, no need to ask the
3841 * the subclass to configure the segment. */
3842 gst_segment_set_seek (&seeksegment, rate, seek_format, flags,
3843 cur_type, cur, stop_type, stop, &update);
3846 /* Else, no seek event passed, so we're just (re)starting the
3851 GST_DEBUG_OBJECT (sink, "segment configured from %" G_GINT64_FORMAT
3852 " to %" G_GINT64_FORMAT ", position %" G_GINT64_FORMAT,
3853 seeksegment.start, seeksegment.stop, seeksegment.last_stop);
3855 /* do the seek, segment.last_stop contains the new position. */
3856 res = gst_base_sink_default_do_seek (sink, &seeksegment);
3861 GST_DEBUG_OBJECT (sink, "stop flushing upstream");
3862 gst_pad_push_event (pad, gst_event_new_flush_stop ());
3863 gst_base_sink_flush_stop (sink, pad);
3864 } else if (res && sink->running) {
3865 /* we are running the current segment and doing a non-flushing seek,
3866 * close the segment first based on the last_stop. */
3867 GST_DEBUG_OBJECT (sink, "closing running segment %" G_GINT64_FORMAT
3868 " to %" G_GINT64_FORMAT, sink->segment.start, sink->segment.last_stop);
3871 /* The subclass must have converted the segment to the processing format
3873 if (res && seeksegment.format != dest_format) {
3874 GST_DEBUG_OBJECT (sink, "Subclass failed to prepare a seek segment "
3875 "in the correct format. Aborting seek.");
3879 /* if successfull seek, we update our real segment and push
3880 * out the new segment. */
3882 memcpy (&sink->segment, &seeksegment, sizeof (GstSegment));
3884 if (sink->segment.flags & GST_SEEK_FLAG_SEGMENT) {
3885 gst_element_post_message (GST_ELEMENT (sink),
3886 gst_message_new_segment_start (GST_OBJECT (sink),
3887 sink->segment.format, sink->segment.last_stop));
3891 sink->priv->discont = TRUE;
3892 sink->running = TRUE;
3894 GST_PAD_STREAM_UNLOCK (pad);
3900 set_step_info (GstBaseSink * sink, GstStepInfo * current, GstStepInfo * pending,
3901 guint seqnum, GstFormat format, guint64 amount, gdouble rate,
3902 gboolean flush, gboolean intermediate)
3904 GST_OBJECT_LOCK (sink);
3905 pending->seqnum = seqnum;
3906 pending->format = format;
3907 pending->amount = amount;
3908 pending->position = 0;
3909 pending->rate = rate;
3910 pending->flush = flush;
3911 pending->intermediate = intermediate;
3912 pending->valid = TRUE;
3913 /* flush invalidates the current stepping segment */
3915 current->valid = FALSE;
3916 GST_OBJECT_UNLOCK (sink);
3920 gst_base_sink_perform_step (GstBaseSink * sink, GstPad * pad, GstEvent * event)
3922 GstBaseSinkPrivate *priv;
3923 GstBaseSinkClass *bclass;
3924 gboolean flush, intermediate;
3929 GstStepInfo *pending, *current;
3930 GstMessage *message;
3932 bclass = GST_BASE_SINK_GET_CLASS (sink);
3935 GST_DEBUG_OBJECT (sink, "performing step with event %p", event);
3937 gst_event_parse_step (event, &format, &amount, &rate, &flush, &intermediate);
3938 seqnum = gst_event_get_seqnum (event);
3940 pending = &priv->pending_step;
3941 current = &priv->current_step;
3943 /* post message first */
3944 message = gst_message_new_step_start (GST_OBJECT (sink), FALSE, format,
3945 amount, rate, flush, intermediate);
3946 gst_message_set_seqnum (message, seqnum);
3947 gst_element_post_message (GST_ELEMENT (sink), message);
3950 /* we need to call ::unlock before locking PREROLL_LOCK
3951 * since we lock it before going into ::render */
3953 bclass->unlock (sink);
3955 GST_BASE_SINK_PREROLL_LOCK (sink);
3956 /* now that we have the PREROLL lock, clear our unlock request */
3957 if (bclass->unlock_stop)
3958 bclass->unlock_stop (sink);
3960 /* update the stepinfo and make it valid */
3961 set_step_info (sink, current, pending, seqnum, format, amount, rate, flush,
3964 if (sink->priv->async_enabled) {
3965 /* and we need to commit our state again on the next
3966 * prerolled buffer */
3967 sink->playing_async = TRUE;
3968 priv->pending_step.need_preroll = TRUE;
3969 sink->need_preroll = FALSE;
3970 gst_element_lost_state (GST_ELEMENT_CAST (sink), FALSE);
3972 sink->priv->have_latency = TRUE;
3973 sink->need_preroll = FALSE;
3975 priv->current_sstart = GST_CLOCK_TIME_NONE;
3976 priv->current_sstop = GST_CLOCK_TIME_NONE;
3977 priv->eos_rtime = GST_CLOCK_TIME_NONE;
3978 priv->call_preroll = TRUE;
3979 gst_base_sink_set_last_buffer (sink, NULL);
3980 gst_base_sink_reset_qos (sink);
3982 if (sink->clock_id) {
3983 gst_clock_id_unschedule (sink->clock_id);
3986 if (sink->have_preroll) {
3987 GST_DEBUG_OBJECT (sink, "signal waiter");
3988 priv->step_unlock = TRUE;
3989 GST_BASE_SINK_PREROLL_SIGNAL (sink);
3991 GST_BASE_SINK_PREROLL_UNLOCK (sink);
3993 /* update the stepinfo and make it valid */
3994 set_step_info (sink, current, pending, seqnum, format, amount, rate, flush,
4004 gst_base_sink_loop (GstPad * pad)
4006 GstBaseSink *basesink;
4007 GstBuffer *buf = NULL;
4008 GstFlowReturn result;
4012 basesink = GST_BASE_SINK (GST_OBJECT_PARENT (pad));
4014 g_assert (basesink->pad_mode == GST_ACTIVATE_PULL);
4016 if ((blocksize = basesink->priv->blocksize) == 0)
4019 offset = basesink->segment.last_stop;
4021 GST_DEBUG_OBJECT (basesink, "pulling %" G_GUINT64_FORMAT ", %u",
4024 result = gst_pad_pull_range (pad, offset, blocksize, &buf);
4025 if (G_UNLIKELY (result != GST_FLOW_OK))
4028 if (G_UNLIKELY (buf == NULL))
4031 offset += gst_buffer_get_size (buf);
4033 gst_segment_set_last_stop (&basesink->segment, GST_FORMAT_BYTES, offset);
4035 GST_BASE_SINK_PREROLL_LOCK (basesink);
4036 result = gst_base_sink_chain_unlocked (basesink, pad, _PR_IS_BUFFER, buf);
4037 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
4038 if (G_UNLIKELY (result != GST_FLOW_OK))
4046 GST_LOG_OBJECT (basesink, "pausing task, reason %s",
4047 gst_flow_get_name (result));
4048 gst_pad_pause_task (pad);
4049 if (result == GST_FLOW_UNEXPECTED) {
4050 /* perform EOS logic */
4051 if (basesink->segment.flags & GST_SEEK_FLAG_SEGMENT) {
4052 gst_element_post_message (GST_ELEMENT_CAST (basesink),
4053 gst_message_new_segment_done (GST_OBJECT_CAST (basesink),
4054 basesink->segment.format, basesink->segment.last_stop));
4056 gst_base_sink_event (pad, gst_event_new_eos ());
4058 } else if (result == GST_FLOW_NOT_LINKED || result <= GST_FLOW_UNEXPECTED) {
4059 /* for fatal errors we post an error message, post the error
4060 * first so the app knows about the error first.
4061 * wrong-state is not a fatal error because it happens due to
4062 * flushing and posting an error message in that case is the
4063 * wrong thing to do, e.g. when basesrc is doing a flushing
4065 GST_ELEMENT_ERROR (basesink, STREAM, FAILED,
4066 (_("Internal data stream error.")),
4067 ("stream stopped, reason %s", gst_flow_get_name (result)));
4068 gst_base_sink_event (pad, gst_event_new_eos ());
4074 GST_LOG_OBJECT (basesink, "no buffer, pausing");
4075 GST_ELEMENT_ERROR (basesink, STREAM, FAILED,
4076 (_("Internal data flow error.")), ("element returned NULL buffer"));
4077 result = GST_FLOW_ERROR;
4083 gst_base_sink_set_flushing (GstBaseSink * basesink, GstPad * pad,
4086 GstBaseSinkClass *bclass;
4088 bclass = GST_BASE_SINK_GET_CLASS (basesink);
4091 /* unlock any subclasses, we need to do this before grabbing the
4092 * PREROLL_LOCK since we hold this lock before going into ::render. */
4094 bclass->unlock (basesink);
4097 GST_BASE_SINK_PREROLL_LOCK (basesink);
4098 basesink->flushing = flushing;
4100 /* step 1, now that we have the PREROLL lock, clear our unlock request */
4101 if (bclass->unlock_stop)
4102 bclass->unlock_stop (basesink);
4104 /* set need_preroll before we unblock the clock. If the clock is unblocked
4105 * before timing out, we can reuse the buffer for preroll. */
4106 basesink->need_preroll = TRUE;
4108 /* step 2, unblock clock sync (if any) or any other blocking thing */
4109 if (basesink->clock_id) {
4110 gst_clock_id_unschedule (basesink->clock_id);
4113 /* flush out the data thread if it's locked in finish_preroll, this will
4114 * also flush out the EOS state */
4115 GST_DEBUG_OBJECT (basesink,
4116 "flushing out data thread, need preroll to TRUE");
4117 gst_base_sink_preroll_queue_flush (basesink, pad);
4119 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
4125 gst_base_sink_default_activate_pull (GstBaseSink * basesink, gboolean active)
4131 result = gst_pad_start_task (basesink->sinkpad,
4132 (GstTaskFunction) gst_base_sink_loop, basesink->sinkpad);
4134 /* step 2, make sure streaming finishes */
4135 result = gst_pad_stop_task (basesink->sinkpad);
4142 gst_base_sink_pad_activate (GstPad * pad)
4144 gboolean result = FALSE;
4145 GstBaseSink *basesink;
4147 basesink = GST_BASE_SINK (gst_pad_get_parent (pad));
4149 GST_DEBUG_OBJECT (basesink, "Trying pull mode first");
4151 gst_base_sink_set_flushing (basesink, pad, FALSE);
4153 /* we need to have the pull mode enabled */
4154 if (!basesink->can_activate_pull) {
4155 GST_DEBUG_OBJECT (basesink, "pull mode disabled");
4159 /* check if downstreams supports pull mode at all */
4160 if (!gst_pad_check_pull_range (pad)) {
4161 GST_DEBUG_OBJECT (basesink, "pull mode not supported");
4165 /* set the pad mode before starting the task so that it's in the
4166 * correct state for the new thread. also the sink set_caps and get_caps
4167 * function checks this */
4168 basesink->pad_mode = GST_ACTIVATE_PULL;
4170 /* we first try to negotiate a format so that when we try to activate
4171 * downstream, it knows about our format */
4172 if (!gst_base_sink_negotiate_pull (basesink)) {
4173 GST_DEBUG_OBJECT (basesink, "failed to negotiate in pull mode");
4177 /* ok activate now */
4178 if (!gst_pad_activate_pull (pad, TRUE)) {
4179 /* clear any pending caps */
4180 GST_OBJECT_LOCK (basesink);
4181 gst_caps_replace (&basesink->priv->pull_caps, NULL);
4182 GST_OBJECT_UNLOCK (basesink);
4183 GST_DEBUG_OBJECT (basesink, "failed to activate in pull mode");
4187 GST_DEBUG_OBJECT (basesink, "Success activating pull mode");
4191 /* push mode fallback */
4193 GST_DEBUG_OBJECT (basesink, "Falling back to push mode");
4194 if ((result = gst_pad_activate_push (pad, TRUE))) {
4195 GST_DEBUG_OBJECT (basesink, "Success activating push mode");
4200 GST_WARNING_OBJECT (basesink, "Could not activate pad in either mode");
4201 gst_base_sink_set_flushing (basesink, pad, TRUE);
4204 gst_object_unref (basesink);
4210 gst_base_sink_pad_activate_push (GstPad * pad, gboolean active)
4213 GstBaseSink *basesink;
4215 basesink = GST_BASE_SINK (gst_pad_get_parent (pad));
4218 if (!basesink->can_activate_push) {
4220 basesink->pad_mode = GST_ACTIVATE_NONE;
4223 basesink->pad_mode = GST_ACTIVATE_PUSH;
4226 if (G_UNLIKELY (basesink->pad_mode != GST_ACTIVATE_PUSH)) {
4227 g_warning ("Internal GStreamer activation error!!!");
4230 gst_base_sink_set_flushing (basesink, pad, TRUE);
4232 basesink->pad_mode = GST_ACTIVATE_NONE;
4236 gst_object_unref (basesink);
4242 gst_base_sink_negotiate_pull (GstBaseSink * basesink)
4249 /* this returns the intersection between our caps and the peer caps. If there
4250 * is no peer, it returns NULL and we can't operate in pull mode so we can
4251 * fail the negotiation. */
4252 caps = gst_pad_get_allowed_caps (GST_BASE_SINK_PAD (basesink));
4253 if (caps == NULL || gst_caps_is_empty (caps))
4254 goto no_caps_possible;
4256 GST_DEBUG_OBJECT (basesink, "allowed caps: %" GST_PTR_FORMAT, caps);
4258 caps = gst_caps_make_writable (caps);
4259 /* get the first (prefered) format */
4260 gst_caps_truncate (caps);
4262 GST_DEBUG_OBJECT (basesink, "have caps: %" GST_PTR_FORMAT, caps);
4264 if (gst_caps_is_any (caps)) {
4265 GST_DEBUG_OBJECT (basesink, "caps were ANY after fixating, "
4267 /* neither side has template caps in this case, so they are prepared for
4268 pull() without setcaps() */
4272 gst_pad_fixate_caps (GST_BASE_SINK_PAD (basesink), caps);
4273 GST_DEBUG_OBJECT (basesink, "fixated to: %" GST_PTR_FORMAT, caps);
4275 if (gst_caps_is_fixed (caps)) {
4276 if (!gst_pad_set_caps (GST_BASE_SINK_PAD (basesink), caps))
4277 goto could_not_set_caps;
4279 GST_OBJECT_LOCK (basesink);
4280 gst_caps_replace (&basesink->priv->pull_caps, caps);
4281 GST_OBJECT_UNLOCK (basesink);
4287 gst_caps_unref (caps);
4293 GST_INFO_OBJECT (basesink, "Pipeline could not agree on caps");
4294 GST_DEBUG_OBJECT (basesink, "get_allowed_caps() returned EMPTY");
4296 gst_caps_unref (caps);
4301 GST_INFO_OBJECT (basesink, "Could not set caps: %" GST_PTR_FORMAT, caps);
4302 gst_caps_unref (caps);
4307 /* this won't get called until we implement an activate function */
4309 gst_base_sink_pad_activate_pull (GstPad * pad, gboolean active)
4311 gboolean result = FALSE;
4312 GstBaseSink *basesink;
4313 GstBaseSinkClass *bclass;
4315 basesink = GST_BASE_SINK (gst_pad_get_parent (pad));
4316 bclass = GST_BASE_SINK_GET_CLASS (basesink);
4322 /* we mark we have a newsegment here because pull based
4323 * mode works just fine without having a newsegment before the
4325 format = GST_FORMAT_BYTES;
4327 gst_segment_init (&basesink->segment, format);
4328 gst_segment_init (basesink->clip_segment, format);
4329 GST_OBJECT_LOCK (basesink);
4330 basesink->have_newsegment = TRUE;
4331 GST_OBJECT_UNLOCK (basesink);
4333 /* get the peer duration in bytes */
4334 result = gst_pad_query_peer_duration (pad, &format, &duration);
4336 GST_DEBUG_OBJECT (basesink,
4337 "setting duration in bytes to %" G_GINT64_FORMAT, duration);
4338 gst_segment_set_duration (basesink->clip_segment, format, duration);
4339 gst_segment_set_duration (&basesink->segment, format, duration);
4341 GST_DEBUG_OBJECT (basesink, "unknown duration");
4344 if (bclass->activate_pull)
4345 result = bclass->activate_pull (basesink, TRUE);
4350 goto activate_failed;
4353 if (G_UNLIKELY (basesink->pad_mode != GST_ACTIVATE_PULL)) {
4354 g_warning ("Internal GStreamer activation error!!!");
4357 result = gst_base_sink_set_flushing (basesink, pad, TRUE);
4358 if (bclass->activate_pull)
4359 result &= bclass->activate_pull (basesink, FALSE);
4360 basesink->pad_mode = GST_ACTIVATE_NONE;
4361 /* clear any pending caps */
4362 GST_OBJECT_LOCK (basesink);
4363 gst_caps_replace (&basesink->priv->pull_caps, NULL);
4364 GST_OBJECT_UNLOCK (basesink);
4367 gst_object_unref (basesink);
4374 /* reset, as starting the thread failed */
4375 basesink->pad_mode = GST_ACTIVATE_NONE;
4377 GST_ERROR_OBJECT (basesink, "subclass failed to activate in pull mode");
4382 /* send an event to our sinkpad peer. */
4384 gst_base_sink_send_event (GstElement * element, GstEvent * event)
4387 GstBaseSink *basesink = GST_BASE_SINK (element);
4388 gboolean forward, result = TRUE;
4389 GstActivateMode mode;
4391 GST_OBJECT_LOCK (element);
4392 /* get the pad and the scheduling mode */
4393 pad = gst_object_ref (basesink->sinkpad);
4394 mode = basesink->pad_mode;
4395 GST_OBJECT_UNLOCK (element);
4397 /* only push UPSTREAM events upstream */
4398 forward = GST_EVENT_IS_UPSTREAM (event);
4400 GST_DEBUG_OBJECT (basesink, "handling event %p %" GST_PTR_FORMAT, event,
4403 switch (GST_EVENT_TYPE (event)) {
4404 case GST_EVENT_LATENCY:
4406 GstClockTime latency;
4408 gst_event_parse_latency (event, &latency);
4410 /* store the latency. We use this to adjust the running_time before syncing
4411 * it to the clock. */
4412 GST_OBJECT_LOCK (element);
4413 basesink->priv->latency = latency;
4414 if (!basesink->priv->have_latency)
4416 GST_OBJECT_UNLOCK (element);
4417 GST_DEBUG_OBJECT (basesink, "latency set to %" GST_TIME_FORMAT,
4418 GST_TIME_ARGS (latency));
4420 /* We forward this event so that all elements know about the global pipeline
4421 * latency. This is interesting for an element when it wants to figure out
4422 * when a particular piece of data will be rendered. */
4425 case GST_EVENT_SEEK:
4426 /* in pull mode we will execute the seek */
4427 if (mode == GST_ACTIVATE_PULL)
4428 result = gst_base_sink_perform_seek (basesink, pad, event);
4430 case GST_EVENT_STEP:
4431 result = gst_base_sink_perform_step (basesink, pad, event);
4439 result = gst_pad_push_event (pad, event);
4441 /* not forwarded, unref the event */
4442 gst_event_unref (event);
4445 gst_object_unref (pad);
4450 gst_base_sink_get_position (GstBaseSink * basesink, GstFormat format,
4451 gint64 * cur, gboolean * upstream)
4453 GstClock *clock = NULL;
4454 gboolean res = FALSE;
4455 GstFormat oformat, tformat;
4456 GstSegment *segment;
4457 GstClockTime now, latency;
4458 GstClockTimeDiff base;
4459 gint64 time, accum, duration;
4462 gboolean last_seen, with_clock, in_paused;
4464 GST_OBJECT_LOCK (basesink);
4465 /* we can only get the segment when we are not NULL or READY */
4466 if (!basesink->have_newsegment)
4470 /* when not in PLAYING or when we're busy with a state change, we
4471 * cannot read from the clock so we report time based on the
4472 * last seen timestamp. */
4473 if (GST_STATE (basesink) != GST_STATE_PLAYING ||
4474 GST_STATE_PENDING (basesink) != GST_STATE_VOID_PENDING) {
4478 /* we don't use the clip segment in pull mode, when seeking we update the
4479 * main segment directly with the new segment values without it having to be
4480 * activated by the rendering after preroll */
4481 if (basesink->pad_mode == GST_ACTIVATE_PUSH)
4482 segment = basesink->clip_segment;
4484 segment = &basesink->segment;
4486 /* our intermediate time format */
4487 tformat = GST_FORMAT_TIME;
4488 /* get the format in the segment */
4489 oformat = segment->format;
4491 /* report with last seen position when EOS */
4492 last_seen = basesink->eos;
4494 /* assume we will use the clock for getting the current position */
4496 if (basesink->sync == FALSE)
4499 /* and we need a clock */
4500 if (G_UNLIKELY ((clock = GST_ELEMENT_CLOCK (basesink)) == NULL))
4503 gst_object_ref (clock);
4505 /* collect all data we need holding the lock */
4506 if (GST_CLOCK_TIME_IS_VALID (segment->time))
4507 time = segment->time;
4511 if (GST_CLOCK_TIME_IS_VALID (segment->stop))
4512 duration = segment->stop - segment->start;
4516 accum = segment->accum;
4517 rate = segment->rate * segment->applied_rate;
4518 latency = basesink->priv->latency;
4520 if (oformat == GST_FORMAT_TIME) {
4523 start = basesink->priv->current_sstart;
4524 stop = basesink->priv->current_sstop;
4527 /* in paused we use the last position as a lower bound */
4528 if (stop == -1 || segment->rate > 0.0)
4533 /* in playing, use last stop time as upper bound */
4534 if (start == -1 || segment->rate > 0.0)
4540 /* convert last stop to stream time */
4541 last = gst_segment_to_stream_time (segment, oformat, segment->last_stop);
4545 /* in paused, use start_time */
4546 base = GST_ELEMENT_START_TIME (basesink);
4547 GST_DEBUG_OBJECT (basesink, "in paused, using start time %" GST_TIME_FORMAT,
4548 GST_TIME_ARGS (base));
4549 } else if (with_clock) {
4550 /* else use clock when needed */
4551 base = GST_ELEMENT_CAST (basesink)->base_time;
4552 GST_DEBUG_OBJECT (basesink, "using clock and base time %" GST_TIME_FORMAT,
4553 GST_TIME_ARGS (base));
4555 /* else, no sync or clock -> no base time */
4556 GST_DEBUG_OBJECT (basesink, "no sync or no clock");
4560 /* no base, we can't calculate running_time, use last seem timestamp to report
4565 /* need to release the object lock before we can get the time,
4566 * a clock might take the LOCK of the provider, which could be
4567 * a basesink subclass. */
4568 GST_OBJECT_UNLOCK (basesink);
4571 /* in EOS or when no valid stream_time, report the value of last seen
4574 /* no timestamp, we need to ask upstream */
4575 GST_DEBUG_OBJECT (basesink, "no last seen timestamp, asking upstream");
4580 GST_DEBUG_OBJECT (basesink, "using last seen timestamp %" GST_TIME_FORMAT,
4581 GST_TIME_ARGS (last));
4584 if (oformat != tformat) {
4585 /* convert accum, time and duration to time */
4586 if (!gst_pad_query_convert (basesink->sinkpad, oformat, accum, &tformat,
4588 goto convert_failed;
4589 if (!gst_pad_query_convert (basesink->sinkpad, oformat, duration,
4590 &tformat, &duration))
4591 goto convert_failed;
4592 if (!gst_pad_query_convert (basesink->sinkpad, oformat, time, &tformat,
4594 goto convert_failed;
4595 if (!gst_pad_query_convert (basesink->sinkpad, oformat, last, &tformat,
4597 goto convert_failed;
4599 /* assume time format from now on */
4603 if (!in_paused && with_clock) {
4604 now = gst_clock_get_time (clock);
4610 /* subtract base time and accumulated time from the clock time.
4611 * Make sure we don't go negative. This is the current time in
4612 * the segment which we need to scale with the combined
4613 * rate and applied rate. */
4616 if (GST_CLOCK_DIFF (base, now) < 0)
4619 /* for negative rates we need to count back from the segment
4624 *cur = time + gst_guint64_to_gdouble (now - base) * rate;
4627 /* never report less than segment values in paused */
4629 *cur = MAX (last, *cur);
4631 /* never report more than last seen position in playing */
4633 *cur = MIN (last, *cur);
4636 GST_DEBUG_OBJECT (basesink,
4637 "now %" GST_TIME_FORMAT " - base %" GST_TIME_FORMAT " - accum %"
4638 GST_TIME_FORMAT " + time %" GST_TIME_FORMAT " last %" GST_TIME_FORMAT,
4639 GST_TIME_ARGS (now), GST_TIME_ARGS (base), GST_TIME_ARGS (accum),
4640 GST_TIME_ARGS (time), GST_TIME_ARGS (last));
4643 if (oformat != format) {
4644 /* convert to final format */
4645 if (!gst_pad_query_convert (basesink->sinkpad, oformat, *cur, &format, cur))
4646 goto convert_failed;
4652 GST_DEBUG_OBJECT (basesink, "res: %d, POSITION: %" GST_TIME_FORMAT,
4653 res, GST_TIME_ARGS (*cur));
4656 gst_object_unref (clock);
4663 /* in NULL or READY we always return FALSE and -1 */
4664 GST_DEBUG_OBJECT (basesink, "position in wrong state, return -1");
4667 GST_OBJECT_UNLOCK (basesink);
4672 GST_DEBUG_OBJECT (basesink, "convert failed, try upstream");
4680 gst_base_sink_get_duration (GstBaseSink * basesink, GstFormat format,
4681 gint64 * dur, gboolean * upstream)
4683 gboolean res = FALSE;
4685 if (basesink->pad_mode == GST_ACTIVATE_PULL) {
4686 GstFormat uformat = GST_FORMAT_BYTES;
4689 /* get the duration in bytes, in pull mode that's all we are sure to
4690 * know. We have to explicitly get this value from upstream instead of
4691 * using our cached value because it might change. Duration caching
4692 * should be done at a higher level. */
4693 res = gst_pad_query_peer_duration (basesink->sinkpad, &uformat, &uduration);
4695 gst_segment_set_duration (&basesink->segment, uformat, uduration);
4696 if (format != uformat) {
4697 /* convert to the requested format */
4698 res = gst_pad_query_convert (basesink->sinkpad, uformat, uduration,
4712 static const GstQueryType *
4713 gst_base_sink_get_query_types (GstElement * element)
4715 static const GstQueryType query_types[] = {
4727 gst_base_sink_query (GstElement * element, GstQuery * query)
4729 gboolean res = FALSE;
4731 GstBaseSink *basesink = GST_BASE_SINK (element);
4733 switch (GST_QUERY_TYPE (query)) {
4734 case GST_QUERY_POSITION:
4738 gboolean upstream = FALSE;
4740 gst_query_parse_position (query, &format, NULL);
4742 GST_DEBUG_OBJECT (basesink, "position query in format %s",
4743 gst_format_get_name (format));
4745 /* first try to get the position based on the clock */
4747 gst_base_sink_get_position (basesink, format, &cur, &upstream))) {
4748 gst_query_set_position (query, format, cur);
4749 } else if (upstream) {
4750 /* fallback to peer query */
4751 res = gst_pad_peer_query (basesink->sinkpad, query);
4754 /* we can handle a few things if upstream failed */
4755 if (format == GST_FORMAT_PERCENT) {
4757 GstFormat uformat = GST_FORMAT_TIME;
4759 res = gst_base_sink_get_position (basesink, GST_FORMAT_TIME, &cur,
4761 if (!res && upstream) {
4762 res = gst_pad_query_peer_position (basesink->sinkpad, &uformat,
4766 res = gst_base_sink_get_duration (basesink, GST_FORMAT_TIME, &dur,
4768 if (!res && upstream) {
4769 res = gst_pad_query_peer_duration (basesink->sinkpad, &uformat,
4776 pos = gst_util_uint64_scale (100 * GST_FORMAT_PERCENT_SCALE, cur,
4778 gst_query_set_position (query, GST_FORMAT_PERCENT, pos);
4784 case GST_QUERY_DURATION:
4788 gboolean upstream = FALSE;
4790 gst_query_parse_duration (query, &format, NULL);
4792 GST_DEBUG_OBJECT (basesink, "duration query in format %s",
4793 gst_format_get_name (format));
4796 gst_base_sink_get_duration (basesink, format, &dur, &upstream))) {
4797 gst_query_set_duration (query, format, dur);
4798 } else if (upstream) {
4799 /* fallback to peer query */
4800 res = gst_pad_peer_query (basesink->sinkpad, query);
4803 /* we can handle a few things if upstream failed */
4804 if (format == GST_FORMAT_PERCENT) {
4805 gst_query_set_duration (query, GST_FORMAT_PERCENT,
4806 GST_FORMAT_PERCENT_MAX);
4812 case GST_QUERY_LATENCY:
4814 gboolean live, us_live;
4815 GstClockTime min, max;
4817 if ((res = gst_base_sink_query_latency (basesink, &live, &us_live, &min,
4819 gst_query_set_latency (query, live, min, max);
4823 case GST_QUERY_JITTER:
4825 case GST_QUERY_RATE:
4826 /* gst_query_set_rate (query, basesink->segment_rate); */
4829 case GST_QUERY_SEGMENT:
4831 if (basesink->pad_mode == GST_ACTIVATE_PULL) {
4832 gst_query_set_segment (query, basesink->segment.rate,
4833 GST_FORMAT_TIME, basesink->segment.start, basesink->segment.stop);
4836 res = gst_pad_peer_query (basesink->sinkpad, query);
4840 case GST_QUERY_SEEKING:
4841 case GST_QUERY_CONVERT:
4842 case GST_QUERY_FORMATS:
4844 res = gst_pad_peer_query (basesink->sinkpad, query);
4847 GST_DEBUG_OBJECT (basesink, "query %s returns %d",
4848 GST_QUERY_TYPE_NAME (query), res);
4852 static GstStateChangeReturn
4853 gst_base_sink_change_state (GstElement * element, GstStateChange transition)
4855 GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
4856 GstBaseSink *basesink = GST_BASE_SINK (element);
4857 GstBaseSinkClass *bclass;
4858 GstBaseSinkPrivate *priv;
4860 priv = basesink->priv;
4862 bclass = GST_BASE_SINK_GET_CLASS (basesink);
4864 switch (transition) {
4865 case GST_STATE_CHANGE_NULL_TO_READY:
4867 if (!bclass->start (basesink))
4870 case GST_STATE_CHANGE_READY_TO_PAUSED:
4871 /* need to complete preroll before this state change completes, there
4872 * is no data flow in READY so we can safely assume we need to preroll. */
4873 GST_BASE_SINK_PREROLL_LOCK (basesink);
4874 GST_DEBUG_OBJECT (basesink, "READY to PAUSED");
4875 basesink->have_newsegment = FALSE;
4876 gst_segment_init (&basesink->segment, GST_FORMAT_UNDEFINED);
4877 gst_segment_init (basesink->clip_segment, GST_FORMAT_UNDEFINED);
4878 basesink->offset = 0;
4879 basesink->have_preroll = FALSE;
4880 priv->step_unlock = FALSE;
4881 basesink->need_preroll = TRUE;
4882 basesink->playing_async = TRUE;
4883 priv->current_sstart = GST_CLOCK_TIME_NONE;
4884 priv->current_sstop = GST_CLOCK_TIME_NONE;
4885 priv->eos_rtime = GST_CLOCK_TIME_NONE;
4887 basesink->eos = FALSE;
4888 priv->received_eos = FALSE;
4889 gst_base_sink_reset_qos (basesink);
4890 priv->commited = FALSE;
4891 priv->call_preroll = TRUE;
4892 priv->current_step.valid = FALSE;
4893 priv->pending_step.valid = FALSE;
4894 if (priv->async_enabled) {
4895 GST_DEBUG_OBJECT (basesink, "doing async state change");
4896 /* when async enabled, post async-start message and return ASYNC from
4897 * the state change function */
4898 ret = GST_STATE_CHANGE_ASYNC;
4899 gst_element_post_message (GST_ELEMENT_CAST (basesink),
4900 gst_message_new_async_start (GST_OBJECT_CAST (basesink), FALSE));
4902 priv->have_latency = TRUE;
4904 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
4906 case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
4907 GST_BASE_SINK_PREROLL_LOCK (basesink);
4908 if (!gst_base_sink_needs_preroll (basesink)) {
4909 GST_DEBUG_OBJECT (basesink, "PAUSED to PLAYING, don't need preroll");
4910 /* no preroll needed anymore now. */
4911 basesink->playing_async = FALSE;
4912 basesink->need_preroll = FALSE;
4913 if (basesink->eos) {
4914 GstMessage *message;
4916 /* need to post EOS message here */
4917 GST_DEBUG_OBJECT (basesink, "Now posting EOS");
4918 message = gst_message_new_eos (GST_OBJECT_CAST (basesink));
4919 gst_message_set_seqnum (message, basesink->priv->seqnum);
4920 gst_element_post_message (GST_ELEMENT_CAST (basesink), message);
4922 GST_DEBUG_OBJECT (basesink, "signal preroll");
4923 GST_BASE_SINK_PREROLL_SIGNAL (basesink);
4926 GST_DEBUG_OBJECT (basesink, "PAUSED to PLAYING, we are not prerolled");
4927 basesink->need_preroll = TRUE;
4928 basesink->playing_async = TRUE;
4929 priv->call_preroll = TRUE;
4930 priv->commited = FALSE;
4931 if (priv->async_enabled) {
4932 GST_DEBUG_OBJECT (basesink, "doing async state change");
4933 ret = GST_STATE_CHANGE_ASYNC;
4934 gst_element_post_message (GST_ELEMENT_CAST (basesink),
4935 gst_message_new_async_start (GST_OBJECT_CAST (basesink), FALSE));
4938 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
4945 GstStateChangeReturn bret;
4947 bret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
4948 if (G_UNLIKELY (bret == GST_STATE_CHANGE_FAILURE))
4949 goto activate_failed;
4952 switch (transition) {
4953 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
4954 GST_DEBUG_OBJECT (basesink, "PLAYING to PAUSED");
4955 /* FIXME, make sure we cannot enter _render first */
4957 /* we need to call ::unlock before locking PREROLL_LOCK
4958 * since we lock it before going into ::render */
4960 bclass->unlock (basesink);
4962 GST_BASE_SINK_PREROLL_LOCK (basesink);
4963 GST_DEBUG_OBJECT (basesink, "got preroll lock");
4964 /* now that we have the PREROLL lock, clear our unlock request */
4965 if (bclass->unlock_stop)
4966 bclass->unlock_stop (basesink);
4968 /* we need preroll again and we set the flag before unlocking the clockid
4969 * because if the clockid is unlocked before a current buffer expired, we
4970 * can use that buffer to preroll with */
4971 basesink->need_preroll = TRUE;
4973 if (basesink->clock_id) {
4974 GST_DEBUG_OBJECT (basesink, "unschedule clock");
4975 gst_clock_id_unschedule (basesink->clock_id);
4978 /* if we don't have a preroll buffer we need to wait for a preroll and
4980 if (!gst_base_sink_needs_preroll (basesink)) {
4981 GST_DEBUG_OBJECT (basesink, "PLAYING to PAUSED, we are prerolled");
4982 basesink->playing_async = FALSE;
4984 if (GST_STATE_TARGET (GST_ELEMENT (basesink)) <= GST_STATE_READY) {
4985 GST_DEBUG_OBJECT (basesink, "element is <= READY");
4986 ret = GST_STATE_CHANGE_SUCCESS;
4988 GST_DEBUG_OBJECT (basesink,
4989 "PLAYING to PAUSED, we are not prerolled");
4990 basesink->playing_async = TRUE;
4991 priv->commited = FALSE;
4992 priv->call_preroll = TRUE;
4993 if (priv->async_enabled) {
4994 GST_DEBUG_OBJECT (basesink, "doing async state change");
4995 ret = GST_STATE_CHANGE_ASYNC;
4996 gst_element_post_message (GST_ELEMENT_CAST (basesink),
4997 gst_message_new_async_start (GST_OBJECT_CAST (basesink),
5002 GST_DEBUG_OBJECT (basesink, "rendered: %" G_GUINT64_FORMAT
5003 ", dropped: %" G_GUINT64_FORMAT, priv->rendered, priv->dropped);
5005 gst_base_sink_reset_qos (basesink);
5006 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
5008 case GST_STATE_CHANGE_PAUSED_TO_READY:
5009 GST_BASE_SINK_PREROLL_LOCK (basesink);
5010 /* start by reseting our position state with the object lock so that the
5011 * position query gets the right idea. We do this before we post the
5012 * messages so that the message handlers pick this up. */
5013 GST_OBJECT_LOCK (basesink);
5014 basesink->have_newsegment = FALSE;
5015 priv->current_sstart = GST_CLOCK_TIME_NONE;
5016 priv->current_sstop = GST_CLOCK_TIME_NONE;
5017 priv->have_latency = FALSE;
5018 if (priv->cached_clock_id) {
5019 gst_clock_id_unref (priv->cached_clock_id);
5020 priv->cached_clock_id = NULL;
5022 GST_OBJECT_UNLOCK (basesink);
5024 gst_base_sink_set_last_buffer (basesink, NULL);
5025 priv->call_preroll = FALSE;
5027 if (!priv->commited) {
5028 if (priv->async_enabled) {
5029 GST_DEBUG_OBJECT (basesink, "PAUSED to READY, posting async-done");
5031 gst_element_post_message (GST_ELEMENT_CAST (basesink),
5032 gst_message_new_state_changed (GST_OBJECT_CAST (basesink),
5033 GST_STATE_PLAYING, GST_STATE_PAUSED, GST_STATE_READY));
5035 gst_element_post_message (GST_ELEMENT_CAST (basesink),
5036 gst_message_new_async_done (GST_OBJECT_CAST (basesink)));
5038 priv->commited = TRUE;
5040 GST_DEBUG_OBJECT (basesink, "PAUSED to READY, don't need_preroll");
5042 GST_BASE_SINK_PREROLL_UNLOCK (basesink);
5044 case GST_STATE_CHANGE_READY_TO_NULL:
5046 if (!bclass->stop (basesink)) {
5047 GST_WARNING_OBJECT (basesink, "failed to stop");
5050 gst_base_sink_set_last_buffer (basesink, NULL);
5051 priv->call_preroll = FALSE;
5062 GST_DEBUG_OBJECT (basesink, "failed to start");
5063 return GST_STATE_CHANGE_FAILURE;
5067 GST_DEBUG_OBJECT (basesink,
5068 "element failed to change states -- activation problem?");
5069 return GST_STATE_CHANGE_FAILURE;