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