2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wim.taymans@chello.be>
4 * 2005 Wim Taymans <wim@fluendo.com>
6 * gstevent.c: GstEvent subsystem
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
26 * @short_description: Structure describing events that are passed up and down
28 * @see_also: #GstPad, #GstElement
30 * The event class provides factory methods to construct events for sending
31 * and functions to query (parse) received events.
33 * Events are usually created with gst_event_new_*() which takes event-type
34 * specific parameters as arguments.
35 * To send an event application will usually use gst_element_send_event() and
36 * elements will use gst_pad_send_event() or gst_pad_push_event().
37 * The event should be unreffed with gst_event_unref() if it has not been sent.
39 * Events that have been received can be parsed with their respective
40 * gst_event_parse_*() functions. It is valid to pass %NULL for unwanted details.
42 * Events are passed between elements in parallel to the data stream. Some events
43 * are serialized with buffers, others are not. Some events only travel downstream,
44 * others only upstream. Some events can travel both upstream and downstream.
46 * The events are used to signal special conditions in the datastream such as
47 * EOS (end of stream) or the start of a new stream-segment.
48 * Events are also used to flush the pipeline of any pending data.
50 * Most of the event API is used inside plugins. Applications usually only
51 * construct and use seek events.
52 * To do that gst_event_new_seek() is used to create a seek event. It takes
53 * the needed parameters to specify seeking time and mode.
55 * <title>performing a seek on a pipeline</title>
60 * // construct a seek event to play the media from second 2 to 5, flush
61 * // the pipeline to decrease latency.
62 * event = gst_event_new_seek (1.0,
64 * GST_SEEK_FLAG_FLUSH,
65 * GST_SEEK_TYPE_SET, 2 * GST_SECOND,
66 * GST_SEEK_TYPE_SET, 5 * GST_SECOND);
68 * result = gst_element_send_event (pipeline, event);
70 * g_warning ("seek failed");
75 * Last reviewed on 2006-09-6 (0.10.10)
79 #include "gst_private.h"
80 #include <string.h> /* memcpy */
84 #include "gstenumtypes.h"
88 GType _gst_event_type = 0;
94 GstStructure *structure;
97 #define GST_EVENT_STRUCTURE(e) (((GstEventImpl *)(e))->structure)
106 static GstEventQuarks event_quarks[] = {
107 {GST_EVENT_UNKNOWN, "unknown", 0},
108 {GST_EVENT_FLUSH_START, "flush-start", 0},
109 {GST_EVENT_FLUSH_STOP, "flush-stop", 0},
110 {GST_EVENT_EOS, "eos", 0},
111 {GST_EVENT_CAPS, "caps", 0},
112 {GST_EVENT_SEGMENT, "segment", 0},
113 {GST_EVENT_TAG, "tag", 0},
114 {GST_EVENT_BUFFERSIZE, "buffersize", 0},
115 {GST_EVENT_SINK_MESSAGE, "sink-message", 0},
116 {GST_EVENT_QOS, "qos", 0},
117 {GST_EVENT_SEEK, "seek", 0},
118 {GST_EVENT_NAVIGATION, "navigation", 0},
119 {GST_EVENT_LATENCY, "latency", 0},
120 {GST_EVENT_STEP, "step", 0},
121 {GST_EVENT_RECONFIGURE, "reconfigure", 0},
122 {GST_EVENT_CUSTOM_UPSTREAM, "custom-upstream", 0},
123 {GST_EVENT_CUSTOM_DOWNSTREAM, "custom-downstream", 0},
124 {GST_EVENT_CUSTOM_DOWNSTREAM_OOB, "custom-downstream-oob", 0},
125 {GST_EVENT_CUSTOM_BOTH, "custom-both", 0},
126 {GST_EVENT_CUSTOM_BOTH_OOB, "custom-both-oob", 0},
131 GST_DEFINE_MINI_OBJECT_TYPE (GstEvent, gst_event);
134 _priv_gst_event_initialize (void)
138 _gst_event_type = gst_event_get_type ();
140 g_type_class_ref (gst_seek_flags_get_type ());
141 g_type_class_ref (gst_seek_type_get_type ());
143 for (i = 0; event_quarks[i].name; i++) {
144 event_quarks[i].quark = g_quark_from_static_string (event_quarks[i].name);
149 * gst_event_type_get_name:
150 * @type: the event type
152 * Get a printable name for the given event type. Do not modify or free.
154 * Returns: a reference to the static name of the event.
157 gst_event_type_get_name (GstEventType type)
161 for (i = 0; event_quarks[i].name; i++) {
162 if (type == event_quarks[i].type)
163 return event_quarks[i].name;
169 * gst_event_type_to_quark:
170 * @type: the event type
172 * Get the unique quark for the given event type.
174 * Returns: the quark associated with the event type
177 gst_event_type_to_quark (GstEventType type)
181 for (i = 0; event_quarks[i].name; i++) {
182 if (type == event_quarks[i].type)
183 return event_quarks[i].quark;
189 * gst_event_type_get_flags:
190 * @type: a #GstEventType
192 * Gets the #GstEventTypeFlags associated with @type.
194 * Returns: a #GstEventTypeFlags.
197 gst_event_type_get_flags (GstEventType type)
199 GstEventTypeFlags ret;
201 ret = type & ((1 << GST_EVENT_STICKY_SHIFT) - 1);
207 _gst_event_free (GstEvent * event)
211 g_return_if_fail (event != NULL);
212 g_return_if_fail (GST_IS_EVENT (event));
214 GST_CAT_LOG (GST_CAT_EVENT, "freeing event %p type %s", event,
215 GST_EVENT_TYPE_NAME (event));
217 s = GST_EVENT_STRUCTURE (event);
220 gst_structure_set_parent_refcount (s, NULL);
221 gst_structure_free (s);
224 g_slice_free1 (GST_MINI_OBJECT_SIZE (event), event);
227 static void gst_event_init (GstEventImpl * event, gsize size,
231 _gst_event_copy (GstEvent * event)
236 copy = g_slice_new0 (GstEventImpl);
238 gst_event_init (copy, sizeof (GstEventImpl), GST_EVENT_TYPE (event));
240 GST_EVENT_TIMESTAMP (copy) = GST_EVENT_TIMESTAMP (event);
241 GST_EVENT_SEQNUM (copy) = GST_EVENT_SEQNUM (event);
243 s = GST_EVENT_STRUCTURE (event);
245 GST_EVENT_STRUCTURE (copy) = gst_structure_copy (s);
246 gst_structure_set_parent_refcount (GST_EVENT_STRUCTURE (copy),
247 ©->event.mini_object.refcount);
249 return GST_EVENT_CAST (copy);
253 gst_event_init (GstEventImpl * event, gsize size, GstEventType type)
255 gst_mini_object_init (GST_MINI_OBJECT_CAST (event), _gst_event_type, size);
257 event->event.mini_object.copy = (GstMiniObjectCopyFunction) _gst_event_copy;
258 event->event.mini_object.free = (GstMiniObjectFreeFunction) _gst_event_free;
260 GST_EVENT_TYPE (event) = type;
261 GST_EVENT_TIMESTAMP (event) = GST_CLOCK_TIME_NONE;
262 GST_EVENT_SEQNUM (event) = gst_util_seqnum_next ();
266 gst_event_new (GstEventType type)
270 event = g_slice_new0 (GstEventImpl);
272 GST_CAT_DEBUG (GST_CAT_EVENT, "creating new event %p %s %d", event,
273 gst_event_type_get_name (type), type);
275 gst_event_init (event, sizeof (GstEventImpl), type);
277 return GST_EVENT_CAST (event);
281 * gst_event_new_custom:
282 * @type: The type of the new event
283 * @structure: (transfer full): the structure for the event. The event will
284 * take ownership of the structure.
286 * Create a new custom-typed event. This can be used for anything not
287 * handled by other event-specific functions to pass an event to another
290 * Make sure to allocate an event type with the #GST_EVENT_MAKE_TYPE macro,
291 * assigning a free number and filling in the correct direction and
292 * serialization flags.
294 * New custom events can also be created by subclassing the event type if
297 * Returns: (transfer full): the new custom event.
300 gst_event_new_custom (GstEventType type, GstStructure * structure)
304 /* structure must not have a parent */
305 event = gst_event_new (type);
307 if (!gst_structure_set_parent_refcount (structure,
308 &event->mini_object.refcount))
311 GST_EVENT_STRUCTURE (event) = structure;
318 gst_event_unref (event);
319 g_warning ("structure is already owned by another object");
325 * gst_event_get_structure:
326 * @event: The #GstEvent.
328 * Access the structure of the event.
330 * Returns: The structure of the event. The structure is still
331 * owned by the event, which means that you should not free it and
332 * that the pointer becomes invalid when you free the event.
337 gst_event_get_structure (GstEvent * event)
339 g_return_val_if_fail (GST_IS_EVENT (event), NULL);
341 return GST_EVENT_STRUCTURE (event);
345 * gst_event_writable_structure:
346 * @event: The #GstEvent.
348 * Get a writable version of the structure.
350 * Returns: The structure of the event. The structure is still
351 * owned by the event, which means that you should not free it and
352 * that the pointer becomes invalid when you free the event.
353 * This function checks if @event is writable and will never return NULL.
358 gst_event_writable_structure (GstEvent * event)
360 GstStructure *structure;
362 g_return_val_if_fail (GST_IS_EVENT (event), NULL);
363 g_return_val_if_fail (gst_event_is_writable (event), NULL);
365 structure = GST_EVENT_STRUCTURE (event);
367 if (structure == NULL) {
369 gst_structure_new_id_empty (gst_event_type_to_quark (GST_EVENT_TYPE
371 gst_structure_set_parent_refcount (structure, &event->mini_object.refcount);
372 GST_EVENT_STRUCTURE (event) = structure;
378 * gst_event_has_name:
379 * @event: The #GstEvent.
380 * @name: name to check
382 * Checks if @event has the given @name. This function is usually used to
383 * check the name of a custom event.
385 * Returns: %TRUE if @name matches the name of the event structure.
390 gst_event_has_name (GstEvent * event, const gchar * name)
392 g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
394 if (GST_EVENT_STRUCTURE (event) == NULL)
397 return gst_structure_has_name (GST_EVENT_STRUCTURE (event), name);
401 * gst_event_get_seqnum:
402 * @event: A #GstEvent.
404 * Retrieve the sequence number of a event.
406 * Events have ever-incrementing sequence numbers, which may also be set
407 * explicitly via gst_event_set_seqnum(). Sequence numbers are typically used to
408 * indicate that a event corresponds to some other set of events or messages,
409 * for example an EOS event corresponding to a SEEK event. It is considered good
410 * practice to make this correspondence when possible, though it is not
413 * Note that events and messages share the same sequence number incrementor;
414 * two events or messages will never have the same sequence number unless
415 * that correspondence was made explicitly.
417 * Returns: The event's sequence number.
424 gst_event_get_seqnum (GstEvent * event)
426 g_return_val_if_fail (GST_IS_EVENT (event), -1);
428 return GST_EVENT_SEQNUM (event);
432 * gst_event_set_seqnum:
433 * @event: A #GstEvent.
434 * @seqnum: A sequence number.
436 * Set the sequence number of a event.
438 * This function might be called by the creator of a event to indicate that the
439 * event relates to other events or messages. See gst_event_get_seqnum() for
447 gst_event_set_seqnum (GstEvent * event, guint32 seqnum)
449 g_return_if_fail (GST_IS_EVENT (event));
451 GST_EVENT_SEQNUM (event) = seqnum;
454 /* FIXME 0.11: It would be nice to have flush events
455 * that don't reset the running time in the sinks
459 * gst_event_new_flush_start:
461 * Allocate a new flush start event. The flush start event can be sent
462 * upstream and downstream and travels out-of-bounds with the dataflow.
464 * It marks pads as being flushing and will make them return
465 * #GST_FLOW_WRONG_STATE when used for data flow with gst_pad_push(),
466 * gst_pad_chain(), gst_pad_alloc_buffer(), gst_pad_get_range() and
467 * gst_pad_pull_range(). Any event (except a #GST_EVENT_FLUSH_STOP) received
468 * on a flushing pad will return %FALSE immediately.
470 * Elements should unlock any blocking functions and exit their streaming
471 * functions as fast as possible when this event is received.
473 * This event is typically generated after a seek to flush out all queued data
474 * in the pipeline so that the new media is played as soon as possible.
476 * Returns: (transfer full): a new flush start event.
479 gst_event_new_flush_start (void)
481 return gst_event_new (GST_EVENT_FLUSH_START);
485 * gst_event_new_flush_stop:
486 * @reset_time: if time should be reset
488 * Allocate a new flush stop event. The flush stop event can be sent
489 * upstream and downstream and travels serialized with the dataflow.
490 * It is typically sent after sending a FLUSH_START event to make the
491 * pads accept data again.
493 * Elements can process this event synchronized with the dataflow since
494 * the preceeding FLUSH_START event stopped the dataflow.
496 * This event is typically generated to complete a seek and to resume
499 * Returns: (transfer full): a new flush stop event.
502 gst_event_new_flush_stop (gboolean reset_time)
506 GST_CAT_INFO (GST_CAT_EVENT, "creating flush stop %d", reset_time);
508 event = gst_event_new_custom (GST_EVENT_FLUSH_STOP,
509 gst_structure_new_id (GST_QUARK (EVENT_FLUSH_STOP),
510 GST_QUARK (RESET_TIME), G_TYPE_BOOLEAN, reset_time, NULL));
516 * gst_event_parse_flush_stop:
517 * @event: The event to parse
518 * @reset_time: (out): if time should be reset
520 * Parse the FLUSH_STOP event and retrieve the @reset_time member.
523 gst_event_parse_flush_stop (GstEvent * event, gboolean * reset_time)
525 GstStructure *structure;
527 g_return_if_fail (GST_IS_EVENT (event));
528 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_STOP);
530 structure = GST_EVENT_STRUCTURE (event);
531 if (G_LIKELY (reset_time))
533 g_value_get_boolean (gst_structure_id_get_value (structure,
534 GST_QUARK (RESET_TIME)));
540 * Create a new EOS event. The eos event can only travel downstream
541 * synchronized with the buffer flow. Elements that receive the EOS
542 * event on a pad can return #GST_FLOW_UNEXPECTED as a #GstFlowReturn
543 * when data after the EOS event arrives.
545 * The EOS event will travel down to the sink elements in the pipeline
546 * which will then post the #GST_MESSAGE_EOS on the bus after they have
547 * finished playing any buffered data.
549 * When all sinks have posted an EOS message, an EOS message is
550 * forwarded to the application.
552 * The EOS event itself will not cause any state transitions of the pipeline.
554 * Returns: (transfer full): the new EOS event.
557 gst_event_new_eos (void)
559 return gst_event_new (GST_EVENT_EOS);
563 * gst_event_new_caps:
564 * @caps: (transfer none): a #GstCaps
566 * Create a new CAPS event for @caps. The caps event can only travel downstream
567 * synchronized with the buffer flow and contains the format of the buffers
568 * that will follow after the event.
570 * Returns: (transfer full): the new CAPS event.
573 gst_event_new_caps (GstCaps * caps)
577 g_return_val_if_fail (caps != NULL, NULL);
578 g_return_val_if_fail (gst_caps_is_fixed (caps), NULL);
580 GST_CAT_INFO (GST_CAT_EVENT, "creating caps event %" GST_PTR_FORMAT, caps);
582 event = gst_event_new_custom (GST_EVENT_CAPS,
583 gst_structure_new_id (GST_QUARK (EVENT_CAPS),
584 GST_QUARK (CAPS), GST_TYPE_CAPS, caps, NULL));
590 * gst_event_parse_caps:
591 * @event: The event to parse
592 * @caps: (out): A pointer to the caps
594 * Get the caps from @event. The caps remains valid as long as @event remains
598 gst_event_parse_caps (GstEvent * event, GstCaps ** caps)
600 GstStructure *structure;
602 g_return_if_fail (GST_IS_EVENT (event));
603 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_CAPS);
605 structure = GST_EVENT_STRUCTURE (event);
608 g_value_get_boxed (gst_structure_id_get_value (structure,
613 * gst_event_new_segment:
614 * @segment: (transfer none): a #GstSegment
616 * Create a new SEGMENT event for @segment. The segment event can only travel
617 * downstream synchronized with the buffer flow and contains timing information
618 * and playback properties for the buffers that will follow.
620 * The newsegment event marks the range of buffers to be processed. All
621 * data not within the segment range is not to be processed. This can be
622 * used intelligently by plugins to apply more efficient methods of skipping
623 * unneeded data. The valid range is expressed with the @start and @stop
626 * The time value of the segment is used in conjunction with the start
627 * value to convert the buffer timestamps into the stream time. This is
628 * usually done in sinks to report the current stream_time.
629 * @time represents the stream_time of a buffer carrying a timestamp of
630 * @start. @time cannot be -1.
632 * @start cannot be -1, @stop can be -1. If there
633 * is a valid @stop given, it must be greater or equal the @start, including
634 * when the indicated playback @rate is < 0.
636 * The @applied_rate value provides information about any rate adjustment that
637 * has already been made to the timestamps and content on the buffers of the
638 * stream. (@rate * @applied_rate) should always equal the rate that has been
639 * requested for playback. For example, if an element has an input segment
640 * with intended playback @rate of 2.0 and applied_rate of 1.0, it can adjust
641 * incoming timestamps and buffer content by half and output a newsegment event
642 * with @rate of 1.0 and @applied_rate of 2.0
644 * After a newsegment event, the buffer stream time is calculated with:
646 * time + (TIMESTAMP(buf) - start) * ABS (rate * applied_rate)
648 * Returns: (transfer full): the new SEGMENT event.
651 gst_event_new_segment (const GstSegment * segment)
655 g_return_val_if_fail (segment != NULL, NULL);
657 GST_CAT_INFO (GST_CAT_EVENT, "creating segment event %" GST_SEGMENT_FORMAT,
660 event = gst_event_new_custom (GST_EVENT_SEGMENT,
661 gst_structure_new_id (GST_QUARK (EVENT_SEGMENT),
662 GST_QUARK (SEGMENT), GST_TYPE_SEGMENT, segment, NULL));
668 * gst_event_parse_segment:
669 * @event: The event to parse
670 * @segment: (out) (transfer none): a pointer to a #GstSegment
672 * Parses a segment @event and stores the result in the given @segment location.
673 * @segment remains valid only until the @event is freed. Don't modify the segment
674 * and make a copy if you want to modify it or store it for later use.
677 gst_event_parse_segment (GstEvent * event, const GstSegment ** segment)
679 GstStructure *structure;
681 g_return_if_fail (GST_IS_EVENT (event));
682 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
685 structure = GST_EVENT_STRUCTURE (event);
686 *segment = g_value_get_boxed (gst_structure_id_get_value (structure,
687 GST_QUARK (SEGMENT)));
692 * gst_event_copy_segment:
693 * @event: The event to parse
694 * @segment: a pointer to a #GstSegment
696 * Parses a segment @event and copies the #GstSegment into the location
700 gst_event_copy_segment (GstEvent * event, GstSegment * segment)
702 const GstSegment *src;
704 g_return_if_fail (GST_IS_EVENT (event));
705 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
708 gst_event_parse_segment (event, &src);
709 gst_segment_copy_into (src, segment);
715 * @taglist: (transfer full): metadata list. The event will take ownership
718 * Generates a metadata tag event from the given @taglist.
720 * Returns: (transfer full): a new #GstEvent
723 gst_event_new_tag (GstTagList * taglist)
725 g_return_val_if_fail (taglist != NULL, NULL);
727 return gst_event_new_custom (GST_EVENT_TAG, (GstStructure *) taglist);
731 * gst_event_parse_tag:
732 * @event: a tag event
733 * @taglist: (out) (transfer none): pointer to metadata list
735 * Parses a tag @event and stores the results in the given @taglist location.
736 * No reference to the taglist will be returned, it remains valid only until
737 * the @event is freed. Don't modify or free the taglist, make a copy if you
738 * want to modify it or store it for later use.
741 gst_event_parse_tag (GstEvent * event, GstTagList ** taglist)
743 g_return_if_fail (GST_IS_EVENT (event));
744 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TAG);
747 *taglist = (GstTagList *) GST_EVENT_STRUCTURE (event);
750 /* buffersize event */
752 * gst_event_new_buffer_size:
753 * @format: buffer format
754 * @minsize: minimum buffer size
755 * @maxsize: maximum buffer size
756 * @async: thread behavior
758 * Create a new buffersize event. The event is sent downstream and notifies
759 * elements that they should provide a buffer of the specified dimensions.
761 * When the @async flag is set, a thread boundary is preferred.
763 * Returns: (transfer full): a new #GstEvent
766 gst_event_new_buffer_size (GstFormat format, gint64 minsize,
767 gint64 maxsize, gboolean async)
770 GstStructure *structure;
772 GST_CAT_INFO (GST_CAT_EVENT,
773 "creating buffersize format %s, minsize %" G_GINT64_FORMAT
774 ", maxsize %" G_GINT64_FORMAT ", async %d", gst_format_get_name (format),
775 minsize, maxsize, async);
777 structure = gst_structure_new_id (GST_QUARK (EVENT_BUFFER_SIZE),
778 GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
779 GST_QUARK (MINSIZE), G_TYPE_INT64, minsize,
780 GST_QUARK (MAXSIZE), G_TYPE_INT64, maxsize,
781 GST_QUARK (ASYNC), G_TYPE_BOOLEAN, async, NULL);
782 event = gst_event_new_custom (GST_EVENT_BUFFERSIZE, structure);
788 * gst_event_parse_buffer_size:
789 * @event: The event to query
790 * @format: (out): A pointer to store the format in
791 * @minsize: (out): A pointer to store the minsize in
792 * @maxsize: (out): A pointer to store the maxsize in
793 * @async: (out): A pointer to store the async-flag in
795 * Get the format, minsize, maxsize and async-flag in the buffersize event.
798 gst_event_parse_buffer_size (GstEvent * event, GstFormat * format,
799 gint64 * minsize, gint64 * maxsize, gboolean * async)
801 const GstStructure *structure;
803 g_return_if_fail (GST_IS_EVENT (event));
804 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_BUFFERSIZE);
806 structure = GST_EVENT_STRUCTURE (event);
808 *format = (GstFormat)
809 g_value_get_enum (gst_structure_id_get_value (structure,
810 GST_QUARK (FORMAT)));
813 g_value_get_int64 (gst_structure_id_get_value (structure,
814 GST_QUARK (MINSIZE)));
817 g_value_get_int64 (gst_structure_id_get_value (structure,
818 GST_QUARK (MAXSIZE)));
821 g_value_get_boolean (gst_structure_id_get_value (structure,
827 * @type: the QoS type
828 * @proportion: the proportion of the qos message
829 * @diff: The time difference of the last Clock sync
830 * @timestamp: The timestamp of the buffer
832 * Allocate a new qos event with the given values.
833 * The QOS event is generated in an element that wants an upstream
834 * element to either reduce or increase its rate because of
835 * high/low CPU load or other resource usage such as network performance or
836 * throttling. Typically sinks generate these events for each buffer
839 * @type indicates the reason for the QoS event. #GST_QOS_TYPE_OVERFLOW is
840 * used when a buffer arrived in time or when the sink cannot keep up with
841 * the upstream datarate. #GST_QOS_TYPE_UNDERFLOW is when the sink is not
842 * receiving buffers fast enough and thus has to drop late buffers.
843 * #GST_QOS_TYPE_THROTTLE is used when the datarate is artificially limited
844 * by the application, for example to reduce power consumption.
846 * @proportion indicates the real-time performance of the streaming in the
847 * element that generated the QoS event (usually the sink). The value is
848 * generally computed based on more long term statistics about the streams
849 * timestamps compared to the clock.
850 * A value < 1.0 indicates that the upstream element is producing data faster
851 * than real-time. A value > 1.0 indicates that the upstream element is not
852 * producing data fast enough. 1.0 is the ideal @proportion value. The
853 * proportion value can safely be used to lower or increase the quality of
856 * @diff is the difference against the clock in running time of the last
857 * buffer that caused the element to generate the QOS event. A negative value
858 * means that the buffer with @timestamp arrived in time. A positive value
859 * indicates how late the buffer with @timestamp was. When throttling is
860 * enabled, @diff will be set to the requested throttling interval.
862 * @timestamp is the timestamp of the last buffer that cause the element
863 * to generate the QOS event. It is expressed in running time and thus an ever
866 * The upstream element can use the @diff and @timestamp values to decide
867 * whether to process more buffers. For possitive @diff, all buffers with
868 * timestamp <= @timestamp + @diff will certainly arrive late in the sink
869 * as well. A (negative) @diff value so that @timestamp + @diff would yield a
870 * result smaller than 0 is not allowed.
872 * The application can use general event probes to intercept the QoS
873 * event and implement custom application specific QoS handling.
875 * Returns: (transfer full): a new QOS event.
878 gst_event_new_qos (GstQOSType type, gdouble proportion,
879 GstClockTimeDiff diff, GstClockTime timestamp)
882 GstStructure *structure;
884 /* diff must be positive or timestamp + diff must be positive */
885 g_return_val_if_fail (diff >= 0 || -diff <= timestamp, NULL);
887 GST_CAT_LOG (GST_CAT_EVENT,
888 "creating qos type %d, proportion %lf, diff %" G_GINT64_FORMAT
889 ", timestamp %" GST_TIME_FORMAT, type, proportion,
890 diff, GST_TIME_ARGS (timestamp));
892 structure = gst_structure_new_id (GST_QUARK (EVENT_QOS),
893 GST_QUARK (TYPE), GST_TYPE_QOS_TYPE, type,
894 GST_QUARK (PROPORTION), G_TYPE_DOUBLE, proportion,
895 GST_QUARK (DIFF), G_TYPE_INT64, diff,
896 GST_QUARK (TIMESTAMP), G_TYPE_UINT64, timestamp, NULL);
897 event = gst_event_new_custom (GST_EVENT_QOS, structure);
903 * gst_event_parse_qos:
904 * @event: The event to query
905 * @type: (out): A pointer to store the QoS type in
906 * @proportion: (out): A pointer to store the proportion in
907 * @diff: (out): A pointer to store the diff in
908 * @timestamp: (out): A pointer to store the timestamp in
910 * Get the type, proportion, diff and timestamp in the qos event. See
911 * gst_event_new_qos() for more information about the different QoS values.
914 gst_event_parse_qos (GstEvent * event, GstQOSType * type,
915 gdouble * proportion, GstClockTimeDiff * diff, GstClockTime * timestamp)
917 const GstStructure *structure;
919 g_return_if_fail (GST_IS_EVENT (event));
920 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_QOS);
922 structure = GST_EVENT_STRUCTURE (event);
925 g_value_get_enum (gst_structure_id_get_value (structure,
929 g_value_get_double (gst_structure_id_get_value (structure,
930 GST_QUARK (PROPORTION)));
933 g_value_get_int64 (gst_structure_id_get_value (structure,
937 g_value_get_uint64 (gst_structure_id_get_value (structure,
938 GST_QUARK (TIMESTAMP)));
942 * gst_event_new_seek:
943 * @rate: The new playback rate
944 * @format: The format of the seek values
945 * @flags: The optional seek flags
946 * @start_type: The type and flags for the new start position
947 * @start: The value of the new start position
948 * @stop_type: The type and flags for the new stop position
949 * @stop: The value of the new stop position
951 * Allocate a new seek event with the given parameters.
953 * The seek event configures playback of the pipeline between @start to @stop
954 * at the speed given in @rate, also called a playback segment.
955 * The @start and @stop values are expressed in @format.
957 * A @rate of 1.0 means normal playback rate, 2.0 means double speed.
958 * Negatives values means backwards playback. A value of 0.0 for the
959 * rate is not allowed and should be accomplished instead by PAUSING the
962 * A pipeline has a default playback segment configured with a start
963 * position of 0, a stop position of -1 and a rate of 1.0. The currently
964 * configured playback segment can be queried with #GST_QUERY_SEGMENT.
966 * @start_type and @stop_type specify how to adjust the currently configured
967 * start and stop fields in playback segment. Adjustments can be made relative
968 * or absolute to the last configured values. A type of #GST_SEEK_TYPE_NONE
969 * means that the position should not be updated.
971 * When the rate is positive and @start has been updated, playback will start
972 * from the newly configured start position.
974 * For negative rates, playback will start from the newly configured stop
975 * position (if any). If the stop position if updated, it must be different from
976 * -1 for negative rates.
978 * It is not possible to seek relative to the current playback position, to do
979 * this, PAUSE the pipeline, query the current playback position with
980 * #GST_QUERY_POSITION and update the playback segment current position with a
981 * #GST_SEEK_TYPE_SET to the desired position.
983 * Returns: (transfer full): a new seek event.
986 gst_event_new_seek (gdouble rate, GstFormat format, GstSeekFlags flags,
987 GstSeekType start_type, gint64 start, GstSeekType stop_type, gint64 stop)
990 GstStructure *structure;
992 g_return_val_if_fail (rate != 0.0, NULL);
994 if (format == GST_FORMAT_TIME) {
995 GST_CAT_INFO (GST_CAT_EVENT,
996 "creating seek rate %lf, format TIME, flags %d, "
997 "start_type %d, start %" GST_TIME_FORMAT ", "
998 "stop_type %d, stop %" GST_TIME_FORMAT,
999 rate, flags, start_type, GST_TIME_ARGS (start),
1000 stop_type, GST_TIME_ARGS (stop));
1002 GST_CAT_INFO (GST_CAT_EVENT,
1003 "creating seek rate %lf, format %s, flags %d, "
1004 "start_type %d, start %" G_GINT64_FORMAT ", "
1005 "stop_type %d, stop %" G_GINT64_FORMAT,
1006 rate, gst_format_get_name (format), flags, start_type, start, stop_type,
1010 structure = gst_structure_new_id (GST_QUARK (EVENT_SEEK),
1011 GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1012 GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1013 GST_QUARK (FLAGS), GST_TYPE_SEEK_FLAGS, flags,
1014 GST_QUARK (CUR_TYPE), GST_TYPE_SEEK_TYPE, start_type,
1015 GST_QUARK (CUR), G_TYPE_INT64, start,
1016 GST_QUARK (STOP_TYPE), GST_TYPE_SEEK_TYPE, stop_type,
1017 GST_QUARK (STOP), G_TYPE_INT64, stop, NULL);
1018 event = gst_event_new_custom (GST_EVENT_SEEK, structure);
1024 * gst_event_parse_seek:
1025 * @event: a seek event
1026 * @rate: (out): result location for the rate
1027 * @format: (out): result location for the stream format
1028 * @flags: (out): result location for the #GstSeekFlags
1029 * @start_type: (out): result location for the #GstSeekType of the start position
1030 * @start: (out): result location for the start postion expressed in @format
1031 * @stop_type: (out): result location for the #GstSeekType of the stop position
1032 * @stop: (out): result location for the stop postion expressed in @format
1034 * Parses a seek @event and stores the results in the given result locations.
1037 gst_event_parse_seek (GstEvent * event, gdouble * rate,
1038 GstFormat * format, GstSeekFlags * flags, GstSeekType * start_type,
1039 gint64 * start, GstSeekType * stop_type, gint64 * stop)
1041 const GstStructure *structure;
1043 g_return_if_fail (GST_IS_EVENT (event));
1044 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEEK);
1046 structure = GST_EVENT_STRUCTURE (event);
1049 g_value_get_double (gst_structure_id_get_value (structure,
1052 *format = (GstFormat)
1053 g_value_get_enum (gst_structure_id_get_value (structure,
1054 GST_QUARK (FORMAT)));
1056 *flags = (GstSeekFlags)
1057 g_value_get_flags (gst_structure_id_get_value (structure,
1058 GST_QUARK (FLAGS)));
1060 *start_type = (GstSeekType)
1061 g_value_get_enum (gst_structure_id_get_value (structure,
1062 GST_QUARK (CUR_TYPE)));
1065 g_value_get_int64 (gst_structure_id_get_value (structure,
1068 *stop_type = (GstSeekType)
1069 g_value_get_enum (gst_structure_id_get_value (structure,
1070 GST_QUARK (STOP_TYPE)));
1073 g_value_get_int64 (gst_structure_id_get_value (structure,
1078 * gst_event_new_navigation:
1079 * @structure: (transfer full): description of the event. The event will take
1080 * ownership of the structure.
1082 * Create a new navigation event from the given description.
1084 * Returns: (transfer full): a new #GstEvent
1087 gst_event_new_navigation (GstStructure * structure)
1089 g_return_val_if_fail (structure != NULL, NULL);
1091 return gst_event_new_custom (GST_EVENT_NAVIGATION, structure);
1095 * gst_event_new_latency:
1096 * @latency: the new latency value
1098 * Create a new latency event. The event is sent upstream from the sinks and
1099 * notifies elements that they should add an additional @latency to the
1100 * running time before synchronising against the clock.
1102 * The latency is mostly used in live sinks and is always expressed in
1105 * Returns: (transfer full): a new #GstEvent
1110 gst_event_new_latency (GstClockTime latency)
1113 GstStructure *structure;
1115 GST_CAT_INFO (GST_CAT_EVENT,
1116 "creating latency event %" GST_TIME_FORMAT, GST_TIME_ARGS (latency));
1118 structure = gst_structure_new_id (GST_QUARK (EVENT_LATENCY),
1119 GST_QUARK (LATENCY), G_TYPE_UINT64, latency, NULL);
1120 event = gst_event_new_custom (GST_EVENT_LATENCY, structure);
1126 * gst_event_parse_latency:
1127 * @event: The event to query
1128 * @latency: (out): A pointer to store the latency in.
1130 * Get the latency in the latency event.
1135 gst_event_parse_latency (GstEvent * event, GstClockTime * latency)
1137 g_return_if_fail (GST_IS_EVENT (event));
1138 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_LATENCY);
1142 g_value_get_uint64 (gst_structure_id_get_value (GST_EVENT_STRUCTURE
1143 (event), GST_QUARK (LATENCY)));
1147 * gst_event_new_step:
1148 * @format: the format of @amount
1149 * @amount: the amount of data to step
1150 * @rate: the step rate
1151 * @flush: flushing steps
1152 * @intermediate: intermediate steps
1154 * Create a new step event. The purpose of the step event is to instruct a sink
1155 * to skip @amount (expressed in @format) of media. It can be used to implement
1156 * stepping through the video frame by frame or for doing fast trick modes.
1158 * A rate of <= 0.0 is not allowed. Pause the pipeline, for the effect of rate
1159 * = 0.0 or first reverse the direction of playback using a seek event to get
1160 * the same effect as rate < 0.0.
1162 * The @flush flag will clear any pending data in the pipeline before starting
1163 * the step operation.
1165 * The @intermediate flag instructs the pipeline that this step operation is
1166 * part of a larger step operation.
1168 * Returns: (transfer full): a new #GstEvent
1173 gst_event_new_step (GstFormat format, guint64 amount, gdouble rate,
1174 gboolean flush, gboolean intermediate)
1177 GstStructure *structure;
1179 g_return_val_if_fail (rate > 0.0, NULL);
1181 GST_CAT_INFO (GST_CAT_EVENT, "creating step event");
1183 structure = gst_structure_new_id (GST_QUARK (EVENT_STEP),
1184 GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1185 GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
1186 GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1187 GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
1188 GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate, NULL);
1189 event = gst_event_new_custom (GST_EVENT_STEP, structure);
1195 * gst_event_parse_step:
1196 * @event: The event to query
1197 * @format: (out) (allow-none): a pointer to store the format in
1198 * @amount: (out) (allow-none): a pointer to store the amount in
1199 * @rate: (out) (allow-none): a pointer to store the rate in
1200 * @flush: (out) (allow-none): a pointer to store the flush boolean in
1201 * @intermediate: (out) (allow-none): a pointer to store the intermediate
1204 * Parse the step event.
1209 gst_event_parse_step (GstEvent * event, GstFormat * format, guint64 * amount,
1210 gdouble * rate, gboolean * flush, gboolean * intermediate)
1212 const GstStructure *structure;
1214 g_return_if_fail (GST_IS_EVENT (event));
1215 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STEP);
1217 structure = GST_EVENT_STRUCTURE (event);
1220 (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
1221 GST_QUARK (FORMAT)));
1223 *amount = g_value_get_uint64 (gst_structure_id_get_value (structure,
1224 GST_QUARK (AMOUNT)));
1226 *rate = g_value_get_double (gst_structure_id_get_value (structure,
1229 *flush = g_value_get_boolean (gst_structure_id_get_value (structure,
1230 GST_QUARK (FLUSH)));
1232 *intermediate = g_value_get_boolean (gst_structure_id_get_value (structure,
1233 GST_QUARK (INTERMEDIATE)));
1237 * gst_event_new_reconfigure:
1239 * Create a new reconfigure event. The purpose of the reconfingure event is
1240 * to travel upstream and make elements renegotiate their caps or reconfigure
1241 * their buffer pools. This is useful when changing properties on elements
1242 * or changing the topology of the pipeline.
1244 * Returns: (transfer full): a new #GstEvent
1249 gst_event_new_reconfigure (void)
1253 GST_CAT_INFO (GST_CAT_EVENT, "creating reconfigure event");
1255 event = gst_event_new_custom (GST_EVENT_RECONFIGURE, NULL);
1261 * gst_event_new_sink_message:
1262 * @msg: (transfer none): the #GstMessage to be posted
1264 * Create a new sink-message event. The purpose of the sink-message event is
1265 * to instruct a sink to post the message contained in the event synchronized
1268 * Returns: (transfer full): a new #GstEvent
1272 /* FIXME 0.11: take ownership of msg for consistency? */
1274 gst_event_new_sink_message (GstMessage * msg)
1277 GstStructure *structure;
1279 g_return_val_if_fail (msg != NULL, NULL);
1281 GST_CAT_INFO (GST_CAT_EVENT, "creating sink-message event");
1283 structure = gst_structure_new_id (GST_QUARK (EVENT_SINK_MESSAGE),
1284 GST_QUARK (MESSAGE), GST_TYPE_MESSAGE, msg, NULL);
1285 event = gst_event_new_custom (GST_EVENT_SINK_MESSAGE, structure);
1291 * gst_event_parse_sink_message:
1292 * @event: The event to query
1293 * @msg: (out) (transfer full): a pointer to store the #GstMessage in.
1295 * Parse the sink-message event. Unref @msg after usage.
1300 gst_event_parse_sink_message (GstEvent * event, GstMessage ** msg)
1302 const GstStructure *structure;
1304 g_return_if_fail (GST_IS_EVENT (event));
1305 g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SINK_MESSAGE);
1307 structure = GST_EVENT_STRUCTURE (event);
1310 GST_MESSAGE (g_value_dup_boxed (gst_structure_id_get_value
1311 (structure, GST_QUARK (MESSAGE))));