Merge branch 'master' into 0.11
[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 2006-09-6 (0.10.10)
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_STREAM_CONFIG, "stream-config", 0},
114   {GST_EVENT_SEGMENT, "segment", 0},
115   {GST_EVENT_TAG, "tag", 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_CUSTOM_UPSTREAM, "custom-upstream", 0},
128   {GST_EVENT_CUSTOM_DOWNSTREAM, "custom-downstream", 0},
129   {GST_EVENT_CUSTOM_DOWNSTREAM_OOB, "custom-downstream-oob", 0},
130   {GST_EVENT_CUSTOM_DOWNSTREAM_STICKY, "custom-downstream-sticky", 0},
131   {GST_EVENT_CUSTOM_BOTH, "custom-both", 0},
132   {GST_EVENT_CUSTOM_BOTH_OOB, "custom-both-oob", 0},
133
134   {0, NULL, 0}
135 };
136
137 GST_DEFINE_MINI_OBJECT_TYPE (GstEvent, gst_event);
138
139 void
140 _priv_gst_event_initialize (void)
141 {
142   gint i;
143
144   _gst_event_type = gst_event_get_type ();
145
146   g_type_class_ref (gst_seek_flags_get_type ());
147   g_type_class_ref (gst_seek_type_get_type ());
148
149   for (i = 0; event_quarks[i].name; i++) {
150     event_quarks[i].quark = g_quark_from_static_string (event_quarks[i].name);
151   }
152 }
153
154 /**
155  * gst_event_type_get_name:
156  * @type: the event type
157  *
158  * Get a printable name for the given event type. Do not modify or free.
159  *
160  * Returns: a reference to the static name of the event.
161  */
162 const gchar *
163 gst_event_type_get_name (GstEventType type)
164 {
165   gint i;
166
167   for (i = 0; event_quarks[i].name; i++) {
168     if (type == event_quarks[i].type)
169       return event_quarks[i].name;
170   }
171   return "unknown";
172 }
173
174 /**
175  * gst_event_type_to_quark:
176  * @type: the event type
177  *
178  * Get the unique quark for the given event type.
179  *
180  * Returns: the quark associated with the event type
181  */
182 GQuark
183 gst_event_type_to_quark (GstEventType type)
184 {
185   gint i;
186
187   for (i = 0; event_quarks[i].name; i++) {
188     if (type == event_quarks[i].type)
189       return event_quarks[i].quark;
190   }
191   return 0;
192 }
193
194 /**
195  * gst_event_type_get_flags:
196  * @type: a #GstEventType
197  *
198  * Gets the #GstEventTypeFlags associated with @type.
199  *
200  * Returns: a #GstEventTypeFlags.
201  */
202 GstEventTypeFlags
203 gst_event_type_get_flags (GstEventType type)
204 {
205   GstEventTypeFlags ret;
206
207   ret = type & ((1 << GST_EVENT_NUM_SHIFT) - 1);
208
209   return ret;
210 }
211
212 static void
213 _gst_event_free (GstEvent * event)
214 {
215   GstStructure *s;
216
217   g_return_if_fail (event != NULL);
218   g_return_if_fail (GST_IS_EVENT (event));
219
220   GST_CAT_LOG (GST_CAT_EVENT, "freeing event %p type %s", event,
221       GST_EVENT_TYPE_NAME (event));
222
223   s = GST_EVENT_STRUCTURE (event);
224
225   if (s) {
226     gst_structure_set_parent_refcount (s, NULL);
227     gst_structure_free (s);
228   }
229
230   g_slice_free1 (GST_MINI_OBJECT_SIZE (event), event);
231 }
232
233 static void gst_event_init (GstEventImpl * event, gsize size,
234     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, sizeof (GstEventImpl), 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, gsize size, GstEventType type)
262 {
263   gst_mini_object_init (GST_MINI_OBJECT_CAST (event), _gst_event_type, size);
264
265   event->event.mini_object.copy = (GstMiniObjectCopyFunction) _gst_event_copy;
266   event->event.mini_object.free = (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 }
272
273
274 /**
275  * gst_event_new_custom:
276  * @type: The type of the new event
277  * @structure: (transfer full): the structure for the event. The event will
278  *     take ownership of the structure.
279  *
280  * Create a new custom-typed event. This can be used for anything not
281  * handled by other event-specific functions to pass an event to another
282  * element.
283  *
284  * Make sure to allocate an event type with the #GST_EVENT_MAKE_TYPE macro,
285  * assigning a free number and filling in the correct direction and
286  * serialization flags.
287  *
288  * New custom events can also be created by subclassing the event type if
289  * needed.
290  *
291  * Returns: (transfer full): the new custom event.
292  */
293 GstEvent *
294 gst_event_new_custom (GstEventType type, GstStructure * structure)
295 {
296   GstEventImpl *event;
297
298   event = g_slice_new0 (GstEventImpl);
299
300   GST_CAT_DEBUG (GST_CAT_EVENT, "creating new event %p %s %d", event,
301       gst_event_type_get_name (type), type);
302
303   if (structure) {
304     /* structure must not have a parent */
305     if (!gst_structure_set_parent_refcount (structure,
306             &event->event.mini_object.refcount))
307       goto had_parent;
308
309   }
310   gst_event_init (event, sizeof (GstEventImpl), type);
311
312   GST_EVENT_STRUCTURE (event) = structure;
313
314   return GST_EVENT_CAST (event);
315
316   /* ERRORS */
317 had_parent:
318   {
319     g_slice_free1 (GST_MINI_OBJECT_SIZE (event), event);
320     g_warning ("structure is already owned by another object");
321     return NULL;
322   }
323 }
324
325 /**
326  * gst_event_get_structure:
327  * @event: The #GstEvent.
328  *
329  * Access the structure of the event.
330  *
331  * Returns: The structure of the event. The structure is still
332  * owned by the event, which means that you should not free it and
333  * that the pointer becomes invalid when you free the event.
334  *
335  * MT safe.
336  */
337 const GstStructure *
338 gst_event_get_structure (GstEvent * event)
339 {
340   g_return_val_if_fail (GST_IS_EVENT (event), NULL);
341
342   return GST_EVENT_STRUCTURE (event);
343 }
344
345 /**
346  * gst_event_writable_structure:
347  * @event: The #GstEvent.
348  *
349  * Get a writable version of the structure.
350  *
351  * Returns: The structure of the event. The structure is still
352  * owned by the event, which means that you should not free it and
353  * that the pointer becomes invalid when you free the event.
354  * This function checks if @event is writable and will never return NULL.
355  *
356  * MT safe.
357  */
358 GstStructure *
359 gst_event_writable_structure (GstEvent * event)
360 {
361   GstStructure *structure;
362
363   g_return_val_if_fail (GST_IS_EVENT (event), NULL);
364   g_return_val_if_fail (gst_event_is_writable (event), NULL);
365
366   structure = GST_EVENT_STRUCTURE (event);
367
368   if (structure == NULL) {
369     structure =
370         gst_structure_new_id_empty (gst_event_type_to_quark (GST_EVENT_TYPE
371             (event)));
372     gst_structure_set_parent_refcount (structure, &event->mini_object.refcount);
373     GST_EVENT_STRUCTURE (event) = structure;
374   }
375   return structure;
376 }
377
378 /**
379  * gst_event_has_name:
380  * @event: The #GstEvent.
381  * @name: name to check
382  *
383  * Checks if @event has the given @name. This function is usually used to
384  * check the name of a custom event.
385  *
386  * Returns: %TRUE if @name matches the name of the event structure.
387  *
388  * Since: 0.10.20
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  * Since: 0.10.22
423  */
424 guint32
425 gst_event_get_seqnum (GstEvent * event)
426 {
427   g_return_val_if_fail (GST_IS_EVENT (event), -1);
428
429   return GST_EVENT_SEQNUM (event);
430 }
431
432 /**
433  * gst_event_set_seqnum:
434  * @event: A #GstEvent.
435  * @seqnum: A sequence number.
436  *
437  * Set the sequence number of a event.
438  *
439  * This function might be called by the creator of a event to indicate that the
440  * event relates to other events or messages. See gst_event_get_seqnum() for
441  * more information.
442  *
443  * MT safe.
444  *
445  * Since: 0.10.22
446  */
447 void
448 gst_event_set_seqnum (GstEvent * event, guint32 seqnum)
449 {
450   g_return_if_fail (GST_IS_EVENT (event));
451
452   GST_EVENT_SEQNUM (event) = seqnum;
453 }
454
455 /* FIXME 0.11: It would be nice to have flush events
456  * that don't reset the running time in the sinks
457  */
458
459 /**
460  * gst_event_new_flush_start:
461  *
462  * Allocate a new flush start event. The flush start event can be sent
463  * upstream and downstream and travels out-of-bounds with the dataflow.
464  *
465  * It marks pads as being flushing and will make them return
466  * #GST_FLOW_FLUSHING when used for data flow with gst_pad_push(),
467  * gst_pad_chain(), gst_pad_alloc_buffer(), gst_pad_get_range() and
468  * gst_pad_pull_range(). Any event (except a #GST_EVENT_FLUSH_STOP) received
469  * on a flushing pad will return %FALSE immediately.
470  *
471  * Elements should unlock any blocking functions and exit their streaming
472  * functions as fast as possible when this event is received.
473  *
474  * This event is typically generated after a seek to flush out all queued data
475  * in the pipeline so that the new media is played as soon as possible.
476  *
477  * Returns: (transfer full): a new flush start event.
478  */
479 GstEvent *
480 gst_event_new_flush_start (void)
481 {
482   return gst_event_new_custom (GST_EVENT_FLUSH_START, NULL);
483 }
484
485 /**
486  * gst_event_new_flush_stop:
487  * @reset_time: if time should be reset
488  *
489  * Allocate a new flush stop event. The flush stop event can be sent
490  * upstream and downstream and travels serialized with the dataflow.
491  * It is typically sent after sending a FLUSH_START event to make the
492  * pads accept data again.
493  *
494  * Elements can process this event synchronized with the dataflow since
495  * the preceeding FLUSH_START event stopped the dataflow.
496  *
497  * This event is typically generated to complete a seek and to resume
498  * dataflow.
499  *
500  * Returns: (transfer full): a new flush stop event.
501  */
502 GstEvent *
503 gst_event_new_flush_stop (gboolean reset_time)
504 {
505   GstEvent *event;
506
507   GST_CAT_INFO (GST_CAT_EVENT, "creating flush stop %d", reset_time);
508
509   event = gst_event_new_custom (GST_EVENT_FLUSH_STOP,
510       gst_structure_new_id (GST_QUARK (EVENT_FLUSH_STOP),
511           GST_QUARK (RESET_TIME), G_TYPE_BOOLEAN, reset_time, NULL));
512
513   return event;
514 }
515
516 /**
517  * gst_event_parse_flush_stop:
518  * @event: The event to parse
519  * @reset_time: (out): if time should be reset
520  *
521  * Parse the FLUSH_STOP event and retrieve the @reset_time member.
522  */
523 void
524 gst_event_parse_flush_stop (GstEvent * event, gboolean * reset_time)
525 {
526   GstStructure *structure;
527
528   g_return_if_fail (GST_IS_EVENT (event));
529   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_STOP);
530
531   structure = GST_EVENT_STRUCTURE (event);
532   if (G_LIKELY (reset_time))
533     *reset_time =
534         g_value_get_boolean (gst_structure_id_get_value (structure,
535             GST_QUARK (RESET_TIME)));
536 }
537
538 /**
539  * gst_event_new_eos:
540  *
541  * Create a new EOS event. The eos event can only travel downstream
542  * synchronized with the buffer flow. Elements that receive the EOS
543  * event on a pad can return #GST_FLOW_UNEXPECTED as a #GstFlowReturn
544  * when data after the EOS event arrives.
545  *
546  * The EOS event will travel down to the sink elements in the pipeline
547  * which will then post the #GST_MESSAGE_EOS on the bus after they have
548  * finished playing any buffered data.
549  *
550  * When all sinks have posted an EOS message, an EOS message is
551  * forwarded to the application.
552  *
553  * The EOS event itself will not cause any state transitions of the pipeline.
554  *
555  * Returns: (transfer full): the new EOS event.
556  */
557 GstEvent *
558 gst_event_new_eos (void)
559 {
560   return gst_event_new_custom (GST_EVENT_EOS, NULL);
561 }
562
563 /**
564  * gst_event_new_gap:
565  * @timestamp: the start time (pts) of the gap
566  * @duration: the duration of the gap
567  *
568  * Create a new GAP event. A gap event can be thought of as conceptually
569  * equivalent to a buffer to signal that there is no data for a certain
570  * amount of time. This is useful to signal a gap to downstream elements
571  * which may wait for data, such as muxers or mixers or overlays, especially
572  * for sparse streams such as subtitle streams.
573  *
574  * Returns: (transfer full): the new GAP event.
575  */
576 GstEvent *
577 gst_event_new_gap (GstClockTime timestamp, GstClockTime duration)
578 {
579   GstEvent *event;
580
581   g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (timestamp), NULL);
582   g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (duration), NULL);
583
584   GST_CAT_TRACE (GST_CAT_EVENT, "creating gap %" GST_TIME_FORMAT " - "
585       "%" GST_TIME_FORMAT " (duration: %" GST_TIME_FORMAT ")",
586       GST_TIME_ARGS (timestamp), GST_TIME_ARGS (timestamp + duration),
587       GST_TIME_ARGS (duration));
588
589   event = gst_event_new_custom (GST_EVENT_GAP,
590       gst_structure_new_id (GST_QUARK (EVENT_GAP),
591           GST_QUARK (TIMESTAMP), GST_TYPE_CLOCK_TIME, timestamp,
592           GST_QUARK (DURATION), GST_TYPE_CLOCK_TIME, duration, NULL));
593
594   return event;
595 }
596
597 /**
598  * gst_event_parse_gap:
599  * @timestamp: (out) (allow-none): location where to store the
600  *     start time (pts) of the gap, or %NULL
601  * @duration: (out) (allow-none): location where to store the duration of
602  *     the gap, or %NULL
603  *
604  * Extract timestamp and duration from a new GAP event.
605  */
606 void
607 gst_event_parse_gap (GstEvent * event, GstClockTime * timestamp,
608     GstClockTime * duration)
609 {
610   GstStructure *structure;
611
612   g_return_if_fail (GST_IS_EVENT (event));
613   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_GAP);
614
615   structure = GST_EVENT_STRUCTURE (event);
616   gst_structure_id_get (structure,
617       GST_QUARK (TIMESTAMP), GST_TYPE_CLOCK_TIME, timestamp,
618       GST_QUARK (DURATION), GST_TYPE_CLOCK_TIME, duration, NULL);
619 }
620
621 /**
622  * gst_event_new_caps:
623  * @caps: (transfer none): a #GstCaps
624  *
625  * Create a new CAPS event for @caps. The caps event can only travel downstream
626  * synchronized with the buffer flow and contains the format of the buffers
627  * that will follow after the event.
628  *
629  * Returns: (transfer full): the new CAPS event.
630  */
631 GstEvent *
632 gst_event_new_caps (GstCaps * caps)
633 {
634   GstEvent *event;
635
636   g_return_val_if_fail (caps != NULL, NULL);
637   g_return_val_if_fail (gst_caps_is_fixed (caps), NULL);
638
639   GST_CAT_INFO (GST_CAT_EVENT, "creating caps event %" GST_PTR_FORMAT, caps);
640
641   event = gst_event_new_custom (GST_EVENT_CAPS,
642       gst_structure_new_id (GST_QUARK (EVENT_CAPS),
643           GST_QUARK (CAPS), GST_TYPE_CAPS, caps, NULL));
644
645   return event;
646 }
647
648 /**
649  * gst_event_parse_caps:
650  * @event: The event to parse
651  * @caps: (out): A pointer to the caps
652  *
653  * Get the caps from @event. The caps remains valid as long as @event remains
654  * valid.
655  */
656 void
657 gst_event_parse_caps (GstEvent * event, GstCaps ** caps)
658 {
659   GstStructure *structure;
660
661   g_return_if_fail (GST_IS_EVENT (event));
662   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_CAPS);
663
664   structure = GST_EVENT_STRUCTURE (event);
665   if (G_LIKELY (caps))
666     *caps =
667         g_value_get_boxed (gst_structure_id_get_value (structure,
668             GST_QUARK (CAPS)));
669 }
670
671 /**
672  * gst_event_new_stream_config:
673  * @flags: the stream config flags
674  *
675  * Create a new STREAM CONFIG event. The stream config event travels
676  * downstream synchronized with the buffer flow and contains stream
677  * configuration information for the stream, such as stream-headers
678  * or setup-data. It is optional and should be sent after the CAPS
679  * event.
680  *
681  * Returns: (transfer full): the new STREAM CONFIG event.
682  */
683 GstEvent *
684 gst_event_new_stream_config (GstStreamConfigFlags flags)
685 {
686   GstEvent *event;
687
688   GST_CAT_INFO (GST_CAT_EVENT, "creating stream info event, flags=0x%x", flags);
689
690   event = gst_event_new_custom (GST_EVENT_STREAM_CONFIG,
691       gst_structure_new_id (GST_QUARK (EVENT_STREAM_CONFIG),
692           GST_QUARK (FLAGS), GST_TYPE_STREAM_CONFIG_FLAGS, flags, NULL));
693
694   return event;
695 }
696
697 /**
698  * gst_event_parse_stream_config:
699  * @event: The event to parse
700  * @flags: (out): a pointer to a variable to store the stream config flags
701  *
702  * Get the stream config flags from @event.
703  */
704 void
705 gst_event_parse_stream_config (GstEvent * event, GstStreamConfigFlags * flags)
706 {
707   GstStructure *structure;
708
709   g_return_if_fail (GST_IS_EVENT (event));
710   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG);
711
712   structure = GST_EVENT_STRUCTURE (event);
713   if (G_LIKELY (flags != NULL)) {
714     *flags =
715         g_value_get_enum (gst_structure_id_get_value (structure,
716             GST_QUARK (FLAGS)));
717   }
718 }
719
720 /**
721  * gst_event_set_stream_config_setup_data:
722  * @event: a stream config event
723  * @buf: a #GstBuffer with setup data
724  *
725  * Set setup data on the stream info event to signal out of bound setup data
726  * to downstream elements. Unlike stream headers, setup data contains data
727  * that is required to interpret the data stream, but is not valid as-is
728  * inside the data stream and thus can't just be prepended to or inserted
729  * into the data stream.
730  */
731 void
732 gst_event_set_stream_config_setup_data (GstEvent * event, GstBuffer * buf)
733 {
734   GstStructure *s;
735
736   g_return_if_fail (GST_IS_EVENT (event));
737   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG);
738   g_return_if_fail (GST_IS_BUFFER (buf) && gst_buffer_get_size (buf) > 0);
739
740   s = GST_EVENT_STRUCTURE (event);
741   gst_structure_id_set (s, GST_QUARK (SETUP_DATA), GST_TYPE_BUFFER, buf, NULL);
742 }
743
744 /**
745  * gst_event_set_stream_config_setup_data:
746  * @event: a stream config event
747  * @buf: (out) (transfer none): location where to store the #GstBuffer with setup data
748  *
749  * Extracts the setup data buffer from the stream info event. Will store
750  * %NULL in @buf if the event contains no setup data. The buffer returned
751  * will remain valid as long as @event remains valid. The caller should
752  * acquire a reference to to @buf if needed.
753  *
754  * Returns: TRUE if @event contained setup data and @buf has been set,
755  *     otherwise FALSE.
756  */
757 gboolean
758 gst_event_parse_stream_config_setup_data (GstEvent * event, GstBuffer ** buf)
759 {
760   const GValue *val;
761   GstStructure *s;
762
763   g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
764   g_return_val_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG,
765       FALSE);
766   g_return_val_if_fail (buf != NULL, FALSE);
767
768   s = GST_EVENT_STRUCTURE (event);
769   val = gst_structure_id_get_value (s, GST_QUARK (SETUP_DATA));
770   if (val != NULL)
771     *buf = g_value_get_boxed (val);
772   else
773     *buf = NULL;
774
775   return (*buf != NULL);
776 }
777
778 /**
779  * gst_event_add_stream_config_header:
780  * @event: a stream config event
781  * @buf: a #GstBuffer with stream header data
782  *
783  * Adds a stream header to the stream info event to signal stream headers to
784  * to downstream elements such as multifilesink, tcpserversink etc. Stream
785  * headers can be and should usually be prepended to the data stream at any
786  * point in the stream (which requires a streamable format), e.g. to a new
787  * client connecting, or when starting a new file segment. stream header
788  * buffers will all be used together in the order they were added to the
789  * stream config event. Stream headers are sent as buffers at the beginning
790  * of the data flow in addition to the stream config event. Elements that
791  * care about stream headers need to make sure that they don't insert or
792  * interpret these header buffers twice if they interpret them.
793  */
794 void
795 gst_event_add_stream_config_header (GstEvent * event, GstBuffer * buf)
796 {
797   GstStructure *s;
798   GValue buf_val = { 0, };
799   GValue *val;
800
801   g_return_if_fail (GST_IS_EVENT (event));
802   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG);
803   g_return_if_fail (GST_IS_BUFFER (buf) && gst_buffer_get_size (buf) > 0);
804
805   g_value_init (&buf_val, GST_TYPE_BUFFER);
806   g_value_set_boxed (&buf_val, buf);
807
808   s = GST_EVENT_STRUCTURE (event);
809   val = (GValue *) gst_structure_id_get_value (s, GST_QUARK (STREAM_HEADERS));
810   if (val == NULL) {
811     GValue new_array = { 0, };
812
813     g_value_init (&new_array, GST_TYPE_ARRAY);
814     gst_value_array_append_value (&new_array, &buf_val);
815     gst_structure_id_take_value (s, GST_QUARK (STREAM_HEADERS), &new_array);
816   } else {
817     gst_value_array_append_value (val, &buf_val);
818   }
819   g_value_unset (&buf_val);
820 }
821
822 /**
823  * gst_event_get_n_stream_config_headers:
824  * @event: a stream config event
825  *
826  * Extract the number of stream header buffers.
827  *
828  * Returns: the number of stream header buffers attached to the stream info
829  * @event.
830  */
831 guint
832 gst_event_get_n_stream_config_headers (GstEvent * event)
833 {
834   const GValue *val;
835   GstStructure *s;
836   guint num = 0;
837
838   g_return_val_if_fail (GST_IS_EVENT (event), 0);
839   g_return_val_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG, 0);
840
841   s = GST_EVENT_STRUCTURE (event);
842   val = gst_structure_id_get_value (s, GST_QUARK (STREAM_HEADERS));
843
844   if (val != NULL)
845     num = gst_value_array_get_size (val);
846
847   return num;
848 }
849
850 /**
851  * gst_event_parse_nth_stream_config_header:
852  * @event: a stream config event
853  * @index: number of the stream header to retrieve
854  * @buf: (out) (transfer none): location where to store the n-th stream
855  *     header #GstBuffer
856  *
857  * Retrieves the n-th stream header buffer attached to the stream config
858  * event and stores it in @buf. Will store %NULL in @buf if there is no such
859  * stream header.
860  *
861  * Returns: TRUE if @event contained a stream header at @index and @buf has
862  *    been set, otherwise FALSE.
863  */
864 gboolean
865 gst_event_parse_nth_stream_config_header (GstEvent * event, guint index,
866     GstBuffer ** buf)
867 {
868   const GValue *val, *buf_val;
869   GstStructure *s;
870   GstBuffer *ret = NULL;
871
872   g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
873   g_return_val_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STREAM_CONFIG,
874       FALSE);
875   g_return_val_if_fail (buf != NULL, FALSE);
876
877   s = GST_EVENT_STRUCTURE (event);
878   val = gst_structure_id_get_value (s, GST_QUARK (STREAM_HEADERS));
879
880   if (val != NULL) {
881     buf_val = gst_value_array_get_value (val, index);
882     if (buf_val != NULL)
883       ret = g_value_get_boxed (buf_val);
884   }
885
886   *buf = ret;
887   return (ret != NULL);
888 }
889
890 /**
891  * gst_event_new_segment:
892  * @segment: (transfer none): a #GstSegment
893  *
894  * Create a new SEGMENT event for @segment. The segment event can only travel
895  * downstream synchronized with the buffer flow and contains timing information
896  * and playback properties for the buffers that will follow.
897  *
898  * The newsegment event marks the range of buffers to be processed. All
899  * data not within the segment range is not to be processed. This can be
900  * used intelligently by plugins to apply more efficient methods of skipping
901  * unneeded data. The valid range is expressed with the @start and @stop
902  * values.
903  *
904  * The time value of the segment is used in conjunction with the start
905  * value to convert the buffer timestamps into the stream time. This is
906  * usually done in sinks to report the current stream_time.
907  * @time represents the stream_time of a buffer carrying a timestamp of
908  * @start. @time cannot be -1.
909  *
910  * @start cannot be -1, @stop can be -1. If there
911  * is a valid @stop given, it must be greater or equal the @start, including
912  * when the indicated playback @rate is < 0.
913  *
914  * The @applied_rate value provides information about any rate adjustment that
915  * has already been made to the timestamps and content on the buffers of the
916  * stream. (@rate * @applied_rate) should always equal the rate that has been
917  * requested for playback. For example, if an element has an input segment
918  * with intended playback @rate of 2.0 and applied_rate of 1.0, it can adjust
919  * incoming timestamps and buffer content by half and output a newsegment event
920  * with @rate of 1.0 and @applied_rate of 2.0
921  *
922  * After a newsegment event, the buffer stream time is calculated with:
923  *
924  *   time + (TIMESTAMP(buf) - start) * ABS (rate * applied_rate)
925  *
926  * Returns: (transfer full): the new SEGMENT event.
927  */
928 GstEvent *
929 gst_event_new_segment (const GstSegment * segment)
930 {
931   GstEvent *event;
932
933   g_return_val_if_fail (segment != NULL, NULL);
934   g_return_val_if_fail (segment->rate != 0.0, NULL);
935   g_return_val_if_fail (segment->applied_rate != 0.0, NULL);
936   g_return_val_if_fail (segment->format != GST_FORMAT_UNDEFINED, NULL);
937
938   GST_CAT_INFO (GST_CAT_EVENT, "creating segment event %" GST_SEGMENT_FORMAT,
939       segment);
940
941   event = gst_event_new_custom (GST_EVENT_SEGMENT,
942       gst_structure_new_id (GST_QUARK (EVENT_SEGMENT),
943           GST_QUARK (SEGMENT), GST_TYPE_SEGMENT, segment, NULL));
944
945   return event;
946 }
947
948 /**
949  * gst_event_parse_segment:
950  * @event: The event to parse
951  * @segment: (out) (transfer none): a pointer to a #GstSegment
952  *
953  * Parses a segment @event and stores the result in the given @segment location.
954  * @segment remains valid only until the @event is freed. Don't modify the segment
955  * and make a copy if you want to modify it or store it for later use.
956  */
957 void
958 gst_event_parse_segment (GstEvent * event, const GstSegment ** segment)
959 {
960   GstStructure *structure;
961
962   g_return_if_fail (GST_IS_EVENT (event));
963   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
964
965   if (segment) {
966     structure = GST_EVENT_STRUCTURE (event);
967     *segment = g_value_get_boxed (gst_structure_id_get_value (structure,
968             GST_QUARK (SEGMENT)));
969   }
970 }
971
972 /**
973  * gst_event_copy_segment:
974  * @event: The event to parse
975  * @segment: a pointer to a #GstSegment
976  *
977  * Parses a segment @event and copies the #GstSegment into the location
978  * given by @segment.
979  */
980 void
981 gst_event_copy_segment (GstEvent * event, GstSegment * segment)
982 {
983   const GstSegment *src;
984
985   g_return_if_fail (GST_IS_EVENT (event));
986   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
987
988   if (segment) {
989     gst_event_parse_segment (event, &src);
990     gst_segment_copy_into (src, segment);
991   }
992 }
993
994 /**
995  * gst_event_new_tag:
996  * @taglist: (transfer full): metadata list. The event will take ownership
997  *     of the taglist.
998  *
999  * Generates a metadata tag event from the given @taglist.
1000  *
1001  * Returns: (transfer full): a new #GstEvent
1002  */
1003 GstEvent *
1004 gst_event_new_tag (GstTagList * taglist)
1005 {
1006   g_return_val_if_fail (taglist != NULL, NULL);
1007
1008   return gst_event_new_custom (GST_EVENT_TAG, (GstStructure *) taglist);
1009 }
1010
1011 /**
1012  * gst_event_parse_tag:
1013  * @event: a tag event
1014  * @taglist: (out) (transfer none): pointer to metadata list
1015  *
1016  * Parses a tag @event and stores the results in the given @taglist location.
1017  * No reference to the taglist will be returned, it remains valid only until
1018  * the @event is freed. Don't modify or free the taglist, make a copy if you
1019  * want to modify it or store it for later use.
1020  */
1021 void
1022 gst_event_parse_tag (GstEvent * event, GstTagList ** taglist)
1023 {
1024   g_return_if_fail (GST_IS_EVENT (event));
1025   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TAG);
1026
1027   if (taglist)
1028     *taglist = (GstTagList *) GST_EVENT_STRUCTURE (event);
1029 }
1030
1031 /* buffersize event */
1032 /**
1033  * gst_event_new_buffer_size:
1034  * @format: buffer format
1035  * @minsize: minimum buffer size
1036  * @maxsize: maximum buffer size
1037  * @async: thread behavior
1038  *
1039  * Create a new buffersize event. The event is sent downstream and notifies
1040  * elements that they should provide a buffer of the specified dimensions.
1041  *
1042  * When the @async flag is set, a thread boundary is preferred.
1043  *
1044  * Returns: (transfer full): a new #GstEvent
1045  */
1046 GstEvent *
1047 gst_event_new_buffer_size (GstFormat format, gint64 minsize,
1048     gint64 maxsize, gboolean async)
1049 {
1050   GstEvent *event;
1051   GstStructure *structure;
1052
1053   GST_CAT_INFO (GST_CAT_EVENT,
1054       "creating buffersize format %s, minsize %" G_GINT64_FORMAT
1055       ", maxsize %" G_GINT64_FORMAT ", async %d", gst_format_get_name (format),
1056       minsize, maxsize, async);
1057
1058   structure = gst_structure_new_id (GST_QUARK (EVENT_BUFFER_SIZE),
1059       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1060       GST_QUARK (MINSIZE), G_TYPE_INT64, minsize,
1061       GST_QUARK (MAXSIZE), G_TYPE_INT64, maxsize,
1062       GST_QUARK (ASYNC), G_TYPE_BOOLEAN, async, NULL);
1063   event = gst_event_new_custom (GST_EVENT_BUFFERSIZE, structure);
1064
1065   return event;
1066 }
1067
1068 /**
1069  * gst_event_parse_buffer_size:
1070  * @event: The event to query
1071  * @format: (out): A pointer to store the format in
1072  * @minsize: (out): A pointer to store the minsize in
1073  * @maxsize: (out): A pointer to store the maxsize in
1074  * @async: (out): A pointer to store the async-flag in
1075  *
1076  * Get the format, minsize, maxsize and async-flag in the buffersize event.
1077  */
1078 void
1079 gst_event_parse_buffer_size (GstEvent * event, GstFormat * format,
1080     gint64 * minsize, gint64 * maxsize, gboolean * async)
1081 {
1082   const GstStructure *structure;
1083
1084   g_return_if_fail (GST_IS_EVENT (event));
1085   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_BUFFERSIZE);
1086
1087   structure = GST_EVENT_STRUCTURE (event);
1088   if (format)
1089     *format = (GstFormat)
1090         g_value_get_enum (gst_structure_id_get_value (structure,
1091             GST_QUARK (FORMAT)));
1092   if (minsize)
1093     *minsize =
1094         g_value_get_int64 (gst_structure_id_get_value (structure,
1095             GST_QUARK (MINSIZE)));
1096   if (maxsize)
1097     *maxsize =
1098         g_value_get_int64 (gst_structure_id_get_value (structure,
1099             GST_QUARK (MAXSIZE)));
1100   if (async)
1101     *async =
1102         g_value_get_boolean (gst_structure_id_get_value (structure,
1103             GST_QUARK (ASYNC)));
1104 }
1105
1106 /**
1107  * gst_event_new_qos:
1108  * @type: the QoS type
1109  * @proportion: the proportion of the qos message
1110  * @diff: The time difference of the last Clock sync
1111  * @timestamp: The timestamp of the buffer
1112  *
1113  * Allocate a new qos event with the given values.
1114  * The QOS event is generated in an element that wants an upstream
1115  * element to either reduce or increase its rate because of
1116  * high/low CPU load or other resource usage such as network performance or
1117  * throttling. Typically sinks generate these events for each buffer
1118  * they receive.
1119  *
1120  * @type indicates the reason for the QoS event. #GST_QOS_TYPE_OVERFLOW is
1121  * used when a buffer arrived in time or when the sink cannot keep up with
1122  * the upstream datarate. #GST_QOS_TYPE_UNDERFLOW is when the sink is not
1123  * receiving buffers fast enough and thus has to drop late buffers. 
1124  * #GST_QOS_TYPE_THROTTLE is used when the datarate is artificially limited
1125  * by the application, for example to reduce power consumption.
1126  *
1127  * @proportion indicates the real-time performance of the streaming in the
1128  * element that generated the QoS event (usually the sink). The value is
1129  * generally computed based on more long term statistics about the streams
1130  * timestamps compared to the clock.
1131  * A value < 1.0 indicates that the upstream element is producing data faster
1132  * than real-time. A value > 1.0 indicates that the upstream element is not
1133  * producing data fast enough. 1.0 is the ideal @proportion value. The
1134  * proportion value can safely be used to lower or increase the quality of
1135  * the element.
1136  *
1137  * @diff is the difference against the clock in running time of the last
1138  * buffer that caused the element to generate the QOS event. A negative value
1139  * means that the buffer with @timestamp arrived in time. A positive value
1140  * indicates how late the buffer with @timestamp was. When throttling is
1141  * enabled, @diff will be set to the requested throttling interval.
1142  *
1143  * @timestamp is the timestamp of the last buffer that cause the element
1144  * to generate the QOS event. It is expressed in running time and thus an ever
1145  * increasing value.
1146  *
1147  * The upstream element can use the @diff and @timestamp values to decide
1148  * whether to process more buffers. For possitive @diff, all buffers with
1149  * timestamp <= @timestamp + @diff will certainly arrive late in the sink
1150  * as well. A (negative) @diff value so that @timestamp + @diff would yield a
1151  * result smaller than 0 is not allowed.
1152  *
1153  * The application can use general event probes to intercept the QoS
1154  * event and implement custom application specific QoS handling.
1155  *
1156  * Returns: (transfer full): a new QOS event.
1157  */
1158 GstEvent *
1159 gst_event_new_qos (GstQOSType type, gdouble proportion,
1160     GstClockTimeDiff diff, GstClockTime timestamp)
1161 {
1162   GstEvent *event;
1163   GstStructure *structure;
1164
1165   /* diff must be positive or timestamp + diff must be positive */
1166   g_return_val_if_fail (diff >= 0 || -diff <= timestamp, NULL);
1167
1168   GST_CAT_LOG (GST_CAT_EVENT,
1169       "creating qos type %d, proportion %lf, diff %" G_GINT64_FORMAT
1170       ", timestamp %" GST_TIME_FORMAT, type, proportion,
1171       diff, GST_TIME_ARGS (timestamp));
1172
1173   structure = gst_structure_new_id (GST_QUARK (EVENT_QOS),
1174       GST_QUARK (TYPE), GST_TYPE_QOS_TYPE, type,
1175       GST_QUARK (PROPORTION), G_TYPE_DOUBLE, proportion,
1176       GST_QUARK (DIFF), G_TYPE_INT64, diff,
1177       GST_QUARK (TIMESTAMP), G_TYPE_UINT64, timestamp, NULL);
1178   event = gst_event_new_custom (GST_EVENT_QOS, structure);
1179
1180   return event;
1181 }
1182
1183 /**
1184  * gst_event_parse_qos:
1185  * @event: The event to query
1186  * @type: (out): A pointer to store the QoS type in
1187  * @proportion: (out): A pointer to store the proportion in
1188  * @diff: (out): A pointer to store the diff in
1189  * @timestamp: (out): A pointer to store the timestamp in
1190  *
1191  * Get the type, proportion, diff and timestamp in the qos event. See
1192  * gst_event_new_qos() for more information about the different QoS values.
1193  */
1194 void
1195 gst_event_parse_qos (GstEvent * event, GstQOSType * type,
1196     gdouble * proportion, GstClockTimeDiff * diff, GstClockTime * timestamp)
1197 {
1198   const GstStructure *structure;
1199
1200   g_return_if_fail (GST_IS_EVENT (event));
1201   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_QOS);
1202
1203   structure = GST_EVENT_STRUCTURE (event);
1204   if (type)
1205     *type = (GstQOSType)
1206         g_value_get_enum (gst_structure_id_get_value (structure,
1207             GST_QUARK (TYPE)));
1208   if (proportion)
1209     *proportion =
1210         g_value_get_double (gst_structure_id_get_value (structure,
1211             GST_QUARK (PROPORTION)));
1212   if (diff)
1213     *diff =
1214         g_value_get_int64 (gst_structure_id_get_value (structure,
1215             GST_QUARK (DIFF)));
1216   if (timestamp)
1217     *timestamp =
1218         g_value_get_uint64 (gst_structure_id_get_value (structure,
1219             GST_QUARK (TIMESTAMP)));
1220 }
1221
1222 /**
1223  * gst_event_new_seek:
1224  * @rate: The new playback rate
1225  * @format: The format of the seek values
1226  * @flags: The optional seek flags
1227  * @start_type: The type and flags for the new start position
1228  * @start: The value of the new start position
1229  * @stop_type: The type and flags for the new stop position
1230  * @stop: The value of the new stop position
1231  *
1232  * Allocate a new seek event with the given parameters.
1233  *
1234  * The seek event configures playback of the pipeline between @start to @stop
1235  * at the speed given in @rate, also called a playback segment.
1236  * The @start and @stop values are expressed in @format.
1237  *
1238  * A @rate of 1.0 means normal playback rate, 2.0 means double speed.
1239  * Negatives values means backwards playback. A value of 0.0 for the
1240  * rate is not allowed and should be accomplished instead by PAUSING the
1241  * pipeline.
1242  *
1243  * A pipeline has a default playback segment configured with a start
1244  * position of 0, a stop position of -1 and a rate of 1.0. The currently
1245  * configured playback segment can be queried with #GST_QUERY_SEGMENT. 
1246  *
1247  * @start_type and @stop_type specify how to adjust the currently configured 
1248  * start and stop fields in playback segment. Adjustments can be made relative
1249  * or absolute to the last configured values. A type of #GST_SEEK_TYPE_NONE
1250  * means that the position should not be updated.
1251  *
1252  * When the rate is positive and @start has been updated, playback will start
1253  * from the newly configured start position. 
1254  *
1255  * For negative rates, playback will start from the newly configured stop
1256  * position (if any). If the stop position if updated, it must be different from
1257  * -1 for negative rates.
1258  *
1259  * It is not possible to seek relative to the current playback position, to do
1260  * this, PAUSE the pipeline, query the current playback position with
1261  * #GST_QUERY_POSITION and update the playback segment current position with a
1262  * #GST_SEEK_TYPE_SET to the desired position. 
1263  *
1264  * Returns: (transfer full): a new seek event.
1265  */
1266 GstEvent *
1267 gst_event_new_seek (gdouble rate, GstFormat format, GstSeekFlags flags,
1268     GstSeekType start_type, gint64 start, GstSeekType stop_type, gint64 stop)
1269 {
1270   GstEvent *event;
1271   GstStructure *structure;
1272
1273   g_return_val_if_fail (rate != 0.0, NULL);
1274
1275   if (format == GST_FORMAT_TIME) {
1276     GST_CAT_INFO (GST_CAT_EVENT,
1277         "creating seek rate %lf, format TIME, flags %d, "
1278         "start_type %d, start %" GST_TIME_FORMAT ", "
1279         "stop_type %d, stop %" GST_TIME_FORMAT,
1280         rate, flags, start_type, GST_TIME_ARGS (start),
1281         stop_type, GST_TIME_ARGS (stop));
1282   } else {
1283     GST_CAT_INFO (GST_CAT_EVENT,
1284         "creating seek rate %lf, format %s, flags %d, "
1285         "start_type %d, start %" G_GINT64_FORMAT ", "
1286         "stop_type %d, stop %" G_GINT64_FORMAT,
1287         rate, gst_format_get_name (format), flags, start_type, start, stop_type,
1288         stop);
1289   }
1290
1291   structure = gst_structure_new_id (GST_QUARK (EVENT_SEEK),
1292       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1293       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1294       GST_QUARK (FLAGS), GST_TYPE_SEEK_FLAGS, flags,
1295       GST_QUARK (CUR_TYPE), GST_TYPE_SEEK_TYPE, start_type,
1296       GST_QUARK (CUR), G_TYPE_INT64, start,
1297       GST_QUARK (STOP_TYPE), GST_TYPE_SEEK_TYPE, stop_type,
1298       GST_QUARK (STOP), G_TYPE_INT64, stop, NULL);
1299   event = gst_event_new_custom (GST_EVENT_SEEK, structure);
1300
1301   return event;
1302 }
1303
1304 /**
1305  * gst_event_parse_seek:
1306  * @event: a seek event
1307  * @rate: (out): result location for the rate
1308  * @format: (out): result location for the stream format
1309  * @flags:  (out): result location for the #GstSeekFlags
1310  * @start_type: (out): result location for the #GstSeekType of the start position
1311  * @start: (out): result location for the start postion expressed in @format
1312  * @stop_type:  (out): result location for the #GstSeekType of the stop position
1313  * @stop: (out): result location for the stop postion expressed in @format
1314  *
1315  * Parses a seek @event and stores the results in the given result locations.
1316  */
1317 void
1318 gst_event_parse_seek (GstEvent * event, gdouble * rate,
1319     GstFormat * format, GstSeekFlags * flags, GstSeekType * start_type,
1320     gint64 * start, GstSeekType * stop_type, gint64 * stop)
1321 {
1322   const GstStructure *structure;
1323
1324   g_return_if_fail (GST_IS_EVENT (event));
1325   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEEK);
1326
1327   structure = GST_EVENT_STRUCTURE (event);
1328   if (rate)
1329     *rate =
1330         g_value_get_double (gst_structure_id_get_value (structure,
1331             GST_QUARK (RATE)));
1332   if (format)
1333     *format = (GstFormat)
1334         g_value_get_enum (gst_structure_id_get_value (structure,
1335             GST_QUARK (FORMAT)));
1336   if (flags)
1337     *flags = (GstSeekFlags)
1338         g_value_get_flags (gst_structure_id_get_value (structure,
1339             GST_QUARK (FLAGS)));
1340   if (start_type)
1341     *start_type = (GstSeekType)
1342         g_value_get_enum (gst_structure_id_get_value (structure,
1343             GST_QUARK (CUR_TYPE)));
1344   if (start)
1345     *start =
1346         g_value_get_int64 (gst_structure_id_get_value (structure,
1347             GST_QUARK (CUR)));
1348   if (stop_type)
1349     *stop_type = (GstSeekType)
1350         g_value_get_enum (gst_structure_id_get_value (structure,
1351             GST_QUARK (STOP_TYPE)));
1352   if (stop)
1353     *stop =
1354         g_value_get_int64 (gst_structure_id_get_value (structure,
1355             GST_QUARK (STOP)));
1356 }
1357
1358 /**
1359  * gst_event_new_navigation:
1360  * @structure: (transfer full): description of the event. The event will take
1361  *     ownership of the structure.
1362  *
1363  * Create a new navigation event from the given description.
1364  *
1365  * Returns: (transfer full): a new #GstEvent
1366  */
1367 GstEvent *
1368 gst_event_new_navigation (GstStructure * structure)
1369 {
1370   g_return_val_if_fail (structure != NULL, NULL);
1371
1372   return gst_event_new_custom (GST_EVENT_NAVIGATION, structure);
1373 }
1374
1375 /**
1376  * gst_event_new_latency:
1377  * @latency: the new latency value
1378  *
1379  * Create a new latency event. The event is sent upstream from the sinks and
1380  * notifies elements that they should add an additional @latency to the
1381  * running time before synchronising against the clock.
1382  *
1383  * The latency is mostly used in live sinks and is always expressed in
1384  * the time format.
1385  *
1386  * Returns: (transfer full): a new #GstEvent
1387  *
1388  * Since: 0.10.12
1389  */
1390 GstEvent *
1391 gst_event_new_latency (GstClockTime latency)
1392 {
1393   GstEvent *event;
1394   GstStructure *structure;
1395
1396   GST_CAT_INFO (GST_CAT_EVENT,
1397       "creating latency event %" GST_TIME_FORMAT, GST_TIME_ARGS (latency));
1398
1399   structure = gst_structure_new_id (GST_QUARK (EVENT_LATENCY),
1400       GST_QUARK (LATENCY), G_TYPE_UINT64, latency, NULL);
1401   event = gst_event_new_custom (GST_EVENT_LATENCY, structure);
1402
1403   return event;
1404 }
1405
1406 /**
1407  * gst_event_parse_latency:
1408  * @event: The event to query
1409  * @latency: (out): A pointer to store the latency in.
1410  *
1411  * Get the latency in the latency event.
1412  *
1413  * Since: 0.10.12
1414  */
1415 void
1416 gst_event_parse_latency (GstEvent * event, GstClockTime * latency)
1417 {
1418   g_return_if_fail (GST_IS_EVENT (event));
1419   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_LATENCY);
1420
1421   if (latency)
1422     *latency =
1423         g_value_get_uint64 (gst_structure_id_get_value (GST_EVENT_STRUCTURE
1424             (event), GST_QUARK (LATENCY)));
1425 }
1426
1427 /**
1428  * gst_event_new_step:
1429  * @format: the format of @amount
1430  * @amount: the amount of data to step
1431  * @rate: the step rate
1432  * @flush: flushing steps
1433  * @intermediate: intermediate steps
1434  *
1435  * Create a new step event. The purpose of the step event is to instruct a sink
1436  * to skip @amount (expressed in @format) of media. It can be used to implement
1437  * stepping through the video frame by frame or for doing fast trick modes.
1438  *
1439  * A rate of <= 0.0 is not allowed. Pause the pipeline, for the effect of rate
1440  * = 0.0 or first reverse the direction of playback using a seek event to get
1441  * the same effect as rate < 0.0.
1442  *
1443  * The @flush flag will clear any pending data in the pipeline before starting
1444  * the step operation.
1445  *
1446  * The @intermediate flag instructs the pipeline that this step operation is
1447  * part of a larger step operation.
1448  *
1449  * Returns: (transfer full): a new #GstEvent
1450  *
1451  * Since: 0.10.24
1452  */
1453 GstEvent *
1454 gst_event_new_step (GstFormat format, guint64 amount, gdouble rate,
1455     gboolean flush, gboolean intermediate)
1456 {
1457   GstEvent *event;
1458   GstStructure *structure;
1459
1460   g_return_val_if_fail (rate > 0.0, NULL);
1461
1462   GST_CAT_INFO (GST_CAT_EVENT, "creating step event");
1463
1464   structure = gst_structure_new_id (GST_QUARK (EVENT_STEP),
1465       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1466       GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
1467       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1468       GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
1469       GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate, NULL);
1470   event = gst_event_new_custom (GST_EVENT_STEP, structure);
1471
1472   return event;
1473 }
1474
1475 /**
1476  * gst_event_parse_step:
1477  * @event: The event to query
1478  * @format: (out) (allow-none): a pointer to store the format in
1479  * @amount: (out) (allow-none): a pointer to store the amount in
1480  * @rate: (out) (allow-none): a pointer to store the rate in
1481  * @flush: (out) (allow-none): a pointer to store the flush boolean in
1482  * @intermediate: (out) (allow-none): a pointer to store the intermediate
1483  *     boolean in
1484  *
1485  * Parse the step event.
1486  *
1487  * Since: 0.10.24
1488  */
1489 void
1490 gst_event_parse_step (GstEvent * event, GstFormat * format, guint64 * amount,
1491     gdouble * rate, gboolean * flush, gboolean * intermediate)
1492 {
1493   const GstStructure *structure;
1494
1495   g_return_if_fail (GST_IS_EVENT (event));
1496   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STEP);
1497
1498   structure = GST_EVENT_STRUCTURE (event);
1499   if (format)
1500     *format =
1501         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
1502             GST_QUARK (FORMAT)));
1503   if (amount)
1504     *amount = g_value_get_uint64 (gst_structure_id_get_value (structure,
1505             GST_QUARK (AMOUNT)));
1506   if (rate)
1507     *rate = g_value_get_double (gst_structure_id_get_value (structure,
1508             GST_QUARK (RATE)));
1509   if (flush)
1510     *flush = g_value_get_boolean (gst_structure_id_get_value (structure,
1511             GST_QUARK (FLUSH)));
1512   if (intermediate)
1513     *intermediate = g_value_get_boolean (gst_structure_id_get_value (structure,
1514             GST_QUARK (INTERMEDIATE)));
1515 }
1516
1517 /**
1518  * gst_event_new_reconfigure:
1519
1520  * Create a new reconfigure event. The purpose of the reconfingure event is
1521  * to travel upstream and make elements renegotiate their caps or reconfigure
1522  * their buffer pools. This is useful when changing properties on elements
1523  * or changing the topology of the pipeline.
1524  *
1525  * Returns: (transfer full): a new #GstEvent
1526  *
1527  * Since: 0.11.0
1528  */
1529 GstEvent *
1530 gst_event_new_reconfigure (void)
1531 {
1532   GstEvent *event;
1533
1534   GST_CAT_INFO (GST_CAT_EVENT, "creating reconfigure event");
1535
1536   event = gst_event_new_custom (GST_EVENT_RECONFIGURE, NULL);
1537
1538   return event;
1539 }
1540
1541 /**
1542  * gst_event_new_sink_message:
1543  * @msg: (transfer none): the #GstMessage to be posted
1544  *
1545  * Create a new sink-message event. The purpose of the sink-message event is
1546  * to instruct a sink to post the message contained in the event synchronized
1547  * with the stream.
1548  *
1549  * Returns: (transfer full): a new #GstEvent
1550  *
1551  * Since: 0.10.26
1552  */
1553 /* FIXME 0.11: take ownership of msg for consistency? */
1554 GstEvent *
1555 gst_event_new_sink_message (GstMessage * msg)
1556 {
1557   GstEvent *event;
1558   GstStructure *structure;
1559
1560   g_return_val_if_fail (msg != NULL, NULL);
1561
1562   GST_CAT_INFO (GST_CAT_EVENT, "creating sink-message event");
1563
1564   structure = gst_structure_new_id (GST_QUARK (EVENT_SINK_MESSAGE),
1565       GST_QUARK (MESSAGE), GST_TYPE_MESSAGE, msg, NULL);
1566   event = gst_event_new_custom (GST_EVENT_SINK_MESSAGE, structure);
1567
1568   return event;
1569 }
1570
1571 /**
1572  * gst_event_parse_sink_message:
1573  * @event: The event to query
1574  * @msg: (out) (transfer full): a pointer to store the #GstMessage in.
1575  *
1576  * Parse the sink-message event. Unref @msg after usage.
1577  *
1578  * Since: 0.10.26
1579  */
1580 void
1581 gst_event_parse_sink_message (GstEvent * event, GstMessage ** msg)
1582 {
1583   const GstStructure *structure;
1584
1585   g_return_if_fail (GST_IS_EVENT (event));
1586   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SINK_MESSAGE);
1587
1588   structure = GST_EVENT_STRUCTURE (event);
1589   if (msg)
1590     *msg =
1591         GST_MESSAGE (g_value_dup_boxed (gst_structure_id_get_value
1592             (structure, GST_QUARK (MESSAGE))));
1593 }
1594
1595 /**
1596  * gst_event_new_stream_start
1597  *
1598  * Create a new STREAM_START event. The stream start event can only
1599  * travel downstream synchronized with the buffer flow. It is expected
1600  * to be the first event that is sent for a new stream.
1601  *
1602  * Source elements, demuxers and other elements that create new streams
1603  * are supposed to send this event as the first event of a new stream. It
1604  * should not be send after a flushing seek or in similar situations
1605  * and is used to mark the beginning of a new logical stream. Elements
1606  * combining multiple streams must ensure that this event is only forwarded
1607  * downstream once and not for every single input stream.
1608  *
1609  * Returns: (transfer full): the new STREAM_START event.
1610  */
1611 GstEvent *
1612 gst_event_new_stream_start (void)
1613 {
1614   return gst_event_new_custom (GST_EVENT_STREAM_START, NULL);
1615 }