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