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