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