event: Allow GST_CLOCK_TIME_NONE as duration for GAP events
[platform/upstream/gstreamer.git] / gst / gstevent.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wim.taymans@chello.be>
4  *                    2005 Wim Taymans <wim@fluendo.com>
5  *
6  * gstevent.c: GstEvent subsystem
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, 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  * <example>
55  * <title>performing a seek on a pipeline</title>
56  *   <programlisting>
57  *   GstEvent *event;
58  *   gboolean result;
59  *   ...
60  *   // construct a seek event to play the media from second 2 to 5, flush
61  *   // the pipeline to decrease latency.
62  *   event = gst_event_new_seek (1.0, 
63  *      GST_FORMAT_TIME, 
64  *      GST_SEEK_FLAG_FLUSH,
65  *      GST_SEEK_TYPE_SET, 2 * GST_SECOND,
66  *      GST_SEEK_TYPE_SET, 5 * GST_SECOND);
67  *   ...
68  *   result = gst_element_send_event (pipeline, event);
69  *   if (!result)
70  *     g_warning ("seek failed");
71  *   ...
72  *   </programlisting>
73  * </example>
74  *
75  * Last reviewed on 2012-03-28 (0.11.3)
76  */
77
78
79 #include "gst_private.h"
80 #include <string.h>             /* memcpy */
81
82 #include "gstinfo.h"
83 #include "gstevent.h"
84 #include "gstenumtypes.h"
85 #include "gstutils.h"
86 #include "gstquark.h"
87 #include "gstvalue.h"
88
89 GType _gst_event_type = 0;
90
91 typedef struct
92 {
93   GstEvent event;
94
95   GstStructure *structure;
96 } GstEventImpl;
97
98 #define GST_EVENT_STRUCTURE(e)  (((GstEventImpl *)(e))->structure)
99
100 typedef struct
101 {
102   const gint type;
103   const gchar *name;
104   GQuark quark;
105 } GstEventQuarks;
106
107 static GstEventQuarks event_quarks[] = {
108   {GST_EVENT_UNKNOWN, "unknown", 0},
109   {GST_EVENT_FLUSH_START, "flush-start", 0},
110   {GST_EVENT_FLUSH_STOP, "flush-stop", 0},
111   {GST_EVENT_STREAM_START, "stream-start", 0},
112   {GST_EVENT_CAPS, "caps", 0},
113   {GST_EVENT_SEGMENT, "segment", 0},
114   {GST_EVENT_TAG, "tag", 0},
115   {GST_EVENT_TOC, "toc", 0},
116   {GST_EVENT_BUFFERSIZE, "buffersize", 0},
117   {GST_EVENT_SINK_MESSAGE, "sink-message", 0},
118   {GST_EVENT_EOS, "eos", 0},
119   {GST_EVENT_SEGMENT_DONE, "segment-done", 0},
120   {GST_EVENT_GAP, "gap", 0},
121   {GST_EVENT_QOS, "qos", 0},
122   {GST_EVENT_SEEK, "seek", 0},
123   {GST_EVENT_NAVIGATION, "navigation", 0},
124   {GST_EVENT_LATENCY, "latency", 0},
125   {GST_EVENT_STEP, "step", 0},
126   {GST_EVENT_RECONFIGURE, "reconfigure", 0},
127   {GST_EVENT_TOC_SELECT, "toc-select", 0},
128   {GST_EVENT_CUSTOM_UPSTREAM, "custom-upstream", 0},
129   {GST_EVENT_CUSTOM_DOWNSTREAM, "custom-downstream", 0},
130   {GST_EVENT_CUSTOM_DOWNSTREAM_OOB, "custom-downstream-oob", 0},
131   {GST_EVENT_CUSTOM_DOWNSTREAM_STICKY, "custom-downstream-sticky", 0},
132   {GST_EVENT_CUSTOM_BOTH, "custom-both", 0},
133   {GST_EVENT_CUSTOM_BOTH_OOB, "custom-both-oob", 0},
134
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   return GST_EVENT_CAST (copy);
258 }
259
260 static void
261 gst_event_init (GstEventImpl * event, GstEventType type)
262 {
263   gst_mini_object_init (GST_MINI_OBJECT_CAST (event), 0, _gst_event_type,
264       (GstMiniObjectCopyFunction) _gst_event_copy, NULL,
265       (GstMiniObjectFreeFunction) _gst_event_free);
266
267   GST_EVENT_TYPE (event) = type;
268   GST_EVENT_TIMESTAMP (event) = GST_CLOCK_TIME_NONE;
269   GST_EVENT_SEQNUM (event) = gst_util_seqnum_next ();
270 }
271
272
273 /**
274  * gst_event_new_custom:
275  * @type: The type of the new event
276  * @structure: (transfer full): the structure for the event. The event will
277  *     take ownership of the structure.
278  *
279  * Create a new custom-typed event. This can be used for anything not
280  * handled by other event-specific functions to pass an event to another
281  * element.
282  *
283  * Make sure to allocate an event type with the #GST_EVENT_MAKE_TYPE macro,
284  * assigning a free number and filling in the correct direction and
285  * serialization flags.
286  *
287  * New custom events can also be created by subclassing the event type if
288  * needed.
289  *
290  * Returns: (transfer full): the new custom event.
291  */
292 GstEvent *
293 gst_event_new_custom (GstEventType type, GstStructure * structure)
294 {
295   GstEventImpl *event;
296
297   event = g_slice_new0 (GstEventImpl);
298
299   GST_CAT_DEBUG (GST_CAT_EVENT, "creating new event %p %s %d", event,
300       gst_event_type_get_name (type), type);
301
302   if (structure) {
303     /* structure must not have a parent */
304     if (!gst_structure_set_parent_refcount (structure,
305             &event->event.mini_object.refcount))
306       goto had_parent;
307
308   }
309   gst_event_init (event, type);
310
311   GST_EVENT_STRUCTURE (event) = structure;
312
313   return GST_EVENT_CAST (event);
314
315   /* ERRORS */
316 had_parent:
317   {
318     g_slice_free1 (sizeof (GstEventImpl), event);
319     g_warning ("structure is already owned by another object");
320     return NULL;
321   }
322 }
323
324 /**
325  * gst_event_get_structure:
326  * @event: The #GstEvent.
327  *
328  * Access the structure of the event.
329  *
330  * Returns: The structure of the event. The structure is still
331  * owned by the event, which means that you should not free it and
332  * that the pointer becomes invalid when you free the event.
333  *
334  * MT safe.
335  */
336 const GstStructure *
337 gst_event_get_structure (GstEvent * event)
338 {
339   g_return_val_if_fail (GST_IS_EVENT (event), NULL);
340
341   return GST_EVENT_STRUCTURE (event);
342 }
343
344 /**
345  * gst_event_writable_structure:
346  * @event: The #GstEvent.
347  *
348  * Get a writable version of the structure.
349  *
350  * Returns: The structure of the event. The structure is still
351  * owned by the event, which means that you should not free it and
352  * that the pointer becomes invalid when you free the event.
353  * This function checks if @event is writable and will never return NULL.
354  *
355  * MT safe.
356  */
357 GstStructure *
358 gst_event_writable_structure (GstEvent * event)
359 {
360   GstStructure *structure;
361
362   g_return_val_if_fail (GST_IS_EVENT (event), NULL);
363   g_return_val_if_fail (gst_event_is_writable (event), NULL);
364
365   structure = GST_EVENT_STRUCTURE (event);
366
367   if (structure == NULL) {
368     structure =
369         gst_structure_new_id_empty (gst_event_type_to_quark (GST_EVENT_TYPE
370             (event)));
371     gst_structure_set_parent_refcount (structure, &event->mini_object.refcount);
372     GST_EVENT_STRUCTURE (event) = structure;
373   }
374   return structure;
375 }
376
377 /**
378  * gst_event_has_name:
379  * @event: The #GstEvent.
380  * @name: name to check
381  *
382  * Checks if @event has the given @name. This function is usually used to
383  * check the name of a custom event.
384  *
385  * Returns: %TRUE if @name matches the name of the event structure.
386  */
387 gboolean
388 gst_event_has_name (GstEvent * event, const gchar * name)
389 {
390   g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
391
392   if (GST_EVENT_STRUCTURE (event) == NULL)
393     return FALSE;
394
395   return gst_structure_has_name (GST_EVENT_STRUCTURE (event), name);
396 }
397
398 /**
399  * gst_event_get_seqnum:
400  * @event: A #GstEvent.
401  *
402  * Retrieve the sequence number of a event.
403  *
404  * Events have ever-incrementing sequence numbers, which may also be set
405  * explicitly via gst_event_set_seqnum(). Sequence numbers are typically used to
406  * indicate that a event corresponds to some other set of events or messages,
407  * for example an EOS event corresponding to a SEEK event. It is considered good
408  * practice to make this correspondence when possible, though it is not
409  * required.
410  *
411  * Note that events and messages share the same sequence number incrementor;
412  * two events or messages will never have the same sequence number unless
413  * that correspondence was made explicitly.
414  *
415  * Returns: The event's sequence number.
416  *
417  * MT safe.
418  */
419 guint32
420 gst_event_get_seqnum (GstEvent * event)
421 {
422   g_return_val_if_fail (GST_IS_EVENT (event), -1);
423
424   return GST_EVENT_SEQNUM (event);
425 }
426
427 /**
428  * gst_event_set_seqnum:
429  * @event: A #GstEvent.
430  * @seqnum: A sequence number.
431  *
432  * Set the sequence number of a event.
433  *
434  * This function might be called by the creator of a event to indicate that the
435  * event relates to other events or messages. See gst_event_get_seqnum() for
436  * more information.
437  *
438  * MT safe.
439  */
440 void
441 gst_event_set_seqnum (GstEvent * event, guint32 seqnum)
442 {
443   g_return_if_fail (GST_IS_EVENT (event));
444
445   GST_EVENT_SEQNUM (event) = seqnum;
446 }
447
448 /**
449  * gst_event_new_flush_start:
450  *
451  * Allocate a new flush start event. The flush start event can be sent
452  * upstream and downstream and travels out-of-bounds with the dataflow.
453  *
454  * It marks pads as being flushing and will make them return
455  * #GST_FLOW_FLUSHING when used for data flow with gst_pad_push(),
456  * gst_pad_chain(), gst_pad_get_range() and gst_pad_pull_range().
457  * Any event (except a #GST_EVENT_FLUSH_STOP) received
458  * on a flushing pad will return %FALSE immediately.
459  *
460  * Elements should unlock any blocking functions and exit their streaming
461  * functions as fast as possible when this event is received.
462  *
463  * This event is typically generated after a seek to flush out all queued data
464  * in the pipeline so that the new media is played as soon as possible.
465  *
466  * Returns: (transfer full): a new flush start event.
467  */
468 GstEvent *
469 gst_event_new_flush_start (void)
470 {
471   return gst_event_new_custom (GST_EVENT_FLUSH_START, NULL);
472 }
473
474 /**
475  * gst_event_new_flush_stop:
476  * @reset_time: if time should be reset
477  *
478  * Allocate a new flush stop event. The flush stop event can be sent
479  * upstream and downstream and travels serialized with the dataflow.
480  * It is typically sent after sending a FLUSH_START event to make the
481  * pads accept data again.
482  *
483  * Elements can process this event synchronized with the dataflow since
484  * the preceeding FLUSH_START event stopped the dataflow.
485  *
486  * This event is typically generated to complete a seek and to resume
487  * dataflow.
488  *
489  * Returns: (transfer full): a new flush stop event.
490  */
491 GstEvent *
492 gst_event_new_flush_stop (gboolean reset_time)
493 {
494   GstEvent *event;
495
496   GST_CAT_INFO (GST_CAT_EVENT, "creating flush stop %d", reset_time);
497
498   event = gst_event_new_custom (GST_EVENT_FLUSH_STOP,
499       gst_structure_new_id (GST_QUARK (EVENT_FLUSH_STOP),
500           GST_QUARK (RESET_TIME), G_TYPE_BOOLEAN, reset_time, NULL));
501
502   return event;
503 }
504
505 /**
506  * gst_event_parse_flush_stop:
507  * @event: The event to parse
508  * @reset_time: (out): if time should be reset
509  *
510  * Parse the FLUSH_STOP event and retrieve the @reset_time member.
511  */
512 void
513 gst_event_parse_flush_stop (GstEvent * event, gboolean * reset_time)
514 {
515   GstStructure *structure;
516
517   g_return_if_fail (GST_IS_EVENT (event));
518   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_STOP);
519
520   structure = GST_EVENT_STRUCTURE (event);
521   if (G_LIKELY (reset_time))
522     *reset_time =
523         g_value_get_boolean (gst_structure_id_get_value (structure,
524             GST_QUARK (RESET_TIME)));
525 }
526
527 /**
528  * gst_event_new_eos:
529  *
530  * Create a new EOS event. The eos event can only travel downstream
531  * synchronized with the buffer flow. Elements that receive the EOS
532  * event on a pad can return #GST_FLOW_EOS as a #GstFlowReturn
533  * when data after the EOS event arrives.
534  *
535  * The EOS event will travel down to the sink elements in the pipeline
536  * which will then post the #GST_MESSAGE_EOS on the bus after they have
537  * finished playing any buffered data.
538  *
539  * When all sinks have posted an EOS message, an EOS message is
540  * forwarded to the application.
541  *
542  * The EOS event itself will not cause any state transitions of the pipeline.
543  *
544  * Returns: (transfer full): the new EOS event.
545  */
546 GstEvent *
547 gst_event_new_eos (void)
548 {
549   return gst_event_new_custom (GST_EVENT_EOS, NULL);
550 }
551
552 /**
553  * gst_event_new_gap:
554  * @timestamp: the start time (pts) of the gap
555  * @duration: the duration of the gap
556  *
557  * Create a new GAP event. A gap event can be thought of as conceptually
558  * equivalent to a buffer to signal that there is no data for a certain
559  * amount of time. This is useful to signal a gap to downstream elements
560  * which may wait for data, such as muxers or mixers or overlays, especially
561  * for sparse streams such as subtitle streams.
562  *
563  * Returns: (transfer full): the new GAP event.
564  */
565 GstEvent *
566 gst_event_new_gap (GstClockTime timestamp, GstClockTime duration)
567 {
568   GstEvent *event;
569
570   g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), NULL);
571
572   GST_CAT_TRACE (GST_CAT_EVENT, "creating gap %" GST_TIME_FORMAT " - "
573       "%" GST_TIME_FORMAT " (duration: %" GST_TIME_FORMAT ")",
574       GST_TIME_ARGS (timestamp), GST_TIME_ARGS (timestamp + duration),
575       GST_TIME_ARGS (duration));
576
577   event = gst_event_new_custom (GST_EVENT_GAP,
578       gst_structure_new_id (GST_QUARK (EVENT_GAP),
579           GST_QUARK (TIMESTAMP), GST_TYPE_CLOCK_TIME, timestamp,
580           GST_QUARK (DURATION), GST_TYPE_CLOCK_TIME, duration, NULL));
581
582   return event;
583 }
584
585 /**
586  * gst_event_parse_gap:
587  * @event: a #GstEvent of type #GST_EVENT_GAP
588  * @timestamp: (out) (allow-none): location where to store the
589  *     start time (pts) of the gap, or %NULL
590  * @duration: (out) (allow-none): location where to store the duration of
591  *     the gap, or %NULL
592  *
593  * Extract timestamp and duration from a new GAP event.
594  */
595 void
596 gst_event_parse_gap (GstEvent * event, GstClockTime * timestamp,
597     GstClockTime * duration)
598 {
599   GstStructure *structure;
600
601   g_return_if_fail (GST_IS_EVENT (event));
602   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_GAP);
603
604   structure = GST_EVENT_STRUCTURE (event);
605   gst_structure_id_get (structure,
606       GST_QUARK (TIMESTAMP), GST_TYPE_CLOCK_TIME, timestamp,
607       GST_QUARK (DURATION), GST_TYPE_CLOCK_TIME, duration, NULL);
608 }
609
610 /**
611  * gst_event_new_caps:
612  * @caps: (transfer none): a #GstCaps
613  *
614  * Create a new CAPS event for @caps. The caps event can only travel downstream
615  * synchronized with the buffer flow and contains the format of the buffers
616  * that will follow after the event.
617  *
618  * Returns: (transfer full): the new CAPS event.
619  */
620 GstEvent *
621 gst_event_new_caps (GstCaps * caps)
622 {
623   GstEvent *event;
624
625   g_return_val_if_fail (caps != NULL, NULL);
626   g_return_val_if_fail (gst_caps_is_fixed (caps), NULL);
627
628   GST_CAT_INFO (GST_CAT_EVENT, "creating caps event %" GST_PTR_FORMAT, caps);
629
630   event = gst_event_new_custom (GST_EVENT_CAPS,
631       gst_structure_new_id (GST_QUARK (EVENT_CAPS),
632           GST_QUARK (CAPS), GST_TYPE_CAPS, caps, NULL));
633
634   return event;
635 }
636
637 /**
638  * gst_event_parse_caps:
639  * @event: The event to parse
640  * @caps: (out) (transfer none): A pointer to the caps
641  *
642  * Get the caps from @event. The caps remains valid as long as @event remains
643  * valid.
644  */
645 void
646 gst_event_parse_caps (GstEvent * event, GstCaps ** caps)
647 {
648   GstStructure *structure;
649
650   g_return_if_fail (GST_IS_EVENT (event));
651   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_CAPS);
652
653   structure = GST_EVENT_STRUCTURE (event);
654   if (G_LIKELY (caps))
655     *caps =
656         g_value_get_boxed (gst_structure_id_get_value (structure,
657             GST_QUARK (CAPS)));
658 }
659
660 /**
661  * gst_event_new_segment:
662  * @segment: (transfer none): a #GstSegment
663  *
664  * Create a new SEGMENT event for @segment. The segment event can only travel
665  * downstream synchronized with the buffer flow and contains timing information
666  * and playback properties for the buffers that will follow.
667  *
668  * The newsegment event marks the range of buffers to be processed. All
669  * data not within the segment range is not to be processed. This can be
670  * used intelligently by plugins to apply more efficient methods of skipping
671  * unneeded data. The valid range is expressed with the @start and @stop
672  * values.
673  *
674  * The time value of the segment is used in conjunction with the start
675  * value to convert the buffer timestamps into the stream time. This is
676  * usually done in sinks to report the current stream_time.
677  * @time represents the stream_time of a buffer carrying a timestamp of
678  * @start. @time cannot be -1.
679  *
680  * @start cannot be -1, @stop can be -1. If there
681  * is a valid @stop given, it must be greater or equal the @start, including
682  * when the indicated playback @rate is < 0.
683  *
684  * The @applied_rate value provides information about any rate adjustment that
685  * has already been made to the timestamps and content on the buffers of the
686  * stream. (@rate * @applied_rate) should always equal the rate that has been
687  * requested for playback. For example, if an element has an input segment
688  * with intended playback @rate of 2.0 and applied_rate of 1.0, it can adjust
689  * incoming timestamps and buffer content by half and output a newsegment event
690  * with @rate of 1.0 and @applied_rate of 2.0
691  *
692  * After a newsegment event, the buffer stream time is calculated with:
693  *
694  *   time + (TIMESTAMP(buf) - start) * ABS (rate * applied_rate)
695  *
696  * Returns: (transfer full): the new SEGMENT event.
697  */
698 GstEvent *
699 gst_event_new_segment (const GstSegment * segment)
700 {
701   GstEvent *event;
702
703   g_return_val_if_fail (segment != NULL, NULL);
704   g_return_val_if_fail (segment->rate != 0.0, NULL);
705   g_return_val_if_fail (segment->applied_rate != 0.0, NULL);
706   g_return_val_if_fail (segment->format != GST_FORMAT_UNDEFINED, NULL);
707
708   GST_CAT_INFO (GST_CAT_EVENT, "creating segment event %" GST_SEGMENT_FORMAT,
709       segment);
710
711   event = gst_event_new_custom (GST_EVENT_SEGMENT,
712       gst_structure_new_id (GST_QUARK (EVENT_SEGMENT),
713           GST_QUARK (SEGMENT), GST_TYPE_SEGMENT, segment, NULL));
714
715   return event;
716 }
717
718 /**
719  * gst_event_parse_segment:
720  * @event: The event to parse
721  * @segment: (out) (transfer none): a pointer to a #GstSegment
722  *
723  * Parses a segment @event and stores the result in the given @segment location.
724  * @segment remains valid only until the @event is freed. Don't modify the segment
725  * and make a copy if you want to modify it or store it for later use.
726  */
727 void
728 gst_event_parse_segment (GstEvent * event, const GstSegment ** segment)
729 {
730   GstStructure *structure;
731
732   g_return_if_fail (GST_IS_EVENT (event));
733   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
734
735   if (segment) {
736     structure = GST_EVENT_STRUCTURE (event);
737     *segment = g_value_get_boxed (gst_structure_id_get_value (structure,
738             GST_QUARK (SEGMENT)));
739   }
740 }
741
742 /**
743  * gst_event_copy_segment:
744  * @event: The event to parse
745  * @segment: a pointer to a #GstSegment
746  *
747  * Parses a segment @event and copies the #GstSegment into the location
748  * given by @segment.
749  */
750 void
751 gst_event_copy_segment (GstEvent * event, GstSegment * segment)
752 {
753   const GstSegment *src;
754
755   g_return_if_fail (GST_IS_EVENT (event));
756   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
757
758   if (segment) {
759     gst_event_parse_segment (event, &src);
760     gst_segment_copy_into (src, segment);
761   }
762 }
763
764 /**
765  * gst_event_new_tag:
766  * @taglist: (transfer full): metadata list. The event will take ownership
767  *     of the taglist.
768  *
769  * Generates a metadata tag event from the given @taglist.
770  *
771  * The scope of the taglist specifies if the taglist applies to the
772  * complete medium or only to this specific stream. As the tag event
773  * is a sticky event, elements should merge tags received from
774  * upstream with a given scope with their own tags with the same
775  * scope and create a new tag event from it.
776  *
777  * Returns: (transfer full): a new #GstEvent
778  */
779 GstEvent *
780 gst_event_new_tag (GstTagList * taglist)
781 {
782   GstStructure *s;
783   GValue val = G_VALUE_INIT;
784   const gchar *names[] = { "GstTagList-stream", "GstTagList-global" };
785
786   g_return_val_if_fail (taglist != NULL, NULL);
787
788   s = gst_structure_new_empty (names[gst_tag_list_get_scope (taglist)]);
789   g_value_init (&val, GST_TYPE_TAG_LIST);
790   g_value_take_boxed (&val, taglist);
791   gst_structure_id_take_value (s, GST_QUARK (TAGLIST), &val);
792   return gst_event_new_custom (GST_EVENT_TAG, s);
793 }
794
795 /**
796  * gst_event_parse_tag:
797  * @event: a tag event
798  * @taglist: (out) (transfer none): pointer to metadata list
799  *
800  * Parses a tag @event and stores the results in the given @taglist location.
801  * No reference to the taglist will be returned, it remains valid only until
802  * the @event is freed. Don't modify or free the taglist, make a copy if you
803  * want to modify it or store it for later use.
804  */
805 void
806 gst_event_parse_tag (GstEvent * event, GstTagList ** taglist)
807 {
808   const GValue *val;
809
810   g_return_if_fail (GST_IS_EVENT (event));
811   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TAG);
812
813   val = gst_structure_id_get_value (GST_EVENT_STRUCTURE (event),
814       GST_QUARK (TAGLIST));
815
816   if (taglist)
817     *taglist = (GstTagList *) g_value_get_boxed (val);
818 }
819
820 /* buffersize event */
821 /**
822  * gst_event_new_buffer_size:
823  * @format: buffer format
824  * @minsize: minimum buffer size
825  * @maxsize: maximum buffer size
826  * @async: thread behavior
827  *
828  * Create a new buffersize event. The event is sent downstream and notifies
829  * elements that they should provide a buffer of the specified dimensions.
830  *
831  * When the @async flag is set, a thread boundary is preferred.
832  *
833  * Returns: (transfer full): a new #GstEvent
834  */
835 GstEvent *
836 gst_event_new_buffer_size (GstFormat format, gint64 minsize,
837     gint64 maxsize, gboolean async)
838 {
839   GstEvent *event;
840   GstStructure *structure;
841
842   GST_CAT_INFO (GST_CAT_EVENT,
843       "creating buffersize format %s, minsize %" G_GINT64_FORMAT
844       ", maxsize %" G_GINT64_FORMAT ", async %d", gst_format_get_name (format),
845       minsize, maxsize, async);
846
847   structure = gst_structure_new_id (GST_QUARK (EVENT_BUFFER_SIZE),
848       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
849       GST_QUARK (MINSIZE), G_TYPE_INT64, minsize,
850       GST_QUARK (MAXSIZE), G_TYPE_INT64, maxsize,
851       GST_QUARK (ASYNC), G_TYPE_BOOLEAN, async, NULL);
852   event = gst_event_new_custom (GST_EVENT_BUFFERSIZE, structure);
853
854   return event;
855 }
856
857 /**
858  * gst_event_parse_buffer_size:
859  * @event: The event to query
860  * @format: (out): A pointer to store the format in
861  * @minsize: (out): A pointer to store the minsize in
862  * @maxsize: (out): A pointer to store the maxsize in
863  * @async: (out): A pointer to store the async-flag in
864  *
865  * Get the format, minsize, maxsize and async-flag in the buffersize event.
866  */
867 void
868 gst_event_parse_buffer_size (GstEvent * event, GstFormat * format,
869     gint64 * minsize, gint64 * maxsize, gboolean * async)
870 {
871   const GstStructure *structure;
872
873   g_return_if_fail (GST_IS_EVENT (event));
874   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_BUFFERSIZE);
875
876   structure = GST_EVENT_STRUCTURE (event);
877   if (format)
878     *format = (GstFormat)
879         g_value_get_enum (gst_structure_id_get_value (structure,
880             GST_QUARK (FORMAT)));
881   if (minsize)
882     *minsize =
883         g_value_get_int64 (gst_structure_id_get_value (structure,
884             GST_QUARK (MINSIZE)));
885   if (maxsize)
886     *maxsize =
887         g_value_get_int64 (gst_structure_id_get_value (structure,
888             GST_QUARK (MAXSIZE)));
889   if (async)
890     *async =
891         g_value_get_boolean (gst_structure_id_get_value (structure,
892             GST_QUARK (ASYNC)));
893 }
894
895 /**
896  * gst_event_new_qos:
897  * @type: the QoS type
898  * @proportion: the proportion of the qos message
899  * @diff: The time difference of the last Clock sync
900  * @timestamp: The timestamp of the buffer
901  *
902  * Allocate a new qos event with the given values.
903  * The QOS event is generated in an element that wants an upstream
904  * element to either reduce or increase its rate because of
905  * high/low CPU load or other resource usage such as network performance or
906  * throttling. Typically sinks generate these events for each buffer
907  * they receive.
908  *
909  * @type indicates the reason for the QoS event. #GST_QOS_TYPE_OVERFLOW is
910  * used when a buffer arrived in time or when the sink cannot keep up with
911  * the upstream datarate. #GST_QOS_TYPE_UNDERFLOW is when the sink is not
912  * receiving buffers fast enough and thus has to drop late buffers. 
913  * #GST_QOS_TYPE_THROTTLE is used when the datarate is artificially limited
914  * by the application, for example to reduce power consumption.
915  *
916  * @proportion indicates the real-time performance of the streaming in the
917  * element that generated the QoS event (usually the sink). The value is
918  * generally computed based on more long term statistics about the streams
919  * timestamps compared to the clock.
920  * A value < 1.0 indicates that the upstream element is producing data faster
921  * than real-time. A value > 1.0 indicates that the upstream element is not
922  * producing data fast enough. 1.0 is the ideal @proportion value. The
923  * proportion value can safely be used to lower or increase the quality of
924  * the element.
925  *
926  * @diff is the difference against the clock in running time of the last
927  * buffer that caused the element to generate the QOS event. A negative value
928  * means that the buffer with @timestamp arrived in time. A positive value
929  * indicates how late the buffer with @timestamp was. When throttling is
930  * enabled, @diff will be set to the requested throttling interval.
931  *
932  * @timestamp is the timestamp of the last buffer that cause the element
933  * to generate the QOS event. It is expressed in running time and thus an ever
934  * increasing value.
935  *
936  * The upstream element can use the @diff and @timestamp values to decide
937  * whether to process more buffers. For possitive @diff, all buffers with
938  * timestamp <= @timestamp + @diff will certainly arrive late in the sink
939  * as well. A (negative) @diff value so that @timestamp + @diff would yield a
940  * result smaller than 0 is not allowed.
941  *
942  * The application can use general event probes to intercept the QoS
943  * event and implement custom application specific QoS handling.
944  *
945  * Returns: (transfer full): a new QOS event.
946  */
947 GstEvent *
948 gst_event_new_qos (GstQOSType type, gdouble proportion,
949     GstClockTimeDiff diff, GstClockTime timestamp)
950 {
951   GstEvent *event;
952   GstStructure *structure;
953
954   /* diff must be positive or timestamp + diff must be positive */
955   g_return_val_if_fail (diff >= 0 || -diff <= timestamp, NULL);
956
957   GST_CAT_LOG (GST_CAT_EVENT,
958       "creating qos type %d, proportion %lf, diff %" G_GINT64_FORMAT
959       ", timestamp %" GST_TIME_FORMAT, type, proportion,
960       diff, GST_TIME_ARGS (timestamp));
961
962   structure = gst_structure_new_id (GST_QUARK (EVENT_QOS),
963       GST_QUARK (TYPE), GST_TYPE_QOS_TYPE, type,
964       GST_QUARK (PROPORTION), G_TYPE_DOUBLE, proportion,
965       GST_QUARK (DIFF), G_TYPE_INT64, diff,
966       GST_QUARK (TIMESTAMP), G_TYPE_UINT64, timestamp, NULL);
967   event = gst_event_new_custom (GST_EVENT_QOS, structure);
968
969   return event;
970 }
971
972 /**
973  * gst_event_parse_qos:
974  * @event: The event to query
975  * @type: (out): A pointer to store the QoS type in
976  * @proportion: (out): A pointer to store the proportion in
977  * @diff: (out): A pointer to store the diff in
978  * @timestamp: (out): A pointer to store the timestamp in
979  *
980  * Get the type, proportion, diff and timestamp in the qos event. See
981  * gst_event_new_qos() for more information about the different QoS values.
982  */
983 void
984 gst_event_parse_qos (GstEvent * event, GstQOSType * type,
985     gdouble * proportion, GstClockTimeDiff * diff, GstClockTime * timestamp)
986 {
987   const GstStructure *structure;
988
989   g_return_if_fail (GST_IS_EVENT (event));
990   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_QOS);
991
992   structure = GST_EVENT_STRUCTURE (event);
993   if (type)
994     *type = (GstQOSType)
995         g_value_get_enum (gst_structure_id_get_value (structure,
996             GST_QUARK (TYPE)));
997   if (proportion)
998     *proportion =
999         g_value_get_double (gst_structure_id_get_value (structure,
1000             GST_QUARK (PROPORTION)));
1001   if (diff)
1002     *diff =
1003         g_value_get_int64 (gst_structure_id_get_value (structure,
1004             GST_QUARK (DIFF)));
1005   if (timestamp)
1006     *timestamp =
1007         g_value_get_uint64 (gst_structure_id_get_value (structure,
1008             GST_QUARK (TIMESTAMP)));
1009 }
1010
1011 /**
1012  * gst_event_new_seek:
1013  * @rate: The new playback rate
1014  * @format: The format of the seek values
1015  * @flags: The optional seek flags
1016  * @start_type: The type and flags for the new start position
1017  * @start: The value of the new start position
1018  * @stop_type: The type and flags for the new stop position
1019  * @stop: The value of the new stop position
1020  *
1021  * Allocate a new seek event with the given parameters.
1022  *
1023  * The seek event configures playback of the pipeline between @start to @stop
1024  * at the speed given in @rate, also called a playback segment.
1025  * The @start and @stop values are expressed in @format.
1026  *
1027  * A @rate of 1.0 means normal playback rate, 2.0 means double speed.
1028  * Negatives values means backwards playback. A value of 0.0 for the
1029  * rate is not allowed and should be accomplished instead by PAUSING the
1030  * pipeline.
1031  *
1032  * A pipeline has a default playback segment configured with a start
1033  * position of 0, a stop position of -1 and a rate of 1.0. The currently
1034  * configured playback segment can be queried with #GST_QUERY_SEGMENT. 
1035  *
1036  * @start_type and @stop_type specify how to adjust the currently configured 
1037  * start and stop fields in playback segment. Adjustments can be made relative
1038  * or absolute to the last configured values. A type of #GST_SEEK_TYPE_NONE
1039  * means that the position should not be updated.
1040  *
1041  * When the rate is positive and @start has been updated, playback will start
1042  * from the newly configured start position. 
1043  *
1044  * For negative rates, playback will start from the newly configured stop
1045  * position (if any). If the stop position is updated, it must be different from
1046  * -1 (#GST_CLOCK_TIME_NONE) for negative rates.
1047  *
1048  * It is not possible to seek relative to the current playback position, to do
1049  * this, PAUSE the pipeline, query the current playback position with
1050  * #GST_QUERY_POSITION and update the playback segment current position with a
1051  * #GST_SEEK_TYPE_SET to the desired position.
1052  *
1053  * Returns: (transfer full): a new seek event.
1054  */
1055 GstEvent *
1056 gst_event_new_seek (gdouble rate, GstFormat format, GstSeekFlags flags,
1057     GstSeekType start_type, gint64 start, GstSeekType stop_type, gint64 stop)
1058 {
1059   GstEvent *event;
1060   GstStructure *structure;
1061
1062   g_return_val_if_fail (rate != 0.0, NULL);
1063
1064   if (format == GST_FORMAT_TIME) {
1065     GST_CAT_INFO (GST_CAT_EVENT,
1066         "creating seek rate %lf, format TIME, flags %d, "
1067         "start_type %d, start %" GST_TIME_FORMAT ", "
1068         "stop_type %d, stop %" GST_TIME_FORMAT,
1069         rate, flags, start_type, GST_TIME_ARGS (start),
1070         stop_type, GST_TIME_ARGS (stop));
1071   } else {
1072     GST_CAT_INFO (GST_CAT_EVENT,
1073         "creating seek rate %lf, format %s, flags %d, "
1074         "start_type %d, start %" G_GINT64_FORMAT ", "
1075         "stop_type %d, stop %" G_GINT64_FORMAT,
1076         rate, gst_format_get_name (format), flags, start_type, start, stop_type,
1077         stop);
1078   }
1079
1080   structure = gst_structure_new_id (GST_QUARK (EVENT_SEEK),
1081       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1082       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1083       GST_QUARK (FLAGS), GST_TYPE_SEEK_FLAGS, flags,
1084       GST_QUARK (CUR_TYPE), GST_TYPE_SEEK_TYPE, start_type,
1085       GST_QUARK (CUR), G_TYPE_INT64, start,
1086       GST_QUARK (STOP_TYPE), GST_TYPE_SEEK_TYPE, stop_type,
1087       GST_QUARK (STOP), G_TYPE_INT64, stop, NULL);
1088   event = gst_event_new_custom (GST_EVENT_SEEK, structure);
1089
1090   return event;
1091 }
1092
1093 /**
1094  * gst_event_parse_seek:
1095  * @event: a seek event
1096  * @rate: (out): result location for the rate
1097  * @format: (out): result location for the stream format
1098  * @flags:  (out): result location for the #GstSeekFlags
1099  * @start_type: (out): result location for the #GstSeekType of the start position
1100  * @start: (out): result location for the start postion expressed in @format
1101  * @stop_type:  (out): result location for the #GstSeekType of the stop position
1102  * @stop: (out): result location for the stop postion expressed in @format
1103  *
1104  * Parses a seek @event and stores the results in the given result locations.
1105  */
1106 void
1107 gst_event_parse_seek (GstEvent * event, gdouble * rate,
1108     GstFormat * format, GstSeekFlags * flags, GstSeekType * start_type,
1109     gint64 * start, GstSeekType * stop_type, gint64 * stop)
1110 {
1111   const GstStructure *structure;
1112
1113   g_return_if_fail (GST_IS_EVENT (event));
1114   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEEK);
1115
1116   structure = GST_EVENT_STRUCTURE (event);
1117   if (rate)
1118     *rate =
1119         g_value_get_double (gst_structure_id_get_value (structure,
1120             GST_QUARK (RATE)));
1121   if (format)
1122     *format = (GstFormat)
1123         g_value_get_enum (gst_structure_id_get_value (structure,
1124             GST_QUARK (FORMAT)));
1125   if (flags)
1126     *flags = (GstSeekFlags)
1127         g_value_get_flags (gst_structure_id_get_value (structure,
1128             GST_QUARK (FLAGS)));
1129   if (start_type)
1130     *start_type = (GstSeekType)
1131         g_value_get_enum (gst_structure_id_get_value (structure,
1132             GST_QUARK (CUR_TYPE)));
1133   if (start)
1134     *start =
1135         g_value_get_int64 (gst_structure_id_get_value (structure,
1136             GST_QUARK (CUR)));
1137   if (stop_type)
1138     *stop_type = (GstSeekType)
1139         g_value_get_enum (gst_structure_id_get_value (structure,
1140             GST_QUARK (STOP_TYPE)));
1141   if (stop)
1142     *stop =
1143         g_value_get_int64 (gst_structure_id_get_value (structure,
1144             GST_QUARK (STOP)));
1145 }
1146
1147 /**
1148  * gst_event_new_navigation:
1149  * @structure: (transfer full): description of the event. The event will take
1150  *     ownership of the structure.
1151  *
1152  * Create a new navigation event from the given description.
1153  *
1154  * Returns: (transfer full): a new #GstEvent
1155  */
1156 GstEvent *
1157 gst_event_new_navigation (GstStructure * structure)
1158 {
1159   g_return_val_if_fail (structure != NULL, NULL);
1160
1161   return gst_event_new_custom (GST_EVENT_NAVIGATION, structure);
1162 }
1163
1164 /**
1165  * gst_event_new_latency:
1166  * @latency: the new latency value
1167  *
1168  * Create a new latency event. The event is sent upstream from the sinks and
1169  * notifies elements that they should add an additional @latency to the
1170  * running time before synchronising against the clock.
1171  *
1172  * The latency is mostly used in live sinks and is always expressed in
1173  * the time format.
1174  *
1175  * Returns: (transfer full): a new #GstEvent
1176  */
1177 GstEvent *
1178 gst_event_new_latency (GstClockTime latency)
1179 {
1180   GstEvent *event;
1181   GstStructure *structure;
1182
1183   GST_CAT_INFO (GST_CAT_EVENT,
1184       "creating latency event %" GST_TIME_FORMAT, GST_TIME_ARGS (latency));
1185
1186   structure = gst_structure_new_id (GST_QUARK (EVENT_LATENCY),
1187       GST_QUARK (LATENCY), G_TYPE_UINT64, latency, NULL);
1188   event = gst_event_new_custom (GST_EVENT_LATENCY, structure);
1189
1190   return event;
1191 }
1192
1193 /**
1194  * gst_event_parse_latency:
1195  * @event: The event to query
1196  * @latency: (out): A pointer to store the latency in.
1197  *
1198  * Get the latency in the latency event.
1199  */
1200 void
1201 gst_event_parse_latency (GstEvent * event, GstClockTime * latency)
1202 {
1203   g_return_if_fail (GST_IS_EVENT (event));
1204   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_LATENCY);
1205
1206   if (latency)
1207     *latency =
1208         g_value_get_uint64 (gst_structure_id_get_value (GST_EVENT_STRUCTURE
1209             (event), GST_QUARK (LATENCY)));
1210 }
1211
1212 /**
1213  * gst_event_new_step:
1214  * @format: the format of @amount
1215  * @amount: the amount of data to step
1216  * @rate: the step rate
1217  * @flush: flushing steps
1218  * @intermediate: intermediate steps
1219  *
1220  * Create a new step event. The purpose of the step event is to instruct a sink
1221  * to skip @amount (expressed in @format) of media. It can be used to implement
1222  * stepping through the video frame by frame or for doing fast trick modes.
1223  *
1224  * A rate of <= 0.0 is not allowed. Pause the pipeline, for the effect of rate
1225  * = 0.0 or first reverse the direction of playback using a seek event to get
1226  * the same effect as rate < 0.0.
1227  *
1228  * The @flush flag will clear any pending data in the pipeline before starting
1229  * the step operation.
1230  *
1231  * The @intermediate flag instructs the pipeline that this step operation is
1232  * part of a larger step operation.
1233  *
1234  * Returns: (transfer full): a new #GstEvent
1235  */
1236 GstEvent *
1237 gst_event_new_step (GstFormat format, guint64 amount, gdouble rate,
1238     gboolean flush, gboolean intermediate)
1239 {
1240   GstEvent *event;
1241   GstStructure *structure;
1242
1243   g_return_val_if_fail (rate > 0.0, NULL);
1244
1245   GST_CAT_INFO (GST_CAT_EVENT, "creating step event");
1246
1247   structure = gst_structure_new_id (GST_QUARK (EVENT_STEP),
1248       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1249       GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
1250       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1251       GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
1252       GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate, NULL);
1253   event = gst_event_new_custom (GST_EVENT_STEP, structure);
1254
1255   return event;
1256 }
1257
1258 /**
1259  * gst_event_parse_step:
1260  * @event: The event to query
1261  * @format: (out) (allow-none): a pointer to store the format in
1262  * @amount: (out) (allow-none): a pointer to store the amount in
1263  * @rate: (out) (allow-none): a pointer to store the rate in
1264  * @flush: (out) (allow-none): a pointer to store the flush boolean in
1265  * @intermediate: (out) (allow-none): a pointer to store the intermediate
1266  *     boolean in
1267  *
1268  * Parse the step event.
1269  */
1270 void
1271 gst_event_parse_step (GstEvent * event, GstFormat * format, guint64 * amount,
1272     gdouble * rate, gboolean * flush, gboolean * intermediate)
1273 {
1274   const GstStructure *structure;
1275
1276   g_return_if_fail (GST_IS_EVENT (event));
1277   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STEP);
1278
1279   structure = GST_EVENT_STRUCTURE (event);
1280   if (format)
1281     *format =
1282         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
1283             GST_QUARK (FORMAT)));
1284   if (amount)
1285     *amount = g_value_get_uint64 (gst_structure_id_get_value (structure,
1286             GST_QUARK (AMOUNT)));
1287   if (rate)
1288     *rate = g_value_get_double (gst_structure_id_get_value (structure,
1289             GST_QUARK (RATE)));
1290   if (flush)
1291     *flush = g_value_get_boolean (gst_structure_id_get_value (structure,
1292             GST_QUARK (FLUSH)));
1293   if (intermediate)
1294     *intermediate = g_value_get_boolean (gst_structure_id_get_value (structure,
1295             GST_QUARK (INTERMEDIATE)));
1296 }
1297
1298 /**
1299  * gst_event_new_reconfigure:
1300
1301  * Create a new reconfigure event. The purpose of the reconfingure event is
1302  * to travel upstream and make elements renegotiate their caps or reconfigure
1303  * their buffer pools. This is useful when changing properties on elements
1304  * or changing the topology of the pipeline.
1305  *
1306  * Returns: (transfer full): a new #GstEvent
1307  */
1308 GstEvent *
1309 gst_event_new_reconfigure (void)
1310 {
1311   GstEvent *event;
1312
1313   GST_CAT_INFO (GST_CAT_EVENT, "creating reconfigure event");
1314
1315   event = gst_event_new_custom (GST_EVENT_RECONFIGURE, NULL);
1316
1317   return event;
1318 }
1319
1320 /**
1321  * gst_event_new_sink_message:
1322  * @name: a name for the event
1323  * @msg: (transfer none): the #GstMessage to be posted
1324  *
1325  * Create a new sink-message event. The purpose of the sink-message event is
1326  * to instruct a sink to post the message contained in the event synchronized
1327  * with the stream.
1328  *
1329  * @name is used to store multiple sticky events on one pad.
1330  *
1331  * Returns: (transfer full): a new #GstEvent
1332  */
1333 /* FIXME 0.11: take ownership of msg for consistency? */
1334 GstEvent *
1335 gst_event_new_sink_message (const gchar * name, GstMessage * msg)
1336 {
1337   GstEvent *event;
1338   GstStructure *structure;
1339
1340   g_return_val_if_fail (msg != NULL, NULL);
1341
1342   GST_CAT_INFO (GST_CAT_EVENT, "creating sink-message event");
1343
1344   structure = gst_structure_new_id (g_quark_from_string (name),
1345       GST_QUARK (MESSAGE), GST_TYPE_MESSAGE, msg, NULL);
1346   event = gst_event_new_custom (GST_EVENT_SINK_MESSAGE, structure);
1347
1348   return event;
1349 }
1350
1351 /**
1352  * gst_event_parse_sink_message:
1353  * @event: The event to query
1354  * @msg: (out) (transfer full): a pointer to store the #GstMessage in.
1355  *
1356  * Parse the sink-message event. Unref @msg after usage.
1357  */
1358 void
1359 gst_event_parse_sink_message (GstEvent * event, GstMessage ** msg)
1360 {
1361   const GstStructure *structure;
1362
1363   g_return_if_fail (GST_IS_EVENT (event));
1364   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SINK_MESSAGE);
1365
1366   structure = GST_EVENT_STRUCTURE (event);
1367   if (msg)
1368     *msg =
1369         GST_MESSAGE (g_value_dup_boxed (gst_structure_id_get_value
1370             (structure, GST_QUARK (MESSAGE))));
1371 }
1372
1373 /**
1374  * gst_event_new_stream_start:
1375  * @stream_id: Identifier for this stream
1376  *
1377  * Create a new STREAM_START event. The stream start event can only
1378  * travel downstream synchronized with the buffer flow. It is expected
1379  * to be the first event that is sent for a new stream.
1380  *
1381  * Source elements, demuxers and other elements that create new streams
1382  * are supposed to send this event as the first event of a new stream. It
1383  * should not be send after a flushing seek or in similar situations
1384  * and is used to mark the beginning of a new logical stream. Elements
1385  * combining multiple streams must ensure that this event is only forwarded
1386  * downstream once and not for every single input stream.
1387  *
1388  * The @stream_id should be a unique string that consists of the upstream
1389  * stream-id, / as separator and a unique stream-id for this specific
1390  * stream. A new stream-id should only be created for a stream if the upstream
1391  * stream is split into (potentially) multiple new streams, e.g. in a demuxer,
1392  * but not for every single element in the pipeline.
1393  * gst_pad_create_stream_id() or gst_pad_create_stream_id_printf() can be
1394  * used to create a stream-id.
1395  *
1396  * Returns: (transfer full): the new STREAM_START event.
1397  */
1398 GstEvent *
1399 gst_event_new_stream_start (const gchar * stream_id)
1400 {
1401   GstStructure *s;
1402
1403   g_return_val_if_fail (stream_id != NULL, NULL);
1404
1405   s = gst_structure_new_id (GST_QUARK (EVENT_STREAM_START),
1406       GST_QUARK (STREAM_ID), G_TYPE_STRING, stream_id, NULL);
1407
1408   return gst_event_new_custom (GST_EVENT_STREAM_START, s);
1409 }
1410
1411 /**
1412  * gst_event_parse_stream_start:
1413  * @event: a stream-start event.
1414  * @stream_id: (out): pointer to store the stream-id
1415  *
1416  * Parse a stream-id @event and store the result in the given @stream_id
1417  * location. The string stored in @stream_id must not be modified and will
1418  * remain valid only until @event gets freed. Make a copy if you want to
1419  * modify it or store it for later use.
1420  */
1421 void
1422 gst_event_parse_stream_start (GstEvent * event, const gchar ** stream_id)
1423 {
1424   const GstStructure *structure;
1425   const GValue *val;
1426
1427   g_return_if_fail (event != NULL);
1428   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_START);
1429
1430   structure = gst_event_get_structure (event);
1431   val = gst_structure_id_get_value (structure, GST_QUARK (STREAM_ID));
1432
1433   if (stream_id)
1434     *stream_id = g_value_get_string (val);
1435 }
1436
1437 /**
1438  * gst_event_new_toc:
1439  * @toc: (transfer none): #GstToc structure.
1440  * @updated: whether @toc was updated or not.
1441  *
1442  * Generate a TOC event from the given @toc. The purpose of the TOC event is to
1443  * inform elements that some kind of the TOC was found.
1444  *
1445  * Returns: (transfer full): a new #GstEvent.
1446  */
1447 GstEvent *
1448 gst_event_new_toc (GstToc * toc, gboolean updated)
1449 {
1450   GstStructure *toc_struct;
1451   GQuark id;
1452
1453   g_return_val_if_fail (toc != NULL, NULL);
1454
1455   GST_CAT_INFO (GST_CAT_EVENT, "creating toc event");
1456
1457   /* need different structure names so sticky_multi event stuff on pads
1458    * works, i.e. both TOC events are kept around */
1459   if (gst_toc_get_scope (toc) == GST_TOC_SCOPE_GLOBAL)
1460     id = GST_QUARK (EVENT_TOC_GLOBAL);
1461   else
1462     id = GST_QUARK (EVENT_TOC_CURRENT);
1463
1464   toc_struct = gst_structure_new_id (id,
1465       GST_QUARK (TOC), GST_TYPE_TOC, toc,
1466       GST_QUARK (UPDATED), G_TYPE_BOOLEAN, updated, NULL);
1467
1468   return gst_event_new_custom (GST_EVENT_TOC, toc_struct);
1469 }
1470
1471 /**
1472  * gst_event_parse_toc:
1473  * @event: a TOC event.
1474  * @toc: (out) (transfer full): pointer to #GstToc structure.
1475  * @updated: (out): pointer to store TOC updated flag.
1476  *
1477  * Parse a TOC @event and store the results in the given @toc and @updated locations.
1478  */
1479 void
1480 gst_event_parse_toc (GstEvent * event, GstToc ** toc, gboolean * updated)
1481 {
1482   const GstStructure *structure;
1483
1484   g_return_if_fail (event != NULL);
1485   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TOC);
1486   g_return_if_fail (toc != NULL);
1487
1488   structure = gst_event_get_structure (event);
1489
1490   gst_structure_id_get (structure,
1491       GST_QUARK (TOC), GST_TYPE_TOC, toc,
1492       GST_QUARK (UPDATED), G_TYPE_BOOLEAN, updated, NULL);
1493 }
1494
1495 /**
1496  * gst_event_new_toc_select:
1497  * @uid: UID in the TOC to start playback from.
1498  *
1499  * Generate a TOC select event with the given @uid. The purpose of the
1500  * TOC select event is to start playback based on the TOC's entry with the
1501  * given @uid.
1502  *
1503  * Returns: a new #GstEvent.
1504  */
1505 GstEvent *
1506 gst_event_new_toc_select (const gchar * uid)
1507 {
1508   GstStructure *structure;
1509
1510   g_return_val_if_fail (uid != NULL, NULL);
1511
1512   GST_CAT_INFO (GST_CAT_EVENT, "creating toc select event for UID: %s", uid);
1513
1514   structure = gst_structure_new_id (GST_QUARK (EVENT_TOC_SELECT),
1515       GST_QUARK (UID), G_TYPE_STRING, uid, NULL);
1516
1517   return gst_event_new_custom (GST_EVENT_TOC_SELECT, structure);
1518 }
1519
1520 /**
1521  * gst_event_parse_toc_select:
1522  * @event: a TOC select event.
1523  * @uid: (out): storage for the selection UID.
1524  *
1525  * Parse a TOC select @event and store the results in the given @uid location.
1526  */
1527 void
1528 gst_event_parse_toc_select (GstEvent * event, gchar ** uid)
1529 {
1530   const GstStructure *structure;
1531   const GValue *val;
1532
1533   g_return_if_fail (event != NULL);
1534   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TOC_SELECT);
1535
1536   structure = gst_event_get_structure (event);
1537   val = gst_structure_id_get_value (structure, GST_QUARK (UID));
1538
1539   if (uid != NULL)
1540     *uid = g_strdup (g_value_get_string (val));
1541
1542 }
1543
1544 /**
1545  * gst_event_new_segment_done:
1546  * @format: The format of the position being done
1547  * @position: The position of the segment being done
1548  *
1549  * Create a new segment-done event. This event is sent by elements that
1550  * finish playback of a segment as a result of a segment seek.
1551  *
1552  * Returns: (transfer full): a new #GstEvent
1553  */
1554 GstEvent *
1555 gst_event_new_segment_done (GstFormat format, gint64 position)
1556 {
1557   GstEvent *event;
1558   GstStructure *structure;
1559
1560   GST_CAT_INFO (GST_CAT_EVENT, "creating segment-done event");
1561
1562   structure = gst_structure_new_id (GST_QUARK (EVENT_SEGMENT_DONE),
1563       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1564       GST_QUARK (POSITION), G_TYPE_INT64, position, NULL);
1565
1566   event = gst_event_new_custom (GST_EVENT_SEGMENT_DONE, structure);
1567
1568   return event;
1569 }
1570
1571 /**
1572  * gst_event_parse_segment_done:
1573  * @event: A valid #GstEvent of type GST_EVENT_SEGMENT_DONE.
1574  * @format: (out): Result location for the format, or NULL
1575  * @position: (out): Result location for the position, or NULL
1576  *
1577  * Extracts the position and format from the segment done message.
1578  *
1579  */
1580 void
1581 gst_event_parse_segment_done (GstEvent * event, GstFormat * format,
1582     gint64 * position)
1583 {
1584   const GstStructure *structure;
1585   const GValue *val;
1586
1587   g_return_if_fail (event != NULL);
1588   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT_DONE);
1589
1590   structure = gst_event_get_structure (event);
1591
1592   val = gst_structure_id_get_value (structure, GST_QUARK (FORMAT));
1593   if (format != NULL)
1594     *format = g_value_get_enum (val);
1595
1596   val = gst_structure_id_get_value (structure, GST_QUARK (POSITION));
1597   if (position != NULL)
1598     *position = g_value_get_int64 (val);
1599 }