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