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