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