miniobjects: pass copy, dispose and free function to gst_mini_object_init()
[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 (sizeof (GstEventImpl), event);
233 }
234
235 static void gst_event_init (GstEventImpl * event, GstEventType type);
236
237 static GstEvent *
238 _gst_event_copy (GstEvent * event)
239 {
240   GstEventImpl *copy;
241   GstStructure *s;
242
243   copy = g_slice_new0 (GstEventImpl);
244
245   gst_event_init (copy, GST_EVENT_TYPE (event));
246
247   GST_EVENT_TIMESTAMP (copy) = GST_EVENT_TIMESTAMP (event);
248   GST_EVENT_SEQNUM (copy) = GST_EVENT_SEQNUM (event);
249
250   s = GST_EVENT_STRUCTURE (event);
251   if (s) {
252     GST_EVENT_STRUCTURE (copy) = gst_structure_copy (s);
253     gst_structure_set_parent_refcount (GST_EVENT_STRUCTURE (copy),
254         &copy->event.mini_object.refcount);
255   } else {
256     GST_EVENT_STRUCTURE (copy) = NULL;
257   }
258   return GST_EVENT_CAST (copy);
259 }
260
261 static void
262 gst_event_init (GstEventImpl * event, GstEventType type)
263 {
264   gst_mini_object_init (GST_MINI_OBJECT_CAST (event), _gst_event_type,
265       (GstMiniObjectCopyFunction) _gst_event_copy, NULL,
266       (GstMiniObjectFreeFunction) _gst_event_free);
267
268   GST_EVENT_TYPE (event) = type;
269   GST_EVENT_TIMESTAMP (event) = GST_CLOCK_TIME_NONE;
270   GST_EVENT_SEQNUM (event) = gst_util_seqnum_next ();
271 }
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, 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 (sizeof (GstEventImpl), 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  * @name: (transfer none): the name of the event
994  * @taglist: (transfer full): metadata list. The event will take ownership
995  *     of the taglist.
996  *
997  * Generates a metadata tag event from the given @taglist.
998  *
999  * Since the TAG event has the %GST_EVENT_TYPE_STICKY_MULTI flag set, the
1000  * @name will be used to keep track of multiple tag events.
1001  *
1002  * Returns: (transfer full): a new #GstEvent
1003  */
1004 GstEvent *
1005 gst_event_new_tag (const gchar * name, GstTagList * taglist)
1006 {
1007   GstStructure *s;
1008   GValue val = G_VALUE_INIT;
1009
1010   g_return_val_if_fail (taglist != NULL, NULL);
1011
1012   s = gst_structure_new_empty (name);
1013   g_value_init (&val, GST_TYPE_TAG_LIST);
1014   g_value_take_boxed (&val, taglist);
1015   gst_structure_id_take_value (s, GST_QUARK (TAGLIST), &val);
1016   return gst_event_new_custom (GST_EVENT_TAG, s);
1017 }
1018
1019 /**
1020  * gst_event_parse_tag:
1021  * @event: a tag event
1022  * @taglist: (out) (transfer none): pointer to metadata list
1023  *
1024  * Parses a tag @event and stores the results in the given @taglist location.
1025  * No reference to the taglist will be returned, it remains valid only until
1026  * the @event is freed. Don't modify or free the taglist, make a copy if you
1027  * want to modify it or store it for later use.
1028  */
1029 void
1030 gst_event_parse_tag (GstEvent * event, GstTagList ** taglist)
1031 {
1032   const GValue *val;
1033
1034   g_return_if_fail (GST_IS_EVENT (event));
1035   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TAG);
1036
1037   val = gst_structure_id_get_value (GST_EVENT_STRUCTURE (event),
1038       GST_QUARK (TAGLIST));
1039
1040   if (taglist)
1041     *taglist = (GstTagList *) g_value_get_boxed (val);
1042 }
1043
1044 /* buffersize event */
1045 /**
1046  * gst_event_new_buffer_size:
1047  * @format: buffer format
1048  * @minsize: minimum buffer size
1049  * @maxsize: maximum buffer size
1050  * @async: thread behavior
1051  *
1052  * Create a new buffersize event. The event is sent downstream and notifies
1053  * elements that they should provide a buffer of the specified dimensions.
1054  *
1055  * When the @async flag is set, a thread boundary is preferred.
1056  *
1057  * Returns: (transfer full): a new #GstEvent
1058  */
1059 GstEvent *
1060 gst_event_new_buffer_size (GstFormat format, gint64 minsize,
1061     gint64 maxsize, gboolean async)
1062 {
1063   GstEvent *event;
1064   GstStructure *structure;
1065
1066   GST_CAT_INFO (GST_CAT_EVENT,
1067       "creating buffersize format %s, minsize %" G_GINT64_FORMAT
1068       ", maxsize %" G_GINT64_FORMAT ", async %d", gst_format_get_name (format),
1069       minsize, maxsize, async);
1070
1071   structure = gst_structure_new_id (GST_QUARK (EVENT_BUFFER_SIZE),
1072       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1073       GST_QUARK (MINSIZE), G_TYPE_INT64, minsize,
1074       GST_QUARK (MAXSIZE), G_TYPE_INT64, maxsize,
1075       GST_QUARK (ASYNC), G_TYPE_BOOLEAN, async, NULL);
1076   event = gst_event_new_custom (GST_EVENT_BUFFERSIZE, structure);
1077
1078   return event;
1079 }
1080
1081 /**
1082  * gst_event_parse_buffer_size:
1083  * @event: The event to query
1084  * @format: (out): A pointer to store the format in
1085  * @minsize: (out): A pointer to store the minsize in
1086  * @maxsize: (out): A pointer to store the maxsize in
1087  * @async: (out): A pointer to store the async-flag in
1088  *
1089  * Get the format, minsize, maxsize and async-flag in the buffersize event.
1090  */
1091 void
1092 gst_event_parse_buffer_size (GstEvent * event, GstFormat * format,
1093     gint64 * minsize, gint64 * maxsize, gboolean * async)
1094 {
1095   const GstStructure *structure;
1096
1097   g_return_if_fail (GST_IS_EVENT (event));
1098   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_BUFFERSIZE);
1099
1100   structure = GST_EVENT_STRUCTURE (event);
1101   if (format)
1102     *format = (GstFormat)
1103         g_value_get_enum (gst_structure_id_get_value (structure,
1104             GST_QUARK (FORMAT)));
1105   if (minsize)
1106     *minsize =
1107         g_value_get_int64 (gst_structure_id_get_value (structure,
1108             GST_QUARK (MINSIZE)));
1109   if (maxsize)
1110     *maxsize =
1111         g_value_get_int64 (gst_structure_id_get_value (structure,
1112             GST_QUARK (MAXSIZE)));
1113   if (async)
1114     *async =
1115         g_value_get_boolean (gst_structure_id_get_value (structure,
1116             GST_QUARK (ASYNC)));
1117 }
1118
1119 /**
1120  * gst_event_new_qos:
1121  * @type: the QoS type
1122  * @proportion: the proportion of the qos message
1123  * @diff: The time difference of the last Clock sync
1124  * @timestamp: The timestamp of the buffer
1125  *
1126  * Allocate a new qos event with the given values.
1127  * The QOS event is generated in an element that wants an upstream
1128  * element to either reduce or increase its rate because of
1129  * high/low CPU load or other resource usage such as network performance or
1130  * throttling. Typically sinks generate these events for each buffer
1131  * they receive.
1132  *
1133  * @type indicates the reason for the QoS event. #GST_QOS_TYPE_OVERFLOW is
1134  * used when a buffer arrived in time or when the sink cannot keep up with
1135  * the upstream datarate. #GST_QOS_TYPE_UNDERFLOW is when the sink is not
1136  * receiving buffers fast enough and thus has to drop late buffers. 
1137  * #GST_QOS_TYPE_THROTTLE is used when the datarate is artificially limited
1138  * by the application, for example to reduce power consumption.
1139  *
1140  * @proportion indicates the real-time performance of the streaming in the
1141  * element that generated the QoS event (usually the sink). The value is
1142  * generally computed based on more long term statistics about the streams
1143  * timestamps compared to the clock.
1144  * A value < 1.0 indicates that the upstream element is producing data faster
1145  * than real-time. A value > 1.0 indicates that the upstream element is not
1146  * producing data fast enough. 1.0 is the ideal @proportion value. The
1147  * proportion value can safely be used to lower or increase the quality of
1148  * the element.
1149  *
1150  * @diff is the difference against the clock in running time of the last
1151  * buffer that caused the element to generate the QOS event. A negative value
1152  * means that the buffer with @timestamp arrived in time. A positive value
1153  * indicates how late the buffer with @timestamp was. When throttling is
1154  * enabled, @diff will be set to the requested throttling interval.
1155  *
1156  * @timestamp is the timestamp of the last buffer that cause the element
1157  * to generate the QOS event. It is expressed in running time and thus an ever
1158  * increasing value.
1159  *
1160  * The upstream element can use the @diff and @timestamp values to decide
1161  * whether to process more buffers. For possitive @diff, all buffers with
1162  * timestamp <= @timestamp + @diff will certainly arrive late in the sink
1163  * as well. A (negative) @diff value so that @timestamp + @diff would yield a
1164  * result smaller than 0 is not allowed.
1165  *
1166  * The application can use general event probes to intercept the QoS
1167  * event and implement custom application specific QoS handling.
1168  *
1169  * Returns: (transfer full): a new QOS event.
1170  */
1171 GstEvent *
1172 gst_event_new_qos (GstQOSType type, gdouble proportion,
1173     GstClockTimeDiff diff, GstClockTime timestamp)
1174 {
1175   GstEvent *event;
1176   GstStructure *structure;
1177
1178   /* diff must be positive or timestamp + diff must be positive */
1179   g_return_val_if_fail (diff >= 0 || -diff <= timestamp, NULL);
1180
1181   GST_CAT_LOG (GST_CAT_EVENT,
1182       "creating qos type %d, proportion %lf, diff %" G_GINT64_FORMAT
1183       ", timestamp %" GST_TIME_FORMAT, type, proportion,
1184       diff, GST_TIME_ARGS (timestamp));
1185
1186   structure = gst_structure_new_id (GST_QUARK (EVENT_QOS),
1187       GST_QUARK (TYPE), GST_TYPE_QOS_TYPE, type,
1188       GST_QUARK (PROPORTION), G_TYPE_DOUBLE, proportion,
1189       GST_QUARK (DIFF), G_TYPE_INT64, diff,
1190       GST_QUARK (TIMESTAMP), G_TYPE_UINT64, timestamp, NULL);
1191   event = gst_event_new_custom (GST_EVENT_QOS, structure);
1192
1193   return event;
1194 }
1195
1196 /**
1197  * gst_event_parse_qos:
1198  * @event: The event to query
1199  * @type: (out): A pointer to store the QoS type in
1200  * @proportion: (out): A pointer to store the proportion in
1201  * @diff: (out): A pointer to store the diff in
1202  * @timestamp: (out): A pointer to store the timestamp in
1203  *
1204  * Get the type, proportion, diff and timestamp in the qos event. See
1205  * gst_event_new_qos() for more information about the different QoS values.
1206  */
1207 void
1208 gst_event_parse_qos (GstEvent * event, GstQOSType * type,
1209     gdouble * proportion, GstClockTimeDiff * diff, GstClockTime * timestamp)
1210 {
1211   const GstStructure *structure;
1212
1213   g_return_if_fail (GST_IS_EVENT (event));
1214   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_QOS);
1215
1216   structure = GST_EVENT_STRUCTURE (event);
1217   if (type)
1218     *type = (GstQOSType)
1219         g_value_get_enum (gst_structure_id_get_value (structure,
1220             GST_QUARK (TYPE)));
1221   if (proportion)
1222     *proportion =
1223         g_value_get_double (gst_structure_id_get_value (structure,
1224             GST_QUARK (PROPORTION)));
1225   if (diff)
1226     *diff =
1227         g_value_get_int64 (gst_structure_id_get_value (structure,
1228             GST_QUARK (DIFF)));
1229   if (timestamp)
1230     *timestamp =
1231         g_value_get_uint64 (gst_structure_id_get_value (structure,
1232             GST_QUARK (TIMESTAMP)));
1233 }
1234
1235 /**
1236  * gst_event_new_seek:
1237  * @rate: The new playback rate
1238  * @format: The format of the seek values
1239  * @flags: The optional seek flags
1240  * @start_type: The type and flags for the new start position
1241  * @start: The value of the new start position
1242  * @stop_type: The type and flags for the new stop position
1243  * @stop: The value of the new stop position
1244  *
1245  * Allocate a new seek event with the given parameters.
1246  *
1247  * The seek event configures playback of the pipeline between @start to @stop
1248  * at the speed given in @rate, also called a playback segment.
1249  * The @start and @stop values are expressed in @format.
1250  *
1251  * A @rate of 1.0 means normal playback rate, 2.0 means double speed.
1252  * Negatives values means backwards playback. A value of 0.0 for the
1253  * rate is not allowed and should be accomplished instead by PAUSING the
1254  * pipeline.
1255  *
1256  * A pipeline has a default playback segment configured with a start
1257  * position of 0, a stop position of -1 and a rate of 1.0. The currently
1258  * configured playback segment can be queried with #GST_QUERY_SEGMENT. 
1259  *
1260  * @start_type and @stop_type specify how to adjust the currently configured 
1261  * start and stop fields in playback segment. Adjustments can be made relative
1262  * or absolute to the last configured values. A type of #GST_SEEK_TYPE_NONE
1263  * means that the position should not be updated.
1264  *
1265  * When the rate is positive and @start has been updated, playback will start
1266  * from the newly configured start position. 
1267  *
1268  * For negative rates, playback will start from the newly configured stop
1269  * position (if any). If the stop position is updated, it must be different from
1270  * -1 (#GST_CLOCK_TIME_NONE) for negative rates.
1271  *
1272  * It is not possible to seek relative to the current playback position, to do
1273  * this, PAUSE the pipeline, query the current playback position with
1274  * #GST_QUERY_POSITION and update the playback segment current position with a
1275  * #GST_SEEK_TYPE_SET to the desired position.
1276  *
1277  * Returns: (transfer full): a new seek event.
1278  */
1279 GstEvent *
1280 gst_event_new_seek (gdouble rate, GstFormat format, GstSeekFlags flags,
1281     GstSeekType start_type, gint64 start, GstSeekType stop_type, gint64 stop)
1282 {
1283   GstEvent *event;
1284   GstStructure *structure;
1285
1286   g_return_val_if_fail (rate != 0.0, NULL);
1287
1288   if (format == GST_FORMAT_TIME) {
1289     GST_CAT_INFO (GST_CAT_EVENT,
1290         "creating seek rate %lf, format TIME, flags %d, "
1291         "start_type %d, start %" GST_TIME_FORMAT ", "
1292         "stop_type %d, stop %" GST_TIME_FORMAT,
1293         rate, flags, start_type, GST_TIME_ARGS (start),
1294         stop_type, GST_TIME_ARGS (stop));
1295   } else {
1296     GST_CAT_INFO (GST_CAT_EVENT,
1297         "creating seek rate %lf, format %s, flags %d, "
1298         "start_type %d, start %" G_GINT64_FORMAT ", "
1299         "stop_type %d, stop %" G_GINT64_FORMAT,
1300         rate, gst_format_get_name (format), flags, start_type, start, stop_type,
1301         stop);
1302   }
1303
1304   structure = gst_structure_new_id (GST_QUARK (EVENT_SEEK),
1305       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1306       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1307       GST_QUARK (FLAGS), GST_TYPE_SEEK_FLAGS, flags,
1308       GST_QUARK (CUR_TYPE), GST_TYPE_SEEK_TYPE, start_type,
1309       GST_QUARK (CUR), G_TYPE_INT64, start,
1310       GST_QUARK (STOP_TYPE), GST_TYPE_SEEK_TYPE, stop_type,
1311       GST_QUARK (STOP), G_TYPE_INT64, stop, NULL);
1312   event = gst_event_new_custom (GST_EVENT_SEEK, structure);
1313
1314   return event;
1315 }
1316
1317 /**
1318  * gst_event_parse_seek:
1319  * @event: a seek event
1320  * @rate: (out): result location for the rate
1321  * @format: (out): result location for the stream format
1322  * @flags:  (out): result location for the #GstSeekFlags
1323  * @start_type: (out): result location for the #GstSeekType of the start position
1324  * @start: (out): result location for the start postion expressed in @format
1325  * @stop_type:  (out): result location for the #GstSeekType of the stop position
1326  * @stop: (out): result location for the stop postion expressed in @format
1327  *
1328  * Parses a seek @event and stores the results in the given result locations.
1329  */
1330 void
1331 gst_event_parse_seek (GstEvent * event, gdouble * rate,
1332     GstFormat * format, GstSeekFlags * flags, GstSeekType * start_type,
1333     gint64 * start, GstSeekType * stop_type, gint64 * stop)
1334 {
1335   const GstStructure *structure;
1336
1337   g_return_if_fail (GST_IS_EVENT (event));
1338   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEEK);
1339
1340   structure = GST_EVENT_STRUCTURE (event);
1341   if (rate)
1342     *rate =
1343         g_value_get_double (gst_structure_id_get_value (structure,
1344             GST_QUARK (RATE)));
1345   if (format)
1346     *format = (GstFormat)
1347         g_value_get_enum (gst_structure_id_get_value (structure,
1348             GST_QUARK (FORMAT)));
1349   if (flags)
1350     *flags = (GstSeekFlags)
1351         g_value_get_flags (gst_structure_id_get_value (structure,
1352             GST_QUARK (FLAGS)));
1353   if (start_type)
1354     *start_type = (GstSeekType)
1355         g_value_get_enum (gst_structure_id_get_value (structure,
1356             GST_QUARK (CUR_TYPE)));
1357   if (start)
1358     *start =
1359         g_value_get_int64 (gst_structure_id_get_value (structure,
1360             GST_QUARK (CUR)));
1361   if (stop_type)
1362     *stop_type = (GstSeekType)
1363         g_value_get_enum (gst_structure_id_get_value (structure,
1364             GST_QUARK (STOP_TYPE)));
1365   if (stop)
1366     *stop =
1367         g_value_get_int64 (gst_structure_id_get_value (structure,
1368             GST_QUARK (STOP)));
1369 }
1370
1371 /**
1372  * gst_event_new_navigation:
1373  * @structure: (transfer full): description of the event. The event will take
1374  *     ownership of the structure.
1375  *
1376  * Create a new navigation event from the given description.
1377  *
1378  * Returns: (transfer full): a new #GstEvent
1379  */
1380 GstEvent *
1381 gst_event_new_navigation (GstStructure * structure)
1382 {
1383   g_return_val_if_fail (structure != NULL, NULL);
1384
1385   return gst_event_new_custom (GST_EVENT_NAVIGATION, structure);
1386 }
1387
1388 /**
1389  * gst_event_new_latency:
1390  * @latency: the new latency value
1391  *
1392  * Create a new latency event. The event is sent upstream from the sinks and
1393  * notifies elements that they should add an additional @latency to the
1394  * running time before synchronising against the clock.
1395  *
1396  * The latency is mostly used in live sinks and is always expressed in
1397  * the time format.
1398  *
1399  * Returns: (transfer full): a new #GstEvent
1400  *
1401  * Since: 0.10.12
1402  */
1403 GstEvent *
1404 gst_event_new_latency (GstClockTime latency)
1405 {
1406   GstEvent *event;
1407   GstStructure *structure;
1408
1409   GST_CAT_INFO (GST_CAT_EVENT,
1410       "creating latency event %" GST_TIME_FORMAT, GST_TIME_ARGS (latency));
1411
1412   structure = gst_structure_new_id (GST_QUARK (EVENT_LATENCY),
1413       GST_QUARK (LATENCY), G_TYPE_UINT64, latency, NULL);
1414   event = gst_event_new_custom (GST_EVENT_LATENCY, structure);
1415
1416   return event;
1417 }
1418
1419 /**
1420  * gst_event_parse_latency:
1421  * @event: The event to query
1422  * @latency: (out): A pointer to store the latency in.
1423  *
1424  * Get the latency in the latency event.
1425  *
1426  * Since: 0.10.12
1427  */
1428 void
1429 gst_event_parse_latency (GstEvent * event, GstClockTime * latency)
1430 {
1431   g_return_if_fail (GST_IS_EVENT (event));
1432   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_LATENCY);
1433
1434   if (latency)
1435     *latency =
1436         g_value_get_uint64 (gst_structure_id_get_value (GST_EVENT_STRUCTURE
1437             (event), GST_QUARK (LATENCY)));
1438 }
1439
1440 /**
1441  * gst_event_new_step:
1442  * @format: the format of @amount
1443  * @amount: the amount of data to step
1444  * @rate: the step rate
1445  * @flush: flushing steps
1446  * @intermediate: intermediate steps
1447  *
1448  * Create a new step event. The purpose of the step event is to instruct a sink
1449  * to skip @amount (expressed in @format) of media. It can be used to implement
1450  * stepping through the video frame by frame or for doing fast trick modes.
1451  *
1452  * A rate of <= 0.0 is not allowed. Pause the pipeline, for the effect of rate
1453  * = 0.0 or first reverse the direction of playback using a seek event to get
1454  * the same effect as rate < 0.0.
1455  *
1456  * The @flush flag will clear any pending data in the pipeline before starting
1457  * the step operation.
1458  *
1459  * The @intermediate flag instructs the pipeline that this step operation is
1460  * part of a larger step operation.
1461  *
1462  * Returns: (transfer full): a new #GstEvent
1463  *
1464  * Since: 0.10.24
1465  */
1466 GstEvent *
1467 gst_event_new_step (GstFormat format, guint64 amount, gdouble rate,
1468     gboolean flush, gboolean intermediate)
1469 {
1470   GstEvent *event;
1471   GstStructure *structure;
1472
1473   g_return_val_if_fail (rate > 0.0, NULL);
1474
1475   GST_CAT_INFO (GST_CAT_EVENT, "creating step event");
1476
1477   structure = gst_structure_new_id (GST_QUARK (EVENT_STEP),
1478       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1479       GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
1480       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1481       GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
1482       GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate, NULL);
1483   event = gst_event_new_custom (GST_EVENT_STEP, structure);
1484
1485   return event;
1486 }
1487
1488 /**
1489  * gst_event_parse_step:
1490  * @event: The event to query
1491  * @format: (out) (allow-none): a pointer to store the format in
1492  * @amount: (out) (allow-none): a pointer to store the amount in
1493  * @rate: (out) (allow-none): a pointer to store the rate in
1494  * @flush: (out) (allow-none): a pointer to store the flush boolean in
1495  * @intermediate: (out) (allow-none): a pointer to store the intermediate
1496  *     boolean in
1497  *
1498  * Parse the step event.
1499  *
1500  * Since: 0.10.24
1501  */
1502 void
1503 gst_event_parse_step (GstEvent * event, GstFormat * format, guint64 * amount,
1504     gdouble * rate, gboolean * flush, gboolean * intermediate)
1505 {
1506   const GstStructure *structure;
1507
1508   g_return_if_fail (GST_IS_EVENT (event));
1509   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STEP);
1510
1511   structure = GST_EVENT_STRUCTURE (event);
1512   if (format)
1513     *format =
1514         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
1515             GST_QUARK (FORMAT)));
1516   if (amount)
1517     *amount = g_value_get_uint64 (gst_structure_id_get_value (structure,
1518             GST_QUARK (AMOUNT)));
1519   if (rate)
1520     *rate = g_value_get_double (gst_structure_id_get_value (structure,
1521             GST_QUARK (RATE)));
1522   if (flush)
1523     *flush = g_value_get_boolean (gst_structure_id_get_value (structure,
1524             GST_QUARK (FLUSH)));
1525   if (intermediate)
1526     *intermediate = g_value_get_boolean (gst_structure_id_get_value (structure,
1527             GST_QUARK (INTERMEDIATE)));
1528 }
1529
1530 /**
1531  * gst_event_new_reconfigure:
1532
1533  * Create a new reconfigure event. The purpose of the reconfingure event is
1534  * to travel upstream and make elements renegotiate their caps or reconfigure
1535  * their buffer pools. This is useful when changing properties on elements
1536  * or changing the topology of the pipeline.
1537  *
1538  * Returns: (transfer full): a new #GstEvent
1539  *
1540  * Since: 0.11.0
1541  */
1542 GstEvent *
1543 gst_event_new_reconfigure (void)
1544 {
1545   GstEvent *event;
1546
1547   GST_CAT_INFO (GST_CAT_EVENT, "creating reconfigure event");
1548
1549   event = gst_event_new_custom (GST_EVENT_RECONFIGURE, NULL);
1550
1551   return event;
1552 }
1553
1554 /**
1555  * gst_event_new_sink_message:
1556  * @name: a name for the event
1557  * @msg: (transfer none): the #GstMessage to be posted
1558  *
1559  * Create a new sink-message event. The purpose of the sink-message event is
1560  * to instruct a sink to post the message contained in the event synchronized
1561  * with the stream.
1562  *
1563  * @name is used to store multiple sticky events on one pad.
1564  *
1565  * Returns: (transfer full): a new #GstEvent
1566  *
1567  * Since: 0.10.26
1568  */
1569 /* FIXME 0.11: take ownership of msg for consistency? */
1570 GstEvent *
1571 gst_event_new_sink_message (const gchar * name, GstMessage * msg)
1572 {
1573   GstEvent *event;
1574   GstStructure *structure;
1575
1576   g_return_val_if_fail (msg != NULL, NULL);
1577
1578   GST_CAT_INFO (GST_CAT_EVENT, "creating sink-message event");
1579
1580   structure = gst_structure_new_id (g_quark_from_string (name),
1581       GST_QUARK (MESSAGE), GST_TYPE_MESSAGE, msg, NULL);
1582   event = gst_event_new_custom (GST_EVENT_SINK_MESSAGE, structure);
1583
1584   return event;
1585 }
1586
1587 /**
1588  * gst_event_parse_sink_message:
1589  * @event: The event to query
1590  * @msg: (out) (transfer full): a pointer to store the #GstMessage in.
1591  *
1592  * Parse the sink-message event. Unref @msg after usage.
1593  *
1594  * Since: 0.10.26
1595  */
1596 void
1597 gst_event_parse_sink_message (GstEvent * event, GstMessage ** msg)
1598 {
1599   const GstStructure *structure;
1600
1601   g_return_if_fail (GST_IS_EVENT (event));
1602   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SINK_MESSAGE);
1603
1604   structure = GST_EVENT_STRUCTURE (event);
1605   if (msg)
1606     *msg =
1607         GST_MESSAGE (g_value_dup_boxed (gst_structure_id_get_value
1608             (structure, GST_QUARK (MESSAGE))));
1609 }
1610
1611 /**
1612  * gst_event_new_stream_start:
1613  *
1614  * Create a new STREAM_START event. The stream start event can only
1615  * travel downstream synchronized with the buffer flow. It is expected
1616  * to be the first event that is sent for a new stream.
1617  *
1618  * Source elements, demuxers and other elements that create new streams
1619  * are supposed to send this event as the first event of a new stream. It
1620  * should not be send after a flushing seek or in similar situations
1621  * and is used to mark the beginning of a new logical stream. Elements
1622  * combining multiple streams must ensure that this event is only forwarded
1623  * downstream once and not for every single input stream.
1624  *
1625  * Returns: (transfer full): the new STREAM_START event.
1626  */
1627 GstEvent *
1628 gst_event_new_stream_start (void)
1629 {
1630   return gst_event_new_custom (GST_EVENT_STREAM_START, NULL);
1631 }
1632
1633 /**
1634  * gst_event_new_toc:
1635  * @toc: #GstToc structure.
1636  * @updated: whether @toc was updated or not.
1637  *
1638  * Generate a TOC event from the given @toc. The purpose of the TOC event is to
1639  * inform elements that some kind of the TOC was found.
1640  *
1641  * Returns: a new #GstEvent.
1642  *
1643  * Since: 0.10.37
1644  */
1645 GstEvent *
1646 gst_event_new_toc (GstToc * toc, gboolean updated)
1647 {
1648   GstStructure *toc_struct;
1649
1650   g_return_val_if_fail (toc != NULL, NULL);
1651
1652   GST_CAT_INFO (GST_CAT_EVENT, "creating toc event");
1653
1654   toc_struct = __gst_toc_to_structure (toc);
1655
1656   if (G_LIKELY (toc_struct != NULL)) {
1657     __gst_toc_structure_set_updated (toc_struct, updated);
1658     return gst_event_new_custom (GST_EVENT_TOC, toc_struct);
1659   } else
1660     return NULL;
1661 }
1662
1663 /**
1664  * gst_event_parse_toc:
1665  * @event: a TOC event.
1666  * @toc: (out): pointer to #GstToc structure.
1667  * @updated: (out): pointer to store TOC updated flag.
1668  *
1669  * Parse a TOC @event and store the results in the given @toc and @updated locations.
1670  *
1671  * Since: 0.10.37
1672  */
1673 void
1674 gst_event_parse_toc (GstEvent * event, GstToc ** toc, gboolean * updated)
1675 {
1676   const GstStructure *structure;
1677
1678   g_return_if_fail (event != NULL);
1679   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TOC);
1680   g_return_if_fail (toc != NULL);
1681
1682   structure = gst_event_get_structure (event);
1683   *toc = __gst_toc_from_structure (structure);
1684
1685   if (updated != NULL)
1686     *updated = __gst_toc_structure_get_updated (structure);
1687 }
1688
1689 /**
1690  * gst_event_new_toc_select:
1691  * @uid: UID in the TOC to start playback from.
1692  *
1693  * Generate a TOC select event with the given @uid. The purpose of the
1694  * TOC select event is to start playback based on the TOC's entry with the
1695  * given @uid.
1696  *
1697  * Returns: a new #GstEvent.
1698  *
1699  * Since: 0.10.37
1700  */
1701 GstEvent *
1702 gst_event_new_toc_select (const gchar * uid)
1703 {
1704   GstStructure *structure;
1705
1706   g_return_val_if_fail (uid != NULL, NULL);
1707
1708   GST_CAT_INFO (GST_CAT_EVENT, "creating toc select event for UID: %s", uid);
1709
1710   structure = gst_structure_new_id (GST_QUARK (EVENT_TOC_SELECT),
1711       GST_QUARK (UID), G_TYPE_STRING, uid, NULL);
1712
1713   return gst_event_new_custom (GST_EVENT_TOC_SELECT, structure);
1714 }
1715
1716 /**
1717  * gst_event_parse_toc_select:
1718  * @event: a TOC select event.
1719  * @uid: (out): storage for the selection UID.
1720  *
1721  * Parse a TOC select @event and store the results in the given @uid location.
1722  *
1723  * Since: 0.10.37
1724  */
1725 void
1726 gst_event_parse_toc_select (GstEvent * event, gchar ** uid)
1727 {
1728   const GstStructure *structure;
1729   const GValue *val;
1730
1731   g_return_if_fail (event != NULL);
1732   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TOC_SELECT);
1733
1734   structure = gst_event_get_structure (event);
1735   val = gst_structure_id_get_value (structure, GST_QUARK (UID));
1736
1737   if (uid != NULL)
1738     *uid = g_strdup (g_value_get_string (val));
1739
1740 }