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