Port gtk-doc comments to their equivalent markdown syntax
[platform/upstream/gstreamer.git] / gst / gstevent.c
1 /* GStreamer
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>
5  *
6  * gstevent.c: GstEvent subsystem
7  *
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.
12  *
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.
17  *
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., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 /**
25  * SECTION:gstevent
26  * @title: GstEvent
27  * @short_description: Structure describing events that are passed up and down
28  *                     a pipeline
29  * @see_also: #GstPad, #GstElement
30  *
31  * The event class provides factory methods to construct events for sending
32  * and functions to query (parse) received events.
33  *
34  * Events are usually created with gst_event_new_*() which takes event-type
35  * specific parameters as arguments.
36  * To send an event application will usually use gst_element_send_event() and
37  * elements will use gst_pad_send_event() or gst_pad_push_event().
38  * The event should be unreffed with gst_event_unref() if it has not been sent.
39  *
40  * Events that have been received can be parsed with their respective
41  * gst_event_parse_*() functions. It is valid to pass %NULL for unwanted details.
42  *
43  * Events are passed between elements in parallel to the data stream. Some events
44  * are serialized with buffers, others are not. Some events only travel downstream,
45  * others only upstream. Some events can travel both upstream and downstream.
46  *
47  * The events are used to signal special conditions in the datastream such as
48  * EOS (end of stream) or the start of a new stream-segment.
49  * Events are also used to flush the pipeline of any pending data.
50  *
51  * Most of the event API is used inside plugins. Applications usually only
52  * construct and use seek events.
53  * To do that gst_event_new_seek() is used to create a seek event. It takes
54  * the needed parameters to specify seeking time and mode.
55  * |[<!-- language="C" -->
56  *   GstEvent *event;
57  *   gboolean result;
58  *   ...
59  *   // construct a seek event to play the media from second 2 to 5, flush
60  *   // the pipeline to decrease latency.
61  *   event = gst_event_new_seek (1.0,
62  *      GST_FORMAT_TIME,
63  *      GST_SEEK_FLAG_FLUSH,
64  *      GST_SEEK_TYPE_SET, 2 * GST_SECOND,
65  *      GST_SEEK_TYPE_SET, 5 * GST_SECOND);
66  *   ...
67  *   result = gst_element_send_event (pipeline, event);
68  *   if (!result)
69  *     g_warning ("seek failed");
70  *   ...
71  * ]|
72  */
73
74
75 #include "gst_private.h"
76 #include <string.h>             /* memcpy */
77
78 #include "gstinfo.h"
79 #include "gstevent.h"
80 #include "gstenumtypes.h"
81 #include "gstutils.h"
82 #include "gstquark.h"
83 #include "gstvalue.h"
84
85 GType _gst_event_type = 0;
86
87 typedef struct
88 {
89   GstEvent event;
90
91   GstStructure *structure;
92   gint64 running_time_offset;
93 } GstEventImpl;
94
95 #define GST_EVENT_STRUCTURE(e)  (((GstEventImpl *)(e))->structure)
96
97 typedef struct
98 {
99   const gint type;
100   const gchar *name;
101   GQuark quark;
102 } GstEventQuarks;
103
104 static GstEventQuarks event_quarks[] = {
105   {GST_EVENT_UNKNOWN, "unknown", 0},
106   {GST_EVENT_FLUSH_START, "flush-start", 0},
107   {GST_EVENT_FLUSH_STOP, "flush-stop", 0},
108   {GST_EVENT_SELECT_STREAMS, "select-streams", 0},
109   {GST_EVENT_STREAM_START, "stream-start", 0},
110   {GST_EVENT_STREAM_COLLECTION, "stream-collection", 0},
111   {GST_EVENT_CAPS, "caps", 0},
112   {GST_EVENT_SEGMENT, "segment", 0},
113   {GST_EVENT_TAG, "tag", 0},
114   {GST_EVENT_TOC, "toc", 0},
115   {GST_EVENT_PROTECTION, "protection", 0},
116   {GST_EVENT_BUFFERSIZE, "buffersize", 0},
117   {GST_EVENT_SINK_MESSAGE, "sink-message", 0},
118   {GST_EVENT_EOS, "eos", 0},
119   {GST_EVENT_SEGMENT_DONE, "segment-done", 0},
120   {GST_EVENT_GAP, "gap", 0},
121   {GST_EVENT_QOS, "qos", 0},
122   {GST_EVENT_SEEK, "seek", 0},
123   {GST_EVENT_NAVIGATION, "navigation", 0},
124   {GST_EVENT_LATENCY, "latency", 0},
125   {GST_EVENT_STEP, "step", 0},
126   {GST_EVENT_RECONFIGURE, "reconfigure", 0},
127   {GST_EVENT_TOC_SELECT, "toc-select", 0},
128   {GST_EVENT_CUSTOM_UPSTREAM, "custom-upstream", 0},
129   {GST_EVENT_CUSTOM_DOWNSTREAM, "custom-downstream", 0},
130   {GST_EVENT_CUSTOM_DOWNSTREAM_OOB, "custom-downstream-oob", 0},
131   {GST_EVENT_CUSTOM_DOWNSTREAM_STICKY, "custom-downstream-sticky", 0},
132   {GST_EVENT_CUSTOM_BOTH, "custom-both", 0},
133   {GST_EVENT_CUSTOM_BOTH_OOB, "custom-both-oob", 0},
134   {GST_EVENT_STREAM_GROUP_DONE, "stream-group-done", 0},
135
136   {0, NULL, 0}
137 };
138
139 GST_DEFINE_MINI_OBJECT_TYPE (GstEvent, gst_event);
140
141 void
142 _priv_gst_event_initialize (void)
143 {
144   gint i;
145
146   _gst_event_type = gst_event_get_type ();
147
148   g_type_class_ref (gst_seek_flags_get_type ());
149   g_type_class_ref (gst_seek_type_get_type ());
150
151   for (i = 0; event_quarks[i].name; i++) {
152     event_quarks[i].quark = g_quark_from_static_string (event_quarks[i].name);
153   }
154 }
155
156 /**
157  * gst_event_type_get_name:
158  * @type: the event type
159  *
160  * Get a printable name for the given event type. Do not modify or free.
161  *
162  * Returns: a reference to the static name of the event.
163  */
164 const gchar *
165 gst_event_type_get_name (GstEventType type)
166 {
167   gint i;
168
169   for (i = 0; event_quarks[i].name; i++) {
170     if (type == event_quarks[i].type)
171       return event_quarks[i].name;
172   }
173   return "unknown";
174 }
175
176 /**
177  * gst_event_type_to_quark:
178  * @type: the event type
179  *
180  * Get the unique quark for the given event type.
181  *
182  * Returns: the quark associated with the event type
183  */
184 GQuark
185 gst_event_type_to_quark (GstEventType type)
186 {
187   gint i;
188
189   for (i = 0; event_quarks[i].name; i++) {
190     if (type == event_quarks[i].type)
191       return event_quarks[i].quark;
192   }
193   return 0;
194 }
195
196 /**
197  * gst_event_type_get_flags:
198  * @type: a #GstEventType
199  *
200  * Gets the #GstEventTypeFlags associated with @type.
201  *
202  * Returns: a #GstEventTypeFlags.
203  */
204 GstEventTypeFlags
205 gst_event_type_get_flags (GstEventType type)
206 {
207   GstEventTypeFlags ret;
208
209   ret = type & ((1 << GST_EVENT_NUM_SHIFT) - 1);
210
211   return ret;
212 }
213
214 static void
215 _gst_event_free (GstEvent * event)
216 {
217   GstStructure *s;
218
219   g_return_if_fail (event != NULL);
220   g_return_if_fail (GST_IS_EVENT (event));
221
222   GST_CAT_LOG (GST_CAT_EVENT, "freeing event %p type %s", event,
223       GST_EVENT_TYPE_NAME (event));
224
225   s = GST_EVENT_STRUCTURE (event);
226
227   if (s) {
228     gst_structure_set_parent_refcount (s, NULL);
229     gst_structure_free (s);
230   }
231
232   g_slice_free1 (sizeof (GstEventImpl), event);
233 }
234
235 static void gst_event_init (GstEventImpl * event, GstEventType type);
236
237 static GstEvent *
238 _gst_event_copy (GstEvent * event)
239 {
240   GstEventImpl *copy;
241   GstStructure *s;
242
243   copy = g_slice_new0 (GstEventImpl);
244
245   gst_event_init (copy, GST_EVENT_TYPE (event));
246
247   GST_EVENT_TIMESTAMP (copy) = GST_EVENT_TIMESTAMP (event);
248   GST_EVENT_SEQNUM (copy) = GST_EVENT_SEQNUM (event);
249
250   s = GST_EVENT_STRUCTURE (event);
251   if (s) {
252     GST_EVENT_STRUCTURE (copy) = gst_structure_copy (s);
253     gst_structure_set_parent_refcount (GST_EVENT_STRUCTURE (copy),
254         &copy->event.mini_object.refcount);
255   } else {
256     GST_EVENT_STRUCTURE (copy) = NULL;
257   }
258
259   ((GstEventImpl *) copy)->running_time_offset =
260       ((GstEventImpl *) event)->running_time_offset;
261
262   return GST_EVENT_CAST (copy);
263 }
264
265 static void
266 gst_event_init (GstEventImpl * event, GstEventType type)
267 {
268   gst_mini_object_init (GST_MINI_OBJECT_CAST (event), 0, _gst_event_type,
269       (GstMiniObjectCopyFunction) _gst_event_copy, NULL,
270       (GstMiniObjectFreeFunction) _gst_event_free);
271
272   GST_EVENT_TYPE (event) = type;
273   GST_EVENT_TIMESTAMP (event) = GST_CLOCK_TIME_NONE;
274   GST_EVENT_SEQNUM (event) = gst_util_seqnum_next ();
275   event->running_time_offset = 0;
276 }
277
278
279 /**
280  * gst_event_new_custom:
281  * @type: The type of the new event
282  * @structure: (transfer full): the structure for the event. The event will
283  *     take ownership of the structure.
284  *
285  * Create a new custom-typed event. This can be used for anything not
286  * handled by other event-specific functions to pass an event to another
287  * element.
288  *
289  * Make sure to allocate an event type with the #GST_EVENT_MAKE_TYPE macro,
290  * assigning a free number and filling in the correct direction and
291  * serialization flags.
292  *
293  * New custom events can also be created by subclassing the event type if
294  * needed.
295  *
296  * Returns: (transfer full): the new custom event.
297  */
298 GstEvent *
299 gst_event_new_custom (GstEventType type, GstStructure * structure)
300 {
301   GstEventImpl *event;
302
303   event = g_slice_new0 (GstEventImpl);
304
305   GST_CAT_DEBUG (GST_CAT_EVENT, "creating new event %p %s %d", event,
306       gst_event_type_get_name (type), type);
307
308   if (structure) {
309     /* structure must not have a parent */
310     if (!gst_structure_set_parent_refcount (structure,
311             &event->event.mini_object.refcount))
312       goto had_parent;
313
314   }
315   gst_event_init (event, type);
316
317   GST_EVENT_STRUCTURE (event) = structure;
318
319   return GST_EVENT_CAST (event);
320
321   /* ERRORS */
322 had_parent:
323   {
324     g_slice_free1 (sizeof (GstEventImpl), event);
325     g_warning ("structure is already owned by another object");
326     return NULL;
327   }
328 }
329
330 /**
331  * gst_event_get_structure:
332  * @event: The #GstEvent.
333  *
334  * Access the structure of the event.
335  *
336  * Returns: The structure of the event. The structure is still
337  * owned by the event, which means that you should not free it and
338  * that the pointer becomes invalid when you free the event.
339  *
340  * MT safe.
341  */
342 const GstStructure *
343 gst_event_get_structure (GstEvent * event)
344 {
345   g_return_val_if_fail (GST_IS_EVENT (event), NULL);
346
347   return GST_EVENT_STRUCTURE (event);
348 }
349
350 /**
351  * gst_event_writable_structure:
352  * @event: The #GstEvent.
353  *
354  * Get a writable version of the structure.
355  *
356  * Returns: (transfer none): The structure of the event. The structure
357  * is still owned by the event, which means that you should not free
358  * it and that the pointer becomes invalid when you free the event.
359  * This function checks if @event is writable and will never return
360  * %NULL.
361  *
362  * MT safe.
363  */
364 GstStructure *
365 gst_event_writable_structure (GstEvent * event)
366 {
367   GstStructure *structure;
368
369   g_return_val_if_fail (GST_IS_EVENT (event), NULL);
370   g_return_val_if_fail (gst_event_is_writable (event), NULL);
371
372   structure = GST_EVENT_STRUCTURE (event);
373
374   if (structure == NULL) {
375     structure =
376         gst_structure_new_id_empty (gst_event_type_to_quark (GST_EVENT_TYPE
377             (event)));
378     gst_structure_set_parent_refcount (structure, &event->mini_object.refcount);
379     GST_EVENT_STRUCTURE (event) = structure;
380   }
381   return structure;
382 }
383
384 /**
385  * gst_event_has_name:
386  * @event: The #GstEvent.
387  * @name: name to check
388  *
389  * Checks if @event has the given @name. This function is usually used to
390  * check the name of a custom event.
391  *
392  * Returns: %TRUE if @name matches the name of the event structure.
393  */
394 gboolean
395 gst_event_has_name (GstEvent * event, const gchar * name)
396 {
397   g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
398
399   if (GST_EVENT_STRUCTURE (event) == NULL)
400     return FALSE;
401
402   return gst_structure_has_name (GST_EVENT_STRUCTURE (event), name);
403 }
404
405 /**
406  * gst_event_get_seqnum:
407  * @event: A #GstEvent.
408  *
409  * Retrieve the sequence number of a event.
410  *
411  * Events have ever-incrementing sequence numbers, which may also be set
412  * explicitly via gst_event_set_seqnum(). Sequence numbers are typically used to
413  * indicate that a event corresponds to some other set of events or messages,
414  * for example an EOS event corresponding to a SEEK event. It is considered good
415  * practice to make this correspondence when possible, though it is not
416  * required.
417  *
418  * Note that events and messages share the same sequence number incrementor;
419  * two events or messages will never have the same sequence number unless
420  * that correspondence was made explicitly.
421  *
422  * Returns: The event's sequence number.
423  *
424  * MT safe.
425  */
426 guint32
427 gst_event_get_seqnum (GstEvent * event)
428 {
429   g_return_val_if_fail (GST_IS_EVENT (event), -1);
430
431   return GST_EVENT_SEQNUM (event);
432 }
433
434 /**
435  * gst_event_set_seqnum:
436  * @event: A #GstEvent.
437  * @seqnum: A sequence number.
438  *
439  * Set the sequence number of a event.
440  *
441  * This function might be called by the creator of a event to indicate that the
442  * event relates to other events or messages. See gst_event_get_seqnum() for
443  * more information.
444  *
445  * MT safe.
446  */
447 void
448 gst_event_set_seqnum (GstEvent * event, guint32 seqnum)
449 {
450   g_return_if_fail (GST_IS_EVENT (event));
451
452   GST_EVENT_SEQNUM (event) = seqnum;
453 }
454
455 /**
456  * gst_event_get_running_time_offset:
457  * @event: A #GstEvent.
458  *
459  * Retrieve the accumulated running time offset of the event.
460  *
461  * Events passing through #GstPads that have a running time
462  * offset set via gst_pad_set_offset() will get their offset
463  * adjusted according to the pad's offset.
464  *
465  * If the event contains any information that related to the
466  * running time, this information will need to be updated
467  * before usage with this offset.
468  *
469  * Returns: The event's running time offset
470  *
471  * MT safe.
472  *
473  * Since: 1.4
474  */
475 gint64
476 gst_event_get_running_time_offset (GstEvent * event)
477 {
478   g_return_val_if_fail (GST_IS_EVENT (event), 0);
479
480   return ((GstEventImpl *) event)->running_time_offset;
481 }
482
483 /**
484  * gst_event_set_running_time_offset:
485  * @event: A #GstEvent.
486  * @offset: A the new running time offset
487  *
488  * Set the running time offset of a event. See
489  * gst_event_get_running_time_offset() for more information.
490  *
491  * MT safe.
492  *
493  * Since: 1.4
494  */
495 void
496 gst_event_set_running_time_offset (GstEvent * event, gint64 offset)
497 {
498   g_return_if_fail (GST_IS_EVENT (event));
499
500   ((GstEventImpl *) event)->running_time_offset = offset;
501 }
502
503 /**
504  * gst_event_new_flush_start:
505  *
506  * Allocate a new flush start event. The flush start event can be sent
507  * upstream and downstream and travels out-of-bounds with the dataflow.
508  *
509  * It marks pads as being flushing and will make them return
510  * #GST_FLOW_FLUSHING when used for data flow with gst_pad_push(),
511  * gst_pad_chain(), gst_pad_get_range() and gst_pad_pull_range().
512  * Any event (except a #GST_EVENT_FLUSH_STOP) received
513  * on a flushing pad will return %FALSE immediately.
514  *
515  * Elements should unlock any blocking functions and exit their streaming
516  * functions as fast as possible when this event is received.
517  *
518  * This event is typically generated after a seek to flush out all queued data
519  * in the pipeline so that the new media is played as soon as possible.
520  *
521  * Returns: (transfer full): a new flush start event.
522  */
523 GstEvent *
524 gst_event_new_flush_start (void)
525 {
526   return gst_event_new_custom (GST_EVENT_FLUSH_START, NULL);
527 }
528
529 /**
530  * gst_event_new_flush_stop:
531  * @reset_time: if time should be reset
532  *
533  * Allocate a new flush stop event. The flush stop event can be sent
534  * upstream and downstream and travels serialized with the dataflow.
535  * It is typically sent after sending a FLUSH_START event to make the
536  * pads accept data again.
537  *
538  * Elements can process this event synchronized with the dataflow since
539  * the preceding FLUSH_START event stopped the dataflow.
540  *
541  * This event is typically generated to complete a seek and to resume
542  * dataflow.
543  *
544  * Returns: (transfer full): a new flush stop event.
545  */
546 GstEvent *
547 gst_event_new_flush_stop (gboolean reset_time)
548 {
549   GstEvent *event;
550
551   GST_CAT_INFO (GST_CAT_EVENT, "creating flush stop %d", reset_time);
552
553   event = gst_event_new_custom (GST_EVENT_FLUSH_STOP,
554       gst_structure_new_id (GST_QUARK (EVENT_FLUSH_STOP),
555           GST_QUARK (RESET_TIME), G_TYPE_BOOLEAN, reset_time, NULL));
556
557   return event;
558 }
559
560 /**
561  * gst_event_parse_flush_stop:
562  * @event: The event to parse
563  * @reset_time: (out): if time should be reset
564  *
565  * Parse the FLUSH_STOP event and retrieve the @reset_time member.
566  */
567 void
568 gst_event_parse_flush_stop (GstEvent * event, gboolean * reset_time)
569 {
570   GstStructure *structure;
571
572   g_return_if_fail (GST_IS_EVENT (event));
573   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_STOP);
574
575   structure = GST_EVENT_STRUCTURE (event);
576   if (G_LIKELY (reset_time))
577     *reset_time =
578         g_value_get_boolean (gst_structure_id_get_value (structure,
579             GST_QUARK (RESET_TIME)));
580 }
581
582 /**
583  * gst_event_new_select_streams:
584  * @streams: (element-type utf8) (transfer none): the list of streams to
585  * activate
586  *
587  * Allocate a new select-streams event.
588  *
589  * The select-streams event requests the specified @streams to be activated.
590  *
591  * The list of @streams corresponds to the "Stream ID" of each stream to be
592  * activated. Those ID can be obtained via the #GstStream objects present
593  * in #GST_EVENT_STREAM_START, #GST_EVENT_STREAM_COLLECTION or
594  * #GST_MESSSAGE_STREAM_COLLECTION.
595  *
596  * Returns: (transfer full): a new select-streams event.
597  *
598  * Since: 1.10
599  */
600 GstEvent *
601 gst_event_new_select_streams (GList * streams)
602 {
603   GstEvent *event;
604   GValue val = G_VALUE_INIT;
605   GstStructure *struc;
606   GList *tmpl;
607
608   GST_CAT_INFO (GST_CAT_EVENT, "Creating new select-streams event");
609   struc = gst_structure_new_id_empty (GST_QUARK (EVENT_SELECT_STREAMS));
610   g_value_init (&val, GST_TYPE_LIST);
611   /* Fill struc with streams */
612   for (tmpl = streams; tmpl; tmpl = tmpl->next) {
613     GValue strval = G_VALUE_INIT;
614     const gchar *str = (const gchar *) tmpl->data;
615     g_value_init (&strval, G_TYPE_STRING);
616     g_value_set_string (&strval, str);
617     gst_value_list_append_and_take_value (&val, &strval);
618   }
619   gst_structure_id_take_value (struc, GST_QUARK (STREAMS), &val);
620   event = gst_event_new_custom (GST_EVENT_SELECT_STREAMS, struc);
621
622   return event;
623 }
624
625 /**
626  * gst_event_parse_select_streams:
627  * @event: The event to parse
628  * @streams: (out) (element-type utf8) (transfer full): the streams
629  *
630  * Parse the SELECT_STREAMS event and retrieve the contained streams.
631  *
632  * Since: 1.10
633  */
634 void
635 gst_event_parse_select_streams (GstEvent * event, GList ** streams)
636 {
637   GstStructure *structure;
638   GList *res = NULL;
639
640   g_return_if_fail (GST_IS_EVENT (event));
641   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SELECT_STREAMS);
642
643   structure = GST_EVENT_STRUCTURE (event);
644   if (G_LIKELY (streams)) {
645     const GValue *vlist =
646         gst_structure_id_get_value (structure, GST_QUARK (STREAMS));
647     guint i, sz = gst_value_list_get_size (vlist);
648     for (i = 0; i < sz; i++) {
649       const GValue *strv = gst_value_list_get_value (vlist, i);
650       res = g_list_append (res, g_value_dup_string (strv));
651     }
652     *streams = res;
653   }
654 }
655
656
657 /**
658  * gst_event_new_stream_group_done:
659  * @group_id: the group id of the stream group which is ending
660  *
661  * Create a new Stream Group Done event. The stream-group-done event can
662  * only travel downstream synchronized with the buffer flow. Elements
663  * that receive the event on a pad should handle it mostly like EOS,
664  * and emit any data or pending buffers that would depend on more data
665  * arriving and unblock, since there won't be any more data.
666  *
667  * This event is followed by EOS at some point in the future, and is
668  * generally used when switching pads - to unblock downstream so that
669  * new pads can be exposed before sending EOS on the existing pads.
670  *
671  * Returns: (transfer full): the new stream-group-done event.
672  *
673  * Since: 1.10
674  */
675 GstEvent *
676 gst_event_new_stream_group_done (guint group_id)
677 {
678   GstStructure *s;
679
680   s = gst_structure_new_id (GST_QUARK (EVENT_STREAM_GROUP_DONE),
681       GST_QUARK (GROUP_ID), G_TYPE_UINT, group_id, NULL);
682
683   return gst_event_new_custom (GST_EVENT_STREAM_GROUP_DONE, s);
684 }
685
686 /**
687  * gst_event_parse_stream_group_done:
688  * @event: a stream-group-done event.
689  * @group_id: (out): address of variable to store the group id into
690  *
691  * Parse a stream-group-done @event and store the result in the given
692  * @group_id location.
693  *
694  * Since: 1.10
695  */
696 void
697 gst_event_parse_stream_group_done (GstEvent * event, guint * group_id)
698 {
699   g_return_if_fail (event != NULL);
700   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_GROUP_DONE);
701
702   if (group_id) {
703     gst_structure_id_get (GST_EVENT_STRUCTURE (event),
704         GST_QUARK (GROUP_ID), G_TYPE_UINT, group_id, NULL);
705   }
706 }
707
708 /**
709  * gst_event_new_eos:
710  *
711  * Create a new EOS event. The eos event can only travel downstream
712  * synchronized with the buffer flow. Elements that receive the EOS
713  * event on a pad can return #GST_FLOW_EOS as a #GstFlowReturn
714  * when data after the EOS event arrives.
715  *
716  * The EOS event will travel down to the sink elements in the pipeline
717  * which will then post the #GST_MESSAGE_EOS on the bus after they have
718  * finished playing any buffered data.
719  *
720  * When all sinks have posted an EOS message, an EOS message is
721  * forwarded to the application.
722  *
723  * The EOS event itself will not cause any state transitions of the pipeline.
724  *
725  * Returns: (transfer full): the new EOS event.
726  */
727 GstEvent *
728 gst_event_new_eos (void)
729 {
730   return gst_event_new_custom (GST_EVENT_EOS, NULL);
731 }
732
733 /**
734  * gst_event_new_gap:
735  * @timestamp: the start time (pts) of the gap
736  * @duration: the duration of the gap
737  *
738  * Create a new GAP event. A gap event can be thought of as conceptually
739  * equivalent to a buffer to signal that there is no data for a certain
740  * amount of time. This is useful to signal a gap to downstream elements
741  * which may wait for data, such as muxers or mixers or overlays, especially
742  * for sparse streams such as subtitle streams.
743  *
744  * Returns: (transfer full): the new GAP event.
745  */
746 GstEvent *
747 gst_event_new_gap (GstClockTime timestamp, GstClockTime duration)
748 {
749   GstEvent *event;
750
751   g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), NULL);
752
753   GST_CAT_TRACE (GST_CAT_EVENT, "creating gap %" GST_TIME_FORMAT " - "
754       "%" GST_TIME_FORMAT " (duration: %" GST_TIME_FORMAT ")",
755       GST_TIME_ARGS (timestamp), GST_TIME_ARGS (timestamp + duration),
756       GST_TIME_ARGS (duration));
757
758   event = gst_event_new_custom (GST_EVENT_GAP,
759       gst_structure_new_id (GST_QUARK (EVENT_GAP),
760           GST_QUARK (TIMESTAMP), GST_TYPE_CLOCK_TIME, timestamp,
761           GST_QUARK (DURATION), GST_TYPE_CLOCK_TIME, duration, NULL));
762
763   return event;
764 }
765
766 /**
767  * gst_event_parse_gap:
768  * @event: a #GstEvent of type #GST_EVENT_GAP
769  * @timestamp: (out) (allow-none): location where to store the
770  *     start time (pts) of the gap, or %NULL
771  * @duration: (out) (allow-none): location where to store the duration of
772  *     the gap, or %NULL
773  *
774  * Extract timestamp and duration from a new GAP event.
775  */
776 void
777 gst_event_parse_gap (GstEvent * event, GstClockTime * timestamp,
778     GstClockTime * duration)
779 {
780   GstStructure *structure;
781
782   g_return_if_fail (GST_IS_EVENT (event));
783   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_GAP);
784
785   structure = GST_EVENT_STRUCTURE (event);
786   gst_structure_id_get (structure,
787       GST_QUARK (TIMESTAMP), GST_TYPE_CLOCK_TIME, timestamp,
788       GST_QUARK (DURATION), GST_TYPE_CLOCK_TIME, duration, NULL);
789 }
790
791 /**
792  * gst_event_new_caps:
793  * @caps: (transfer none): a #GstCaps
794  *
795  * Create a new CAPS event for @caps. The caps event can only travel downstream
796  * synchronized with the buffer flow and contains the format of the buffers
797  * that will follow after the event.
798  *
799  * Returns: (transfer full): the new CAPS event.
800  */
801 GstEvent *
802 gst_event_new_caps (GstCaps * caps)
803 {
804   GstEvent *event;
805
806   g_return_val_if_fail (caps != NULL, NULL);
807   g_return_val_if_fail (gst_caps_is_fixed (caps), NULL);
808
809   GST_CAT_INFO (GST_CAT_EVENT, "creating caps event %" GST_PTR_FORMAT, caps);
810
811   event = gst_event_new_custom (GST_EVENT_CAPS,
812       gst_structure_new_id (GST_QUARK (EVENT_CAPS),
813           GST_QUARK (CAPS), GST_TYPE_CAPS, caps, NULL));
814
815   return event;
816 }
817
818 /**
819  * gst_event_parse_caps:
820  * @event: The event to parse
821  * @caps: (out) (transfer none): A pointer to the caps
822  *
823  * Get the caps from @event. The caps remains valid as long as @event remains
824  * valid.
825  */
826 void
827 gst_event_parse_caps (GstEvent * event, GstCaps ** caps)
828 {
829   GstStructure *structure;
830
831   g_return_if_fail (GST_IS_EVENT (event));
832   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_CAPS);
833
834   structure = GST_EVENT_STRUCTURE (event);
835   if (G_LIKELY (caps))
836     *caps =
837         g_value_get_boxed (gst_structure_id_get_value (structure,
838             GST_QUARK (CAPS)));
839 }
840
841 /**
842  * gst_event_new_segment:
843  * @segment: (transfer none): a #GstSegment
844  *
845  * Create a new SEGMENT event for @segment. The segment event can only travel
846  * downstream synchronized with the buffer flow and contains timing information
847  * and playback properties for the buffers that will follow.
848  *
849  * The segment event marks the range of buffers to be processed. All
850  * data not within the segment range is not to be processed. This can be
851  * used intelligently by plugins to apply more efficient methods of skipping
852  * unneeded data. The valid range is expressed with the @start and @stop
853  * values.
854  *
855  * The time value of the segment is used in conjunction with the start
856  * value to convert the buffer timestamps into the stream time. This is
857  * usually done in sinks to report the current stream_time.
858  * @time represents the stream_time of a buffer carrying a timestamp of
859  * @start. @time cannot be -1.
860  *
861  * @start cannot be -1, @stop can be -1. If there
862  * is a valid @stop given, it must be greater or equal the @start, including
863  * when the indicated playback @rate is < 0.
864  *
865  * The @applied_rate value provides information about any rate adjustment that
866  * has already been made to the timestamps and content on the buffers of the
867  * stream. (@rate * @applied_rate) should always equal the rate that has been
868  * requested for playback. For example, if an element has an input segment
869  * with intended playback @rate of 2.0 and applied_rate of 1.0, it can adjust
870  * incoming timestamps and buffer content by half and output a segment event
871  * with @rate of 1.0 and @applied_rate of 2.0
872  *
873  * After a segment event, the buffer stream time is calculated with:
874  *
875  *   time + (TIMESTAMP(buf) - start) * ABS (rate * applied_rate)
876  *
877  * Returns: (transfer full): the new SEGMENT event.
878  */
879 GstEvent *
880 gst_event_new_segment (const GstSegment * segment)
881 {
882   GstEvent *event;
883
884   g_return_val_if_fail (segment != NULL, NULL);
885   g_return_val_if_fail (segment->rate != 0.0, NULL);
886   g_return_val_if_fail (segment->applied_rate != 0.0, NULL);
887   g_return_val_if_fail (segment->format != GST_FORMAT_UNDEFINED, NULL);
888
889   GST_CAT_INFO (GST_CAT_EVENT, "creating segment event %" GST_SEGMENT_FORMAT,
890       segment);
891
892   event = gst_event_new_custom (GST_EVENT_SEGMENT,
893       gst_structure_new_id (GST_QUARK (EVENT_SEGMENT),
894           GST_QUARK (SEGMENT), GST_TYPE_SEGMENT, segment, NULL));
895
896   return event;
897 }
898
899 /**
900  * gst_event_parse_segment:
901  * @event: The event to parse
902  * @segment: (out) (transfer none): a pointer to a #GstSegment
903  *
904  * Parses a segment @event and stores the result in the given @segment location.
905  * @segment remains valid only until the @event is freed. Don't modify the segment
906  * and make a copy if you want to modify it or store it for later use.
907  */
908 void
909 gst_event_parse_segment (GstEvent * event, const GstSegment ** segment)
910 {
911   GstStructure *structure;
912
913   g_return_if_fail (GST_IS_EVENT (event));
914   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
915
916   if (segment) {
917     structure = GST_EVENT_STRUCTURE (event);
918     *segment = g_value_get_boxed (gst_structure_id_get_value (structure,
919             GST_QUARK (SEGMENT)));
920   }
921 }
922
923 /**
924  * gst_event_copy_segment:
925  * @event: The event to parse
926  * @segment: a pointer to a #GstSegment
927  *
928  * Parses a segment @event and copies the #GstSegment into the location
929  * given by @segment.
930  */
931 void
932 gst_event_copy_segment (GstEvent * event, GstSegment * segment)
933 {
934   const GstSegment *src;
935
936   g_return_if_fail (GST_IS_EVENT (event));
937   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
938
939   if (segment) {
940     gst_event_parse_segment (event, &src);
941     gst_segment_copy_into (src, segment);
942   }
943 }
944
945 /**
946  * gst_event_new_tag:
947  * @taglist: (transfer full): metadata list. The event will take ownership
948  *     of the taglist.
949  *
950  * Generates a metadata tag event from the given @taglist.
951  *
952  * The scope of the taglist specifies if the taglist applies to the
953  * complete medium or only to this specific stream. As the tag event
954  * is a sticky event, elements should merge tags received from
955  * upstream with a given scope with their own tags with the same
956  * scope and create a new tag event from it.
957  *
958  * Returns: (transfer full): a new #GstEvent
959  */
960 GstEvent *
961 gst_event_new_tag (GstTagList * taglist)
962 {
963   GstStructure *s;
964   GValue val = G_VALUE_INIT;
965   const gchar *names[] = { "GstTagList-stream", "GstTagList-global" };
966
967   g_return_val_if_fail (taglist != NULL, NULL);
968
969   s = gst_structure_new_empty (names[gst_tag_list_get_scope (taglist)]);
970   g_value_init (&val, GST_TYPE_TAG_LIST);
971   g_value_take_boxed (&val, taglist);
972   gst_structure_id_take_value (s, GST_QUARK (TAGLIST), &val);
973   return gst_event_new_custom (GST_EVENT_TAG, s);
974 }
975
976 /**
977  * gst_event_parse_tag:
978  * @event: a tag event
979  * @taglist: (out) (transfer none): pointer to metadata list
980  *
981  * Parses a tag @event and stores the results in the given @taglist location.
982  * No reference to the taglist will be returned, it remains valid only until
983  * the @event is freed. Don't modify or free the taglist, make a copy if you
984  * want to modify it or store it for later use.
985  */
986 void
987 gst_event_parse_tag (GstEvent * event, GstTagList ** taglist)
988 {
989   const GValue *val;
990
991   g_return_if_fail (GST_IS_EVENT (event));
992   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TAG);
993
994   val = gst_structure_id_get_value (GST_EVENT_STRUCTURE (event),
995       GST_QUARK (TAGLIST));
996
997   if (taglist)
998     *taglist = (GstTagList *) g_value_get_boxed (val);
999 }
1000
1001 /* buffersize event */
1002 /**
1003  * gst_event_new_buffer_size:
1004  * @format: buffer format
1005  * @minsize: minimum buffer size
1006  * @maxsize: maximum buffer size
1007  * @async: thread behavior
1008  *
1009  * Create a new buffersize event. The event is sent downstream and notifies
1010  * elements that they should provide a buffer of the specified dimensions.
1011  *
1012  * When the @async flag is set, a thread boundary is preferred.
1013  *
1014  * Returns: (transfer full): a new #GstEvent
1015  */
1016 GstEvent *
1017 gst_event_new_buffer_size (GstFormat format, gint64 minsize,
1018     gint64 maxsize, gboolean async)
1019 {
1020   GstEvent *event;
1021   GstStructure *structure;
1022
1023   GST_CAT_INFO (GST_CAT_EVENT,
1024       "creating buffersize format %s, minsize %" G_GINT64_FORMAT
1025       ", maxsize %" G_GINT64_FORMAT ", async %d", gst_format_get_name (format),
1026       minsize, maxsize, async);
1027
1028   structure = gst_structure_new_id (GST_QUARK (EVENT_BUFFER_SIZE),
1029       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1030       GST_QUARK (MINSIZE), G_TYPE_INT64, minsize,
1031       GST_QUARK (MAXSIZE), G_TYPE_INT64, maxsize,
1032       GST_QUARK (ASYNC), G_TYPE_BOOLEAN, async, NULL);
1033   event = gst_event_new_custom (GST_EVENT_BUFFERSIZE, structure);
1034
1035   return event;
1036 }
1037
1038 /**
1039  * gst_event_parse_buffer_size:
1040  * @event: The event to query
1041  * @format: (out): A pointer to store the format in
1042  * @minsize: (out): A pointer to store the minsize in
1043  * @maxsize: (out): A pointer to store the maxsize in
1044  * @async: (out): A pointer to store the async-flag in
1045  *
1046  * Get the format, minsize, maxsize and async-flag in the buffersize event.
1047  */
1048 void
1049 gst_event_parse_buffer_size (GstEvent * event, GstFormat * format,
1050     gint64 * minsize, gint64 * maxsize, gboolean * async)
1051 {
1052   const GstStructure *structure;
1053
1054   g_return_if_fail (GST_IS_EVENT (event));
1055   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_BUFFERSIZE);
1056
1057   structure = GST_EVENT_STRUCTURE (event);
1058   if (format)
1059     *format = (GstFormat)
1060         g_value_get_enum (gst_structure_id_get_value (structure,
1061             GST_QUARK (FORMAT)));
1062   if (minsize)
1063     *minsize =
1064         g_value_get_int64 (gst_structure_id_get_value (structure,
1065             GST_QUARK (MINSIZE)));
1066   if (maxsize)
1067     *maxsize =
1068         g_value_get_int64 (gst_structure_id_get_value (structure,
1069             GST_QUARK (MAXSIZE)));
1070   if (async)
1071     *async =
1072         g_value_get_boolean (gst_structure_id_get_value (structure,
1073             GST_QUARK (ASYNC)));
1074 }
1075
1076 /**
1077  * gst_event_new_qos:
1078  * @type: the QoS type
1079  * @proportion: the proportion of the qos message
1080  * @diff: The time difference of the last Clock sync
1081  * @timestamp: The timestamp of the buffer
1082  *
1083  * Allocate a new qos event with the given values.
1084  * The QOS event is generated in an element that wants an upstream
1085  * element to either reduce or increase its rate because of
1086  * high/low CPU load or other resource usage such as network performance or
1087  * throttling. Typically sinks generate these events for each buffer
1088  * they receive.
1089  *
1090  * @type indicates the reason for the QoS event. #GST_QOS_TYPE_OVERFLOW is
1091  * used when a buffer arrived in time or when the sink cannot keep up with
1092  * the upstream datarate. #GST_QOS_TYPE_UNDERFLOW is when the sink is not
1093  * receiving buffers fast enough and thus has to drop late buffers.
1094  * #GST_QOS_TYPE_THROTTLE is used when the datarate is artificially limited
1095  * by the application, for example to reduce power consumption.
1096  *
1097  * @proportion indicates the real-time performance of the streaming in the
1098  * element that generated the QoS event (usually the sink). The value is
1099  * generally computed based on more long term statistics about the streams
1100  * timestamps compared to the clock.
1101  * A value < 1.0 indicates that the upstream element is producing data faster
1102  * than real-time. A value > 1.0 indicates that the upstream element is not
1103  * producing data fast enough. 1.0 is the ideal @proportion value. The
1104  * proportion value can safely be used to lower or increase the quality of
1105  * the element.
1106  *
1107  * @diff is the difference against the clock in running time of the last
1108  * buffer that caused the element to generate the QOS event. A negative value
1109  * means that the buffer with @timestamp arrived in time. A positive value
1110  * indicates how late the buffer with @timestamp was. When throttling is
1111  * enabled, @diff will be set to the requested throttling interval.
1112  *
1113  * @timestamp is the timestamp of the last buffer that cause the element
1114  * to generate the QOS event. It is expressed in running time and thus an ever
1115  * increasing value.
1116  *
1117  * The upstream element can use the @diff and @timestamp values to decide
1118  * whether to process more buffers. For positive @diff, all buffers with
1119  * timestamp <= @timestamp + @diff will certainly arrive late in the sink
1120  * as well. A (negative) @diff value so that @timestamp + @diff would yield a
1121  * result smaller than 0 is not allowed.
1122  *
1123  * The application can use general event probes to intercept the QoS
1124  * event and implement custom application specific QoS handling.
1125  *
1126  * Returns: (transfer full): a new QOS event.
1127  */
1128 GstEvent *
1129 gst_event_new_qos (GstQOSType type, gdouble proportion,
1130     GstClockTimeDiff diff, GstClockTime timestamp)
1131 {
1132   GstEvent *event;
1133   GstStructure *structure;
1134
1135   /* diff must be positive or timestamp + diff must be positive */
1136   g_return_val_if_fail (diff >= 0 || -diff <= timestamp, NULL);
1137
1138   GST_CAT_LOG (GST_CAT_EVENT,
1139       "creating qos type %d, proportion %lf, diff %" G_GINT64_FORMAT
1140       ", timestamp %" GST_TIME_FORMAT, type, proportion,
1141       diff, GST_TIME_ARGS (timestamp));
1142
1143   structure = gst_structure_new_id (GST_QUARK (EVENT_QOS),
1144       GST_QUARK (TYPE), GST_TYPE_QOS_TYPE, type,
1145       GST_QUARK (PROPORTION), G_TYPE_DOUBLE, proportion,
1146       GST_QUARK (DIFF), G_TYPE_INT64, diff,
1147       GST_QUARK (TIMESTAMP), G_TYPE_UINT64, timestamp, NULL);
1148   event = gst_event_new_custom (GST_EVENT_QOS, structure);
1149
1150   return event;
1151 }
1152
1153 /**
1154  * gst_event_parse_qos:
1155  * @event: The event to query
1156  * @type: (out): A pointer to store the QoS type in
1157  * @proportion: (out): A pointer to store the proportion in
1158  * @diff: (out): A pointer to store the diff in
1159  * @timestamp: (out): A pointer to store the timestamp in
1160  *
1161  * Get the type, proportion, diff and timestamp in the qos event. See
1162  * gst_event_new_qos() for more information about the different QoS values.
1163  *
1164  * @timestamp will be adjusted for any pad offsets of pads it was passing through.
1165  */
1166 void
1167 gst_event_parse_qos (GstEvent * event, GstQOSType * type,
1168     gdouble * proportion, GstClockTimeDiff * diff, GstClockTime * timestamp)
1169 {
1170   const GstStructure *structure;
1171
1172   g_return_if_fail (GST_IS_EVENT (event));
1173   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_QOS);
1174
1175   structure = GST_EVENT_STRUCTURE (event);
1176   if (type)
1177     *type = (GstQOSType)
1178         g_value_get_enum (gst_structure_id_get_value (structure,
1179             GST_QUARK (TYPE)));
1180   if (proportion)
1181     *proportion =
1182         g_value_get_double (gst_structure_id_get_value (structure,
1183             GST_QUARK (PROPORTION)));
1184   if (diff)
1185     *diff =
1186         g_value_get_int64 (gst_structure_id_get_value (structure,
1187             GST_QUARK (DIFF)));
1188   if (timestamp) {
1189     gint64 offset = gst_event_get_running_time_offset (event);
1190     GstClockTimeDiff diff_ =
1191         g_value_get_int64 (gst_structure_id_get_value (structure,
1192             GST_QUARK (DIFF)));
1193
1194     *timestamp =
1195         g_value_get_uint64 (gst_structure_id_get_value (structure,
1196             GST_QUARK (TIMESTAMP)));
1197     /* Catch underflows */
1198     if (*timestamp > -offset)
1199       *timestamp += offset;
1200     else
1201       *timestamp = 0;
1202
1203     /* Make sure that timestamp + diff is always >= 0. Because
1204      * of the running time offset this might not be true */
1205     if (diff_ < 0 && *timestamp < -diff_)
1206       *timestamp = (GstClockTime) - diff_;
1207   }
1208 }
1209
1210 /**
1211  * gst_event_new_seek:
1212  * @rate: The new playback rate
1213  * @format: The format of the seek values
1214  * @flags: The optional seek flags
1215  * @start_type: The type and flags for the new start position
1216  * @start: The value of the new start position
1217  * @stop_type: The type and flags for the new stop position
1218  * @stop: The value of the new stop position
1219  *
1220  * Allocate a new seek event with the given parameters.
1221  *
1222  * The seek event configures playback of the pipeline between @start to @stop
1223  * at the speed given in @rate, also called a playback segment.
1224  * The @start and @stop values are expressed in @format.
1225  *
1226  * A @rate of 1.0 means normal playback rate, 2.0 means double speed.
1227  * Negatives values means backwards playback. A value of 0.0 for the
1228  * rate is not allowed and should be accomplished instead by PAUSING the
1229  * pipeline.
1230  *
1231  * A pipeline has a default playback segment configured with a start
1232  * position of 0, a stop position of -1 and a rate of 1.0. The currently
1233  * configured playback segment can be queried with #GST_QUERY_SEGMENT.
1234  *
1235  * @start_type and @stop_type specify how to adjust the currently configured
1236  * start and stop fields in playback segment. Adjustments can be made relative
1237  * or absolute to the last configured values. A type of #GST_SEEK_TYPE_NONE
1238  * means that the position should not be updated.
1239  *
1240  * When the rate is positive and @start has been updated, playback will start
1241  * from the newly configured start position.
1242  *
1243  * For negative rates, playback will start from the newly configured stop
1244  * position (if any). If the stop position is updated, it must be different from
1245  * -1 (#GST_CLOCK_TIME_NONE) for negative rates.
1246  *
1247  * It is not possible to seek relative to the current playback position, to do
1248  * this, PAUSE the pipeline, query the current playback position with
1249  * #GST_QUERY_POSITION and update the playback segment current position with a
1250  * #GST_SEEK_TYPE_SET to the desired position.
1251  *
1252  * Returns: (transfer full): a new seek event.
1253  */
1254 GstEvent *
1255 gst_event_new_seek (gdouble rate, GstFormat format, GstSeekFlags flags,
1256     GstSeekType start_type, gint64 start, GstSeekType stop_type, gint64 stop)
1257 {
1258   GstEvent *event;
1259   GstStructure *structure;
1260
1261   g_return_val_if_fail (rate != 0.0, NULL);
1262
1263   if (format == GST_FORMAT_TIME) {
1264     GST_CAT_INFO (GST_CAT_EVENT,
1265         "creating seek rate %lf, format TIME, flags %d, "
1266         "start_type %d, start %" GST_TIME_FORMAT ", "
1267         "stop_type %d, stop %" GST_TIME_FORMAT,
1268         rate, flags, start_type, GST_TIME_ARGS (start),
1269         stop_type, GST_TIME_ARGS (stop));
1270   } else {
1271     GST_CAT_INFO (GST_CAT_EVENT,
1272         "creating seek rate %lf, format %s, flags %d, "
1273         "start_type %d, start %" G_GINT64_FORMAT ", "
1274         "stop_type %d, stop %" G_GINT64_FORMAT,
1275         rate, gst_format_get_name (format), flags, start_type, start, stop_type,
1276         stop);
1277   }
1278
1279   structure = gst_structure_new_id (GST_QUARK (EVENT_SEEK),
1280       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1281       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1282       GST_QUARK (FLAGS), GST_TYPE_SEEK_FLAGS, flags,
1283       GST_QUARK (CUR_TYPE), GST_TYPE_SEEK_TYPE, start_type,
1284       GST_QUARK (CUR), G_TYPE_INT64, start,
1285       GST_QUARK (STOP_TYPE), GST_TYPE_SEEK_TYPE, stop_type,
1286       GST_QUARK (STOP), G_TYPE_INT64, stop, NULL);
1287   event = gst_event_new_custom (GST_EVENT_SEEK, structure);
1288
1289   return event;
1290 }
1291
1292 /**
1293  * gst_event_parse_seek:
1294  * @event: a seek event
1295  * @rate: (out): result location for the rate
1296  * @format: (out): result location for the stream format
1297  * @flags:  (out): result location for the #GstSeekFlags
1298  * @start_type: (out): result location for the #GstSeekType of the start position
1299  * @start: (out): result location for the start position expressed in @format
1300  * @stop_type:  (out): result location for the #GstSeekType of the stop position
1301  * @stop: (out): result location for the stop position expressed in @format
1302  *
1303  * Parses a seek @event and stores the results in the given result locations.
1304  */
1305 void
1306 gst_event_parse_seek (GstEvent * event, gdouble * rate,
1307     GstFormat * format, GstSeekFlags * flags, GstSeekType * start_type,
1308     gint64 * start, GstSeekType * stop_type, gint64 * stop)
1309 {
1310   const GstStructure *structure;
1311
1312   g_return_if_fail (GST_IS_EVENT (event));
1313   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEEK);
1314
1315   structure = GST_EVENT_STRUCTURE (event);
1316   if (rate)
1317     *rate =
1318         g_value_get_double (gst_structure_id_get_value (structure,
1319             GST_QUARK (RATE)));
1320   if (format)
1321     *format = (GstFormat)
1322         g_value_get_enum (gst_structure_id_get_value (structure,
1323             GST_QUARK (FORMAT)));
1324   if (flags)
1325     *flags = (GstSeekFlags)
1326         g_value_get_flags (gst_structure_id_get_value (structure,
1327             GST_QUARK (FLAGS)));
1328   if (start_type)
1329     *start_type = (GstSeekType)
1330         g_value_get_enum (gst_structure_id_get_value (structure,
1331             GST_QUARK (CUR_TYPE)));
1332   if (start)
1333     *start =
1334         g_value_get_int64 (gst_structure_id_get_value (structure,
1335             GST_QUARK (CUR)));
1336   if (stop_type)
1337     *stop_type = (GstSeekType)
1338         g_value_get_enum (gst_structure_id_get_value (structure,
1339             GST_QUARK (STOP_TYPE)));
1340   if (stop)
1341     *stop =
1342         g_value_get_int64 (gst_structure_id_get_value (structure,
1343             GST_QUARK (STOP)));
1344 }
1345
1346 /**
1347  * gst_event_new_navigation:
1348  * @structure: (transfer full): description of the event. The event will take
1349  *     ownership of the structure.
1350  *
1351  * Create a new navigation event from the given description.
1352  *
1353  * Returns: (transfer full): a new #GstEvent
1354  */
1355 GstEvent *
1356 gst_event_new_navigation (GstStructure * structure)
1357 {
1358   g_return_val_if_fail (structure != NULL, NULL);
1359
1360   return gst_event_new_custom (GST_EVENT_NAVIGATION, structure);
1361 }
1362
1363 /**
1364  * gst_event_new_latency:
1365  * @latency: the new latency value
1366  *
1367  * Create a new latency event. The event is sent upstream from the sinks and
1368  * notifies elements that they should add an additional @latency to the
1369  * running time before synchronising against the clock.
1370  *
1371  * The latency is mostly used in live sinks and is always expressed in
1372  * the time format.
1373  *
1374  * Returns: (transfer full): a new #GstEvent
1375  */
1376 GstEvent *
1377 gst_event_new_latency (GstClockTime latency)
1378 {
1379   GstEvent *event;
1380   GstStructure *structure;
1381
1382   GST_CAT_INFO (GST_CAT_EVENT,
1383       "creating latency event %" GST_TIME_FORMAT, GST_TIME_ARGS (latency));
1384
1385   structure = gst_structure_new_id (GST_QUARK (EVENT_LATENCY),
1386       GST_QUARK (LATENCY), G_TYPE_UINT64, latency, NULL);
1387   event = gst_event_new_custom (GST_EVENT_LATENCY, structure);
1388
1389   return event;
1390 }
1391
1392 /**
1393  * gst_event_parse_latency:
1394  * @event: The event to query
1395  * @latency: (out): A pointer to store the latency in.
1396  *
1397  * Get the latency in the latency event.
1398  */
1399 void
1400 gst_event_parse_latency (GstEvent * event, GstClockTime * latency)
1401 {
1402   g_return_if_fail (GST_IS_EVENT (event));
1403   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_LATENCY);
1404
1405   if (latency)
1406     *latency =
1407         g_value_get_uint64 (gst_structure_id_get_value (GST_EVENT_STRUCTURE
1408             (event), GST_QUARK (LATENCY)));
1409 }
1410
1411 /**
1412  * gst_event_new_step:
1413  * @format: the format of @amount
1414  * @amount: the amount of data to step
1415  * @rate: the step rate
1416  * @flush: flushing steps
1417  * @intermediate: intermediate steps
1418  *
1419  * Create a new step event. The purpose of the step event is to instruct a sink
1420  * to skip @amount (expressed in @format) of media. It can be used to implement
1421  * stepping through the video frame by frame or for doing fast trick modes.
1422  *
1423  * A rate of <= 0.0 is not allowed. Pause the pipeline, for the effect of rate
1424  * = 0.0 or first reverse the direction of playback using a seek event to get
1425  * the same effect as rate < 0.0.
1426  *
1427  * The @flush flag will clear any pending data in the pipeline before starting
1428  * the step operation.
1429  *
1430  * The @intermediate flag instructs the pipeline that this step operation is
1431  * part of a larger step operation.
1432  *
1433  * Returns: (transfer full): a new #GstEvent
1434  */
1435 GstEvent *
1436 gst_event_new_step (GstFormat format, guint64 amount, gdouble rate,
1437     gboolean flush, gboolean intermediate)
1438 {
1439   GstEvent *event;
1440   GstStructure *structure;
1441
1442   g_return_val_if_fail (rate > 0.0, NULL);
1443
1444   GST_CAT_INFO (GST_CAT_EVENT, "creating step event");
1445
1446   structure = gst_structure_new_id (GST_QUARK (EVENT_STEP),
1447       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1448       GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
1449       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1450       GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
1451       GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate, NULL);
1452   event = gst_event_new_custom (GST_EVENT_STEP, structure);
1453
1454   return event;
1455 }
1456
1457 /**
1458  * gst_event_parse_step:
1459  * @event: The event to query
1460  * @format: (out) (allow-none): a pointer to store the format in
1461  * @amount: (out) (allow-none): a pointer to store the amount in
1462  * @rate: (out) (allow-none): a pointer to store the rate in
1463  * @flush: (out) (allow-none): a pointer to store the flush boolean in
1464  * @intermediate: (out) (allow-none): a pointer to store the intermediate
1465  *     boolean in
1466  *
1467  * Parse the step event.
1468  */
1469 void
1470 gst_event_parse_step (GstEvent * event, GstFormat * format, guint64 * amount,
1471     gdouble * rate, gboolean * flush, gboolean * intermediate)
1472 {
1473   const GstStructure *structure;
1474
1475   g_return_if_fail (GST_IS_EVENT (event));
1476   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STEP);
1477
1478   structure = GST_EVENT_STRUCTURE (event);
1479   if (format)
1480     *format =
1481         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
1482             GST_QUARK (FORMAT)));
1483   if (amount)
1484     *amount = g_value_get_uint64 (gst_structure_id_get_value (structure,
1485             GST_QUARK (AMOUNT)));
1486   if (rate)
1487     *rate = g_value_get_double (gst_structure_id_get_value (structure,
1488             GST_QUARK (RATE)));
1489   if (flush)
1490     *flush = g_value_get_boolean (gst_structure_id_get_value (structure,
1491             GST_QUARK (FLUSH)));
1492   if (intermediate)
1493     *intermediate = g_value_get_boolean (gst_structure_id_get_value (structure,
1494             GST_QUARK (INTERMEDIATE)));
1495 }
1496
1497 /**
1498  * gst_event_new_reconfigure:
1499
1500  * Create a new reconfigure event. The purpose of the reconfigure event is
1501  * to travel upstream and make elements renegotiate their caps or reconfigure
1502  * their buffer pools. This is useful when changing properties on elements
1503  * or changing the topology of the pipeline.
1504  *
1505  * Returns: (transfer full): a new #GstEvent
1506  */
1507 GstEvent *
1508 gst_event_new_reconfigure (void)
1509 {
1510   GstEvent *event;
1511
1512   GST_CAT_INFO (GST_CAT_EVENT, "creating reconfigure event");
1513
1514   event = gst_event_new_custom (GST_EVENT_RECONFIGURE, NULL);
1515
1516   return event;
1517 }
1518
1519 /**
1520  * gst_event_new_sink_message:
1521  * @name: a name for the event
1522  * @msg: (transfer none): the #GstMessage to be posted
1523  *
1524  * Create a new sink-message event. The purpose of the sink-message event is
1525  * to instruct a sink to post the message contained in the event synchronized
1526  * with the stream.
1527  *
1528  * @name is used to store multiple sticky events on one pad.
1529  *
1530  * Returns: (transfer full): a new #GstEvent
1531  */
1532 /* FIXME 2.0: take ownership of msg for consistency? */
1533 GstEvent *
1534 gst_event_new_sink_message (const gchar * name, GstMessage * msg)
1535 {
1536   GstEvent *event;
1537   GstStructure *structure;
1538
1539   g_return_val_if_fail (msg != NULL, NULL);
1540
1541   GST_CAT_INFO (GST_CAT_EVENT, "creating sink-message event");
1542
1543   structure = gst_structure_new_id (g_quark_from_string (name),
1544       GST_QUARK (MESSAGE), GST_TYPE_MESSAGE, msg, NULL);
1545   event = gst_event_new_custom (GST_EVENT_SINK_MESSAGE, structure);
1546
1547   return event;
1548 }
1549
1550 /**
1551  * gst_event_parse_sink_message:
1552  * @event: The event to query
1553  * @msg: (out) (transfer full): a pointer to store the #GstMessage in.
1554  *
1555  * Parse the sink-message event. Unref @msg after usage.
1556  */
1557 void
1558 gst_event_parse_sink_message (GstEvent * event, GstMessage ** msg)
1559 {
1560   const GstStructure *structure;
1561
1562   g_return_if_fail (GST_IS_EVENT (event));
1563   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SINK_MESSAGE);
1564
1565   structure = GST_EVENT_STRUCTURE (event);
1566   if (msg)
1567     *msg =
1568         GST_MESSAGE (g_value_dup_boxed (gst_structure_id_get_value
1569             (structure, GST_QUARK (MESSAGE))));
1570 }
1571
1572 /**
1573  * gst_event_new_stream_start:
1574  * @stream_id: Identifier for this stream
1575  *
1576  * Create a new STREAM_START event. The stream start event can only
1577  * travel downstream synchronized with the buffer flow. It is expected
1578  * to be the first event that is sent for a new stream.
1579  *
1580  * Source elements, demuxers and other elements that create new streams
1581  * are supposed to send this event as the first event of a new stream. It
1582  * should not be sent after a flushing seek or in similar situations
1583  * and is used to mark the beginning of a new logical stream. Elements
1584  * combining multiple streams must ensure that this event is only forwarded
1585  * downstream once and not for every single input stream.
1586  *
1587  * The @stream_id should be a unique string that consists of the upstream
1588  * stream-id, / as separator and a unique stream-id for this specific
1589  * stream. A new stream-id should only be created for a stream if the upstream
1590  * stream is split into (potentially) multiple new streams, e.g. in a demuxer,
1591  * but not for every single element in the pipeline.
1592  * gst_pad_create_stream_id() or gst_pad_create_stream_id_printf() can be
1593  * used to create a stream-id.  There are no particular semantics for the
1594  * stream-id, though it should be deterministic (to support stream matching)
1595  * and it might be used to order streams (besides any information conveyed by
1596  * stream flags).
1597  *
1598  * Returns: (transfer full): the new STREAM_START event.
1599  */
1600 GstEvent *
1601 gst_event_new_stream_start (const gchar * stream_id)
1602 {
1603   GstStructure *s;
1604
1605   g_return_val_if_fail (stream_id != NULL, NULL);
1606
1607   s = gst_structure_new_id (GST_QUARK (EVENT_STREAM_START),
1608       GST_QUARK (STREAM_ID), G_TYPE_STRING, stream_id,
1609       GST_QUARK (FLAGS), GST_TYPE_STREAM_FLAGS, GST_STREAM_FLAG_NONE, NULL);
1610
1611   return gst_event_new_custom (GST_EVENT_STREAM_START, s);
1612 }
1613
1614 /**
1615  * gst_event_parse_stream_start:
1616  * @event: a stream-start event.
1617  * @stream_id: (out) (transfer none): pointer to store the stream-id
1618  *
1619  * Parse a stream-id @event and store the result in the given @stream_id
1620  * location. The string stored in @stream_id must not be modified and will
1621  * remain valid only until @event gets freed. Make a copy if you want to
1622  * modify it or store it for later use.
1623  */
1624 void
1625 gst_event_parse_stream_start (GstEvent * event, const gchar ** stream_id)
1626 {
1627   const GstStructure *structure;
1628   const GValue *val;
1629
1630   g_return_if_fail (event != NULL);
1631   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_START);
1632
1633   structure = gst_event_get_structure (event);
1634   val = gst_structure_id_get_value (structure, GST_QUARK (STREAM_ID));
1635
1636   if (stream_id)
1637     *stream_id = g_value_get_string (val);
1638 }
1639
1640 /**
1641  * gst_event_set_stream:
1642  * @event: a stream-start event
1643  * @stream: (transfer none): the stream object to set
1644  *
1645  * Set the @stream on the stream-start @event
1646  *
1647  * Since: 1.10
1648  */
1649 void
1650 gst_event_set_stream (GstEvent * event, GstStream * stream)
1651 {
1652   g_return_if_fail (event != NULL);
1653   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_START);
1654   g_return_if_fail (gst_event_is_writable (event));
1655
1656   gst_structure_id_set (GST_EVENT_STRUCTURE (event),
1657       GST_QUARK (STREAM), GST_TYPE_STREAM, stream, NULL);
1658 }
1659
1660 /**
1661  * gst_event_parse_stream:
1662  * @event: a stream-start event
1663  * @stream: (out) (transfer full): adress of variable to store the stream
1664  *
1665  * Parse a stream-start @event and extract the #GstStream from it.
1666  *
1667  * Since: 1.10
1668  */
1669 void
1670 gst_event_parse_stream (GstEvent * event, GstStream ** stream)
1671 {
1672   g_return_if_fail (event != NULL);
1673   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_START);
1674
1675   if (stream) {
1676     gst_structure_id_get (GST_EVENT_STRUCTURE (event),
1677         GST_QUARK (STREAM), GST_TYPE_STREAM, stream, NULL);
1678   }
1679
1680 }
1681
1682 /**
1683  * gst_event_set_stream_flags:
1684  * @event: a stream-start event
1685  * @flags: the stream flags to set
1686  *
1687  * Since: 1.2
1688  */
1689 void
1690 gst_event_set_stream_flags (GstEvent * event, GstStreamFlags flags)
1691 {
1692   g_return_if_fail (event != NULL);
1693   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_START);
1694   g_return_if_fail (gst_event_is_writable (event));
1695
1696   gst_structure_id_set (GST_EVENT_STRUCTURE (event),
1697       GST_QUARK (FLAGS), GST_TYPE_STREAM_FLAGS, flags, NULL);
1698 }
1699
1700 /**
1701  * gst_event_parse_stream_flags:
1702  * @event: a stream-start event
1703  * @flags: (out): address of variable where to store the stream flags
1704  *
1705  * Since: 1.2
1706  */
1707 void
1708 gst_event_parse_stream_flags (GstEvent * event, GstStreamFlags * flags)
1709 {
1710   g_return_if_fail (event != NULL);
1711   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_START);
1712
1713   if (flags) {
1714     gst_structure_id_get (GST_EVENT_STRUCTURE (event),
1715         GST_QUARK (FLAGS), GST_TYPE_STREAM_FLAGS, flags, NULL);
1716   }
1717 }
1718
1719 /**
1720  * gst_event_set_group_id:
1721  * @event: a stream-start event
1722  * @group_id: the group id to set
1723  *
1724  * All streams that have the same group id are supposed to be played
1725  * together, i.e. all streams inside a container file should have the
1726  * same group id but different stream ids. The group id should change
1727  * each time the stream is started, resulting in different group ids
1728  * each time a file is played for example.
1729  *
1730  * Use gst_util_group_id_next() to get a new group id.
1731  *
1732  * Since: 1.2
1733  */
1734 void
1735 gst_event_set_group_id (GstEvent * event, guint group_id)
1736 {
1737   g_return_if_fail (event != NULL);
1738   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_START);
1739   g_return_if_fail (gst_event_is_writable (event));
1740
1741   gst_structure_id_set (GST_EVENT_STRUCTURE (event),
1742       GST_QUARK (GROUP_ID), G_TYPE_UINT, group_id, NULL);
1743 }
1744
1745 /**
1746  * gst_event_parse_group_id:
1747  * @event: a stream-start event
1748  * @group_id: (out): address of variable where to store the group id
1749  *
1750  * Returns: %TRUE if a group id was set on the event and could be parsed,
1751  *   %FALSE otherwise.
1752  *
1753  * Since: 1.2
1754  */
1755 gboolean
1756 gst_event_parse_group_id (GstEvent * event, guint * group_id)
1757 {
1758   g_return_val_if_fail (event != NULL, FALSE);
1759   g_return_val_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_START,
1760       FALSE);
1761
1762   if (group_id) {
1763     return gst_structure_id_get (GST_EVENT_STRUCTURE (event),
1764         GST_QUARK (GROUP_ID), G_TYPE_UINT, group_id, NULL);
1765   }
1766
1767   return TRUE;
1768 }
1769
1770 /**
1771  * gst_event_new_stream_collection:
1772  * @collection: Active collection for this data flow
1773  *
1774  * Create a new STREAM_COLLECTION event. The stream collection event can only
1775  * travel downstream synchronized with the buffer flow.
1776  *
1777  * Source elements, demuxers and other elements that manage collections
1778  * of streams and post #GstStreamCollection messages on the bus also send
1779  * this event downstream on each pad involved in the collection, so that
1780  * activation of a new collection can be tracked through the downstream
1781  * data flow.
1782  *
1783  * Returns: (transfer full): the new STREAM_COLLECTION event.
1784  *
1785  * Since: 1.10
1786  */
1787 GstEvent *
1788 gst_event_new_stream_collection (GstStreamCollection * collection)
1789 {
1790   GstStructure *s;
1791
1792   g_return_val_if_fail (collection != NULL, NULL);
1793   g_return_val_if_fail (GST_IS_STREAM_COLLECTION (collection), NULL);
1794
1795   s = gst_structure_new_id (GST_QUARK (EVENT_STREAM_COLLECTION),
1796       GST_QUARK (COLLECTION), GST_TYPE_STREAM_COLLECTION, collection, NULL);
1797
1798   return gst_event_new_custom (GST_EVENT_STREAM_COLLECTION, s);
1799 }
1800
1801 /**
1802  * gst_event_parse_stream_collection:
1803  * @event: a stream-collection event
1804  * @collection: (out): pointer to store the collection
1805  *
1806  * Retrieve new #GstStreamCollection from STREAM_COLLECTION event @event.
1807  *
1808  * Since: 1.10
1809  */
1810 void
1811 gst_event_parse_stream_collection (GstEvent * event,
1812     GstStreamCollection ** collection)
1813 {
1814   const GstStructure *structure;
1815
1816   g_return_if_fail (event != NULL);
1817   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_COLLECTION);
1818
1819   structure = gst_event_get_structure (event);
1820
1821   if (collection) {
1822     gst_structure_id_get (structure,
1823         GST_QUARK (COLLECTION), GST_TYPE_STREAM_COLLECTION, collection, NULL);
1824   }
1825 }
1826
1827 /**
1828  * gst_event_new_toc:
1829  * @toc: (transfer none): #GstToc structure.
1830  * @updated: whether @toc was updated or not.
1831  *
1832  * Generate a TOC event from the given @toc. The purpose of the TOC event is to
1833  * inform elements that some kind of the TOC was found.
1834  *
1835  * Returns: (transfer full): a new #GstEvent.
1836  */
1837 GstEvent *
1838 gst_event_new_toc (GstToc * toc, gboolean updated)
1839 {
1840   GstStructure *toc_struct;
1841   GQuark id;
1842
1843   g_return_val_if_fail (toc != NULL, NULL);
1844
1845   GST_CAT_INFO (GST_CAT_EVENT, "creating toc event");
1846
1847   /* need different structure names so sticky_multi event stuff on pads
1848    * works, i.e. both TOC events are kept around */
1849   if (gst_toc_get_scope (toc) == GST_TOC_SCOPE_GLOBAL)
1850     id = GST_QUARK (EVENT_TOC_GLOBAL);
1851   else
1852     id = GST_QUARK (EVENT_TOC_CURRENT);
1853
1854   toc_struct = gst_structure_new_id (id,
1855       GST_QUARK (TOC), GST_TYPE_TOC, toc,
1856       GST_QUARK (UPDATED), G_TYPE_BOOLEAN, updated, NULL);
1857
1858   return gst_event_new_custom (GST_EVENT_TOC, toc_struct);
1859 }
1860
1861 /**
1862  * gst_event_parse_toc:
1863  * @event: a TOC event.
1864  * @toc: (out) (transfer full): pointer to #GstToc structure.
1865  * @updated: (out): pointer to store TOC updated flag.
1866  *
1867  * Parse a TOC @event and store the results in the given @toc and @updated locations.
1868  */
1869 void
1870 gst_event_parse_toc (GstEvent * event, GstToc ** toc, gboolean * updated)
1871 {
1872   const GstStructure *structure;
1873
1874   g_return_if_fail (event != NULL);
1875   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TOC);
1876   g_return_if_fail (toc != NULL);
1877
1878   structure = gst_event_get_structure (event);
1879
1880   gst_structure_id_get (structure,
1881       GST_QUARK (TOC), GST_TYPE_TOC, toc,
1882       GST_QUARK (UPDATED), G_TYPE_BOOLEAN, updated, NULL);
1883 }
1884
1885 /**
1886  * gst_event_new_toc_select:
1887  * @uid: UID in the TOC to start playback from.
1888  *
1889  * Generate a TOC select event with the given @uid. The purpose of the
1890  * TOC select event is to start playback based on the TOC's entry with the
1891  * given @uid.
1892  *
1893  * Returns: a new #GstEvent.
1894  */
1895 GstEvent *
1896 gst_event_new_toc_select (const gchar * uid)
1897 {
1898   GstStructure *structure;
1899
1900   g_return_val_if_fail (uid != NULL, NULL);
1901
1902   GST_CAT_INFO (GST_CAT_EVENT, "creating toc select event for UID: %s", uid);
1903
1904   structure = gst_structure_new_id (GST_QUARK (EVENT_TOC_SELECT),
1905       GST_QUARK (UID), G_TYPE_STRING, uid, NULL);
1906
1907   return gst_event_new_custom (GST_EVENT_TOC_SELECT, structure);
1908 }
1909
1910 /**
1911  * gst_event_parse_toc_select:
1912  * @event: a TOC select event.
1913  * @uid: (out) (transfer full) (allow-none): storage for the selection UID.
1914  *
1915  * Parse a TOC select @event and store the results in the given @uid location.
1916  */
1917 void
1918 gst_event_parse_toc_select (GstEvent * event, gchar ** uid)
1919 {
1920   const GstStructure *structure;
1921   const GValue *val;
1922
1923   g_return_if_fail (event != NULL);
1924   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TOC_SELECT);
1925
1926   structure = gst_event_get_structure (event);
1927   val = gst_structure_id_get_value (structure, GST_QUARK (UID));
1928
1929   if (uid != NULL)
1930     *uid = g_strdup (g_value_get_string (val));
1931
1932 }
1933
1934 /**
1935  * gst_event_new_protection:
1936  * @system_id: (transfer none): a string holding a UUID that uniquely
1937  * identifies a protection system.
1938  * @data: (transfer none): a #GstBuffer holding protection system specific
1939  * information. The reference count of the buffer will be incremented by one.
1940  * @origin: a string indicating where the protection
1941  * information carried in the event was extracted from. The allowed values
1942  * of this string will depend upon the protection scheme.
1943  *
1944  * Creates a new event containing information specific to a particular
1945  * protection system (uniquely identified by @system_id), by which that
1946  * protection system can acquire key(s) to decrypt a protected stream.
1947  *
1948  * In order for a decryption element to decrypt media
1949  * protected using a specific system, it first needs all the
1950  * protection system specific information necessary to acquire the decryption
1951  * key(s) for that stream. The functions defined here enable this information
1952  * to be passed in events from elements that extract it
1953  * (e.g., ISOBMFF demuxers, MPEG DASH demuxers) to protection decrypter
1954  * elements that use it.
1955  *
1956  * Events containing protection system specific information are created using
1957  * #gst_event_new_protection, and they can be parsed by downstream elements
1958  * using #gst_event_parse_protection.
1959  *
1960  * In Common Encryption, protection system specific information may be located
1961  * within ISOBMFF files, both in movie (moov) boxes and movie fragment (moof)
1962  * boxes; it may also be contained in ContentProtection elements within MPEG
1963  * DASH MPDs. The events created by #gst_event_new_protection contain data
1964  * identifying from which of these locations the encapsulated protection system
1965  * specific information originated. This origin information is required as
1966  * some protection systems use different encodings depending upon where the
1967  * information originates.
1968  *
1969  * The events returned by gst_event_new_protection() are implemented
1970  * in such a way as to ensure that the most recently-pushed protection info
1971  * event of a particular @origin and @system_id will
1972  * be stuck to the output pad of the sending element.
1973  *
1974  * Returns: a #GST_EVENT_PROTECTION event, if successful; %NULL
1975  * if unsuccessful.
1976  *
1977  * Since: 1.6
1978  */
1979 GstEvent *
1980 gst_event_new_protection (const gchar * system_id,
1981     GstBuffer * data, const gchar * origin)
1982 {
1983   gchar *event_name;
1984   GstEvent *event;
1985   GstStructure *s;
1986
1987   g_return_val_if_fail (system_id != NULL, NULL);
1988   g_return_val_if_fail (data != NULL, NULL);
1989
1990   event_name =
1991       g_strconcat ("GstProtectionEvent", origin ? "-" : "",
1992       origin ? origin : "", "-", system_id, NULL);
1993
1994   GST_CAT_INFO (GST_CAT_EVENT, "creating protection event %s", event_name);
1995
1996   s = gst_structure_new (event_name, "data", GST_TYPE_BUFFER, data,
1997       "system_id", G_TYPE_STRING, system_id, NULL);
1998   if (origin)
1999     gst_structure_set (s, "origin", G_TYPE_STRING, origin, NULL);
2000   event = gst_event_new_custom (GST_EVENT_PROTECTION, s);
2001
2002   g_free (event_name);
2003   return event;
2004 }
2005
2006 /**
2007  * gst_event_parse_protection:
2008  * @event: a #GST_EVENT_PROTECTION event.
2009  * @system_id: (out) (allow-none) (transfer none): pointer to store the UUID
2010  * string uniquely identifying a content protection system.
2011  * @data: (out) (allow-none) (transfer none): pointer to store a #GstBuffer
2012  * holding protection system specific information.
2013  * @origin: (allow-none) (transfer none): pointer to store a value that
2014  * indicates where the protection information carried by @event was extracted
2015  * from.
2016  *
2017  * Parses an event containing protection system specific information and stores
2018  * the results in @system_id, @data and @origin. The data stored in @system_id,
2019  * @origin and @data are valid until @event is released.
2020  *
2021  * Since: 1.6
2022  */
2023 void
2024 gst_event_parse_protection (GstEvent * event, const gchar ** system_id,
2025     GstBuffer ** data, const gchar ** origin)
2026 {
2027   const GstStructure *s;
2028
2029   g_return_if_fail (event != NULL);
2030   g_return_if_fail (GST_IS_EVENT (event));
2031   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_PROTECTION);
2032
2033   s = gst_event_get_structure (event);
2034
2035   if (origin)
2036     *origin = gst_structure_get_string (s, "origin");
2037
2038   if (system_id)
2039     *system_id = gst_structure_get_string (s, "system_id");
2040
2041   if (data) {
2042     const GValue *value = gst_structure_get_value (s, "data");
2043     *data = gst_value_get_buffer (value);
2044   }
2045 }
2046
2047 /**
2048  * gst_event_new_segment_done:
2049  * @format: The format of the position being done
2050  * @position: The position of the segment being done
2051  *
2052  * Create a new segment-done event. This event is sent by elements that
2053  * finish playback of a segment as a result of a segment seek.
2054  *
2055  * Returns: (transfer full): a new #GstEvent
2056  */
2057 GstEvent *
2058 gst_event_new_segment_done (GstFormat format, gint64 position)
2059 {
2060   GstEvent *event;
2061   GstStructure *structure;
2062
2063   GST_CAT_INFO (GST_CAT_EVENT, "creating segment-done event");
2064
2065   structure = gst_structure_new_id (GST_QUARK (EVENT_SEGMENT_DONE),
2066       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
2067       GST_QUARK (POSITION), G_TYPE_INT64, position, NULL);
2068
2069   event = gst_event_new_custom (GST_EVENT_SEGMENT_DONE, structure);
2070
2071   return event;
2072 }
2073
2074 /**
2075  * gst_event_parse_segment_done:
2076  * @event: A valid #GstEvent of type GST_EVENT_SEGMENT_DONE.
2077  * @format: (out) (allow-none): Result location for the format, or %NULL
2078  * @position: (out) (allow-none): Result location for the position, or %NULL
2079  *
2080  * Extracts the position and format from the segment done message.
2081  *
2082  */
2083 void
2084 gst_event_parse_segment_done (GstEvent * event, GstFormat * format,
2085     gint64 * position)
2086 {
2087   const GstStructure *structure;
2088   const GValue *val;
2089
2090   g_return_if_fail (event != NULL);
2091   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT_DONE);
2092
2093   structure = gst_event_get_structure (event);
2094
2095   val = gst_structure_id_get_value (structure, GST_QUARK (FORMAT));
2096   if (format != NULL)
2097     *format = g_value_get_enum (val);
2098
2099   val = gst_structure_id_get_value (structure, GST_QUARK (POSITION));
2100   if (position != NULL)
2101     *position = g_value_get_int64 (val);
2102 }