event: make GstSegment argument const
[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 2006-09-6 (0.10.10)
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
88 GType _gst_event_type = 0;
89
90 typedef struct
91 {
92   GstEvent event;
93
94   GstStructure *structure;
95 } GstEventImpl;
96
97 #define GST_EVENT_STRUCTURE(e)  (((GstEventImpl *)(e))->structure)
98
99 typedef struct
100 {
101   const gint type;
102   const gchar *name;
103   GQuark quark;
104 } GstEventQuarks;
105
106 static GstEventQuarks event_quarks[] = {
107   {GST_EVENT_UNKNOWN, "unknown", 0},
108   {GST_EVENT_FLUSH_START, "flush-start", 0},
109   {GST_EVENT_FLUSH_STOP, "flush-stop", 0},
110   {GST_EVENT_EOS, "eos", 0},
111   {GST_EVENT_CAPS, "caps", 0},
112   {GST_EVENT_SEGMENT, "segment", 0},
113   {GST_EVENT_TAG, "tag", 0},
114   {GST_EVENT_BUFFERSIZE, "buffersize", 0},
115   {GST_EVENT_SINK_MESSAGE, "sink-message", 0},
116   {GST_EVENT_QOS, "qos", 0},
117   {GST_EVENT_SEEK, "seek", 0},
118   {GST_EVENT_NAVIGATION, "navigation", 0},
119   {GST_EVENT_LATENCY, "latency", 0},
120   {GST_EVENT_STEP, "step", 0},
121   {GST_EVENT_RECONFIGURE, "reconfigure", 0},
122   {GST_EVENT_CUSTOM_UPSTREAM, "custom-upstream", 0},
123   {GST_EVENT_CUSTOM_DOWNSTREAM, "custom-downstream", 0},
124   {GST_EVENT_CUSTOM_DOWNSTREAM_OOB, "custom-downstream-oob", 0},
125   {GST_EVENT_CUSTOM_BOTH, "custom-both", 0},
126   {GST_EVENT_CUSTOM_BOTH_OOB, "custom-both-oob", 0},
127
128   {0, NULL, 0}
129 };
130
131 GST_DEFINE_MINI_OBJECT_TYPE (GstEvent, gst_event);
132
133 void
134 _priv_gst_event_initialize (void)
135 {
136   gint i;
137
138   _gst_event_type = gst_event_get_type ();
139
140   g_type_class_ref (gst_seek_flags_get_type ());
141   g_type_class_ref (gst_seek_type_get_type ());
142
143   for (i = 0; event_quarks[i].name; i++) {
144     event_quarks[i].quark = g_quark_from_static_string (event_quarks[i].name);
145   }
146 }
147
148 /**
149  * gst_event_type_get_name:
150  * @type: the event type
151  *
152  * Get a printable name for the given event type. Do not modify or free.
153  *
154  * Returns: a reference to the static name of the event.
155  */
156 const gchar *
157 gst_event_type_get_name (GstEventType type)
158 {
159   gint i;
160
161   for (i = 0; event_quarks[i].name; i++) {
162     if (type == event_quarks[i].type)
163       return event_quarks[i].name;
164   }
165   return "unknown";
166 }
167
168 /**
169  * gst_event_type_to_quark:
170  * @type: the event type
171  *
172  * Get the unique quark for the given event type.
173  *
174  * Returns: the quark associated with the event type
175  */
176 GQuark
177 gst_event_type_to_quark (GstEventType type)
178 {
179   gint i;
180
181   for (i = 0; event_quarks[i].name; i++) {
182     if (type == event_quarks[i].type)
183       return event_quarks[i].quark;
184   }
185   return 0;
186 }
187
188 /**
189  * gst_event_type_get_flags:
190  * @type: a #GstEventType
191  *
192  * Gets the #GstEventTypeFlags associated with @type.
193  *
194  * Returns: a #GstEventTypeFlags.
195  */
196 GstEventTypeFlags
197 gst_event_type_get_flags (GstEventType type)
198 {
199   GstEventTypeFlags ret;
200
201   ret = type & ((1 << GST_EVENT_STICKY_SHIFT) - 1);
202
203   return ret;
204 }
205
206 static void
207 _gst_event_free (GstEvent * event)
208 {
209   GstStructure *s;
210
211   g_return_if_fail (event != NULL);
212   g_return_if_fail (GST_IS_EVENT (event));
213
214   GST_CAT_LOG (GST_CAT_EVENT, "freeing event %p type %s", event,
215       GST_EVENT_TYPE_NAME (event));
216
217   s = GST_EVENT_STRUCTURE (event);
218
219   if (s) {
220     gst_structure_set_parent_refcount (s, NULL);
221     gst_structure_free (s);
222   }
223
224   g_slice_free1 (GST_MINI_OBJECT_SIZE (event), event);
225 }
226
227 static void gst_event_init (GstEventImpl * event, gsize size,
228     GstEventType type);
229
230 static GstEvent *
231 _gst_event_copy (GstEvent * event)
232 {
233   GstEventImpl *copy;
234   GstStructure *s;
235
236   copy = g_slice_new0 (GstEventImpl);
237
238   gst_event_init (copy, sizeof (GstEventImpl), GST_EVENT_TYPE (event));
239
240   GST_EVENT_TIMESTAMP (copy) = GST_EVENT_TIMESTAMP (event);
241   GST_EVENT_SEQNUM (copy) = GST_EVENT_SEQNUM (event);
242
243   s = GST_EVENT_STRUCTURE (event);
244   if (s) {
245     GST_EVENT_STRUCTURE (copy) = gst_structure_copy (s);
246     gst_structure_set_parent_refcount (GST_EVENT_STRUCTURE (copy),
247         &copy->event.mini_object.refcount);
248   }
249   return GST_EVENT_CAST (copy);
250 }
251
252 static void
253 gst_event_init (GstEventImpl * event, gsize size, GstEventType type)
254 {
255   gst_mini_object_init (GST_MINI_OBJECT_CAST (event), _gst_event_type, size);
256
257   event->event.mini_object.copy = (GstMiniObjectCopyFunction) _gst_event_copy;
258   event->event.mini_object.free = (GstMiniObjectFreeFunction) _gst_event_free;
259
260   GST_EVENT_TYPE (event) = type;
261   GST_EVENT_TIMESTAMP (event) = GST_CLOCK_TIME_NONE;
262   GST_EVENT_SEQNUM (event) = gst_util_seqnum_next ();
263 }
264
265 static GstEvent *
266 gst_event_new (GstEventType type)
267 {
268   GstEventImpl *event;
269
270   event = g_slice_new0 (GstEventImpl);
271
272   GST_CAT_DEBUG (GST_CAT_EVENT, "creating new event %p %s %d", event,
273       gst_event_type_get_name (type), type);
274
275   gst_event_init (event, sizeof (GstEventImpl), type);
276
277   return GST_EVENT_CAST (event);
278 }
279
280 /**
281  * gst_event_new_custom:
282  * @type: The type of the new event
283  * @structure: (transfer full): the structure for the event. The event will
284  *     take ownership of the structure.
285  *
286  * Create a new custom-typed event. This can be used for anything not
287  * handled by other event-specific functions to pass an event to another
288  * element.
289  *
290  * Make sure to allocate an event type with the #GST_EVENT_MAKE_TYPE macro,
291  * assigning a free number and filling in the correct direction and
292  * serialization flags.
293  *
294  * New custom events can also be created by subclassing the event type if
295  * needed.
296  *
297  * Returns: (transfer full): the new custom event.
298  */
299 GstEvent *
300 gst_event_new_custom (GstEventType type, GstStructure * structure)
301 {
302   GstEvent *event;
303
304   /* structure must not have a parent */
305   event = gst_event_new (type);
306   if (structure) {
307     if (!gst_structure_set_parent_refcount (structure,
308             &event->mini_object.refcount))
309       goto had_parent;
310
311     GST_EVENT_STRUCTURE (event) = structure;
312   }
313   return event;
314
315   /* ERRORS */
316 had_parent:
317   {
318     gst_event_unref (event);
319     g_warning ("structure is already owned by another object");
320     return NULL;
321   }
322 }
323
324 /**
325  * gst_event_get_structure:
326  * @event: The #GstEvent.
327  *
328  * Access the structure of the event.
329  *
330  * Returns: The structure of the event. The structure is still
331  * owned by the event, which means that you should not free it and
332  * that the pointer becomes invalid when you free the event.
333  *
334  * MT safe.
335  */
336 const GstStructure *
337 gst_event_get_structure (GstEvent * event)
338 {
339   g_return_val_if_fail (GST_IS_EVENT (event), NULL);
340
341   return GST_EVENT_STRUCTURE (event);
342 }
343
344 /**
345  * gst_event_writable_structure:
346  * @event: The #GstEvent.
347  *
348  * Get a writable version of the structure.
349  *
350  * Returns: The structure of the event. The structure is still
351  * owned by the event, which means that you should not free it and
352  * that the pointer becomes invalid when you free the event.
353  * This function checks if @event is writable and will never return NULL.
354  *
355  * MT safe.
356  */
357 GstStructure *
358 gst_event_writable_structure (GstEvent * event)
359 {
360   GstStructure *structure;
361
362   g_return_val_if_fail (GST_IS_EVENT (event), NULL);
363   g_return_val_if_fail (gst_event_is_writable (event), NULL);
364
365   structure = GST_EVENT_STRUCTURE (event);
366
367   if (structure == NULL) {
368     structure =
369         gst_structure_new_id_empty (gst_event_type_to_quark (GST_EVENT_TYPE
370             (event)));
371     gst_structure_set_parent_refcount (structure, &event->mini_object.refcount);
372     GST_EVENT_STRUCTURE (event) = structure;
373   }
374   return structure;
375 }
376
377 /**
378  * gst_event_has_name:
379  * @event: The #GstEvent.
380  * @name: name to check
381  *
382  * Checks if @event has the given @name. This function is usually used to
383  * check the name of a custom event.
384  *
385  * Returns: %TRUE if @name matches the name of the event structure.
386  *
387  * Since: 0.10.20
388  */
389 gboolean
390 gst_event_has_name (GstEvent * event, const gchar * name)
391 {
392   g_return_val_if_fail (GST_IS_EVENT (event), FALSE);
393
394   if (GST_EVENT_STRUCTURE (event) == NULL)
395     return FALSE;
396
397   return gst_structure_has_name (GST_EVENT_STRUCTURE (event), name);
398 }
399
400 /**
401  * gst_event_get_seqnum:
402  * @event: A #GstEvent.
403  *
404  * Retrieve the sequence number of a event.
405  *
406  * Events have ever-incrementing sequence numbers, which may also be set
407  * explicitly via gst_event_set_seqnum(). Sequence numbers are typically used to
408  * indicate that a event corresponds to some other set of events or messages,
409  * for example an EOS event corresponding to a SEEK event. It is considered good
410  * practice to make this correspondence when possible, though it is not
411  * required.
412  *
413  * Note that events and messages share the same sequence number incrementor;
414  * two events or messages will never have the same sequence number unless
415  * that correspondence was made explicitly.
416  *
417  * Returns: The event's sequence number.
418  *
419  * MT safe.
420  *
421  * Since: 0.10.22
422  */
423 guint32
424 gst_event_get_seqnum (GstEvent * event)
425 {
426   g_return_val_if_fail (GST_IS_EVENT (event), -1);
427
428   return GST_EVENT_SEQNUM (event);
429 }
430
431 /**
432  * gst_event_set_seqnum:
433  * @event: A #GstEvent.
434  * @seqnum: A sequence number.
435  *
436  * Set the sequence number of a event.
437  *
438  * This function might be called by the creator of a event to indicate that the
439  * event relates to other events or messages. See gst_event_get_seqnum() for
440  * more information.
441  *
442  * MT safe.
443  *
444  * Since: 0.10.22
445  */
446 void
447 gst_event_set_seqnum (GstEvent * event, guint32 seqnum)
448 {
449   g_return_if_fail (GST_IS_EVENT (event));
450
451   GST_EVENT_SEQNUM (event) = seqnum;
452 }
453
454 /* FIXME 0.11: It would be nice to have flush events
455  * that don't reset the running time in the sinks
456  */
457
458 /**
459  * gst_event_new_flush_start:
460  *
461  * Allocate a new flush start event. The flush start event can be sent
462  * upstream and downstream and travels out-of-bounds with the dataflow.
463  *
464  * It marks pads as being flushing and will make them return
465  * #GST_FLOW_WRONG_STATE when used for data flow with gst_pad_push(),
466  * gst_pad_chain(), gst_pad_alloc_buffer(), gst_pad_get_range() and
467  * gst_pad_pull_range(). Any event (except a #GST_EVENT_FLUSH_STOP) received
468  * on a flushing pad will return %FALSE immediately.
469  *
470  * Elements should unlock any blocking functions and exit their streaming
471  * functions as fast as possible when this event is received.
472  *
473  * This event is typically generated after a seek to flush out all queued data
474  * in the pipeline so that the new media is played as soon as possible.
475  *
476  * Returns: (transfer full): a new flush start event.
477  */
478 GstEvent *
479 gst_event_new_flush_start (void)
480 {
481   return gst_event_new (GST_EVENT_FLUSH_START);
482 }
483
484 /**
485  * gst_event_new_flush_stop:
486  * @reset_time: if time should be reset
487  *
488  * Allocate a new flush stop event. The flush stop event can be sent
489  * upstream and downstream and travels serialized with the dataflow.
490  * It is typically sent after sending a FLUSH_START event to make the
491  * pads accept data again.
492  *
493  * Elements can process this event synchronized with the dataflow since
494  * the preceeding FLUSH_START event stopped the dataflow.
495  *
496  * This event is typically generated to complete a seek and to resume
497  * dataflow.
498  *
499  * Returns: (transfer full): a new flush stop event.
500  */
501 GstEvent *
502 gst_event_new_flush_stop (gboolean reset_time)
503 {
504   GstEvent *event;
505
506   GST_CAT_INFO (GST_CAT_EVENT, "creating flush stop %d", reset_time);
507
508   event = gst_event_new_custom (GST_EVENT_FLUSH_STOP,
509       gst_structure_new_id (GST_QUARK (EVENT_FLUSH_STOP),
510           GST_QUARK (RESET_TIME), G_TYPE_BOOLEAN, reset_time, NULL));
511
512   return event;
513 }
514
515 /**
516  * gst_event_parse_flush_stop:
517  * @event: The event to parse
518  * @reset_time: (out): if time should be reset
519  *
520  * Parse the FLUSH_STOP event and retrieve the @reset_time member.
521  */
522 void
523 gst_event_parse_flush_stop (GstEvent * event, gboolean * reset_time)
524 {
525   GstStructure *structure;
526
527   g_return_if_fail (GST_IS_EVENT (event));
528   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_STOP);
529
530   structure = GST_EVENT_STRUCTURE (event);
531   if (G_LIKELY (reset_time))
532     *reset_time =
533         g_value_get_boolean (gst_structure_id_get_value (structure,
534             GST_QUARK (RESET_TIME)));
535 }
536
537 /**
538  * gst_event_new_eos:
539  *
540  * Create a new EOS event. The eos event can only travel downstream
541  * synchronized with the buffer flow. Elements that receive the EOS
542  * event on a pad can return #GST_FLOW_UNEXPECTED as a #GstFlowReturn
543  * when data after the EOS event arrives.
544  *
545  * The EOS event will travel down to the sink elements in the pipeline
546  * which will then post the #GST_MESSAGE_EOS on the bus after they have
547  * finished playing any buffered data.
548  *
549  * When all sinks have posted an EOS message, an EOS message is
550  * forwarded to the application.
551  *
552  * The EOS event itself will not cause any state transitions of the pipeline.
553  *
554  * Returns: (transfer full): the new EOS event.
555  */
556 GstEvent *
557 gst_event_new_eos (void)
558 {
559   return gst_event_new (GST_EVENT_EOS);
560 }
561
562 /**
563  * gst_event_new_caps:
564  * @caps: (transfer none): a #GstCaps
565  *
566  * Create a new CAPS event for @caps. The caps event can only travel downstream
567  * synchronized with the buffer flow and contains the format of the buffers
568  * that will follow after the event.
569  *
570  * Returns: (transfer full): the new CAPS event.
571  */
572 GstEvent *
573 gst_event_new_caps (GstCaps * caps)
574 {
575   GstEvent *event;
576
577   g_return_val_if_fail (caps != NULL, NULL);
578   g_return_val_if_fail (gst_caps_is_fixed (caps), NULL);
579
580   GST_CAT_INFO (GST_CAT_EVENT, "creating caps event %" GST_PTR_FORMAT, caps);
581
582   event = gst_event_new_custom (GST_EVENT_CAPS,
583       gst_structure_new_id (GST_QUARK (EVENT_CAPS),
584           GST_QUARK (CAPS), GST_TYPE_CAPS, caps, NULL));
585
586   return event;
587 }
588
589 /**
590  * gst_event_parse_caps:
591  * @event: The event to parse
592  * @caps: (out): A pointer to the caps
593  *
594  * Get the caps from @event. The caps remains valid as long as @event remains
595  * valid.
596  */
597 void
598 gst_event_parse_caps (GstEvent * event, GstCaps ** caps)
599 {
600   GstStructure *structure;
601
602   g_return_if_fail (GST_IS_EVENT (event));
603   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_CAPS);
604
605   structure = GST_EVENT_STRUCTURE (event);
606   if (G_LIKELY (caps))
607     *caps =
608         g_value_get_boxed (gst_structure_id_get_value (structure,
609             GST_QUARK (CAPS)));
610 }
611
612 /**
613  * gst_event_new_segment:
614  * @segment: (transfer none): a #GstSegment
615  *
616  * Create a new SEGMENT event for @segment. The segment event can only travel
617  * downstream synchronized with the buffer flow and contains timing information
618  * and playback properties for the buffers that will follow.
619  *
620  * The newsegment event marks the range of buffers to be processed. All
621  * data not within the segment range is not to be processed. This can be
622  * used intelligently by plugins to apply more efficient methods of skipping
623  * unneeded data. The valid range is expressed with the @start and @stop
624  * values.
625  *
626  * The time value of the segment is used in conjunction with the start
627  * value to convert the buffer timestamps into the stream time. This is
628  * usually done in sinks to report the current stream_time.
629  * @time represents the stream_time of a buffer carrying a timestamp of
630  * @start. @time cannot be -1.
631  *
632  * @start cannot be -1, @stop can be -1. If there
633  * is a valid @stop given, it must be greater or equal the @start, including
634  * when the indicated playback @rate is < 0.
635  *
636  * The @applied_rate value provides information about any rate adjustment that
637  * has already been made to the timestamps and content on the buffers of the
638  * stream. (@rate * @applied_rate) should always equal the rate that has been
639  * requested for playback. For example, if an element has an input segment
640  * with intended playback @rate of 2.0 and applied_rate of 1.0, it can adjust
641  * incoming timestamps and buffer content by half and output a newsegment event
642  * with @rate of 1.0 and @applied_rate of 2.0
643  *
644  * After a newsegment event, the buffer stream time is calculated with:
645  *
646  *   time + (TIMESTAMP(buf) - start) * ABS (rate * applied_rate)
647  *
648  * Returns: (transfer full): the new SEGMENT event.
649  */
650 GstEvent *
651 gst_event_new_segment (const GstSegment * segment)
652 {
653   GstEvent *event;
654
655   g_return_val_if_fail (segment != NULL, NULL);
656
657   GST_CAT_INFO (GST_CAT_EVENT, "creating segment event %" GST_SEGMENT_FORMAT,
658       segment);
659
660   event = gst_event_new_custom (GST_EVENT_SEGMENT,
661       gst_structure_new_id (GST_QUARK (EVENT_SEGMENT),
662           GST_QUARK (SEGMENT), GST_TYPE_SEGMENT, segment, NULL));
663
664   return event;
665 }
666
667 /**
668  * gst_event_parse_segment:
669  * @event: The event to parse
670  * @segment: (out) (transfer none): a pointer to a #GstSegment
671  *
672  * Parses a segment @event and stores the result in the given @segment location.
673  * @segment remains valid only until the @event is freed. Don't modify the segment
674  * and make a copy if you want to modify it or store it for later use.
675  */
676 void
677 gst_event_parse_segment (GstEvent * event, const GstSegment ** segment)
678 {
679   GstStructure *structure;
680
681   g_return_if_fail (GST_IS_EVENT (event));
682   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
683
684   if (segment) {
685     structure = GST_EVENT_STRUCTURE (event);
686     *segment = g_value_get_boxed (gst_structure_id_get_value (structure,
687             GST_QUARK (SEGMENT)));
688   }
689 }
690
691 /**
692  * gst_event_copy_segment:
693  * @event: The event to parse
694  * @segment: a pointer to a #GstSegment
695  *
696  * Parses a segment @event and copies the #GstSegment into the location
697  * given by @segment.
698  */
699 void
700 gst_event_copy_segment (GstEvent * event, GstSegment * segment)
701 {
702   const GstSegment *src;
703
704   g_return_if_fail (GST_IS_EVENT (event));
705   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT);
706
707   if (segment) {
708     gst_event_parse_segment (event, &src);
709     gst_segment_copy_into (src, segment);
710   }
711 }
712
713 /**
714  * gst_event_new_tag:
715  * @taglist: (transfer full): metadata list. The event will take ownership
716  *     of the taglist.
717  *
718  * Generates a metadata tag event from the given @taglist.
719  *
720  * Returns: (transfer full): a new #GstEvent
721  */
722 GstEvent *
723 gst_event_new_tag (GstTagList * taglist)
724 {
725   g_return_val_if_fail (taglist != NULL, NULL);
726
727   return gst_event_new_custom (GST_EVENT_TAG, (GstStructure *) taglist);
728 }
729
730 /**
731  * gst_event_parse_tag:
732  * @event: a tag event
733  * @taglist: (out) (transfer none): pointer to metadata list
734  *
735  * Parses a tag @event and stores the results in the given @taglist location.
736  * No reference to the taglist will be returned, it remains valid only until
737  * the @event is freed. Don't modify or free the taglist, make a copy if you
738  * want to modify it or store it for later use.
739  */
740 void
741 gst_event_parse_tag (GstEvent * event, GstTagList ** taglist)
742 {
743   g_return_if_fail (GST_IS_EVENT (event));
744   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_TAG);
745
746   if (taglist)
747     *taglist = (GstTagList *) GST_EVENT_STRUCTURE (event);
748 }
749
750 /* buffersize event */
751 /**
752  * gst_event_new_buffer_size:
753  * @format: buffer format
754  * @minsize: minimum buffer size
755  * @maxsize: maximum buffer size
756  * @async: thread behavior
757  *
758  * Create a new buffersize event. The event is sent downstream and notifies
759  * elements that they should provide a buffer of the specified dimensions.
760  *
761  * When the @async flag is set, a thread boundary is preferred.
762  *
763  * Returns: (transfer full): a new #GstEvent
764  */
765 GstEvent *
766 gst_event_new_buffer_size (GstFormat format, gint64 minsize,
767     gint64 maxsize, gboolean async)
768 {
769   GstEvent *event;
770   GstStructure *structure;
771
772   GST_CAT_INFO (GST_CAT_EVENT,
773       "creating buffersize format %s, minsize %" G_GINT64_FORMAT
774       ", maxsize %" G_GINT64_FORMAT ", async %d", gst_format_get_name (format),
775       minsize, maxsize, async);
776
777   structure = gst_structure_new_id (GST_QUARK (EVENT_BUFFER_SIZE),
778       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
779       GST_QUARK (MINSIZE), G_TYPE_INT64, minsize,
780       GST_QUARK (MAXSIZE), G_TYPE_INT64, maxsize,
781       GST_QUARK (ASYNC), G_TYPE_BOOLEAN, async, NULL);
782   event = gst_event_new_custom (GST_EVENT_BUFFERSIZE, structure);
783
784   return event;
785 }
786
787 /**
788  * gst_event_parse_buffer_size:
789  * @event: The event to query
790  * @format: (out): A pointer to store the format in
791  * @minsize: (out): A pointer to store the minsize in
792  * @maxsize: (out): A pointer to store the maxsize in
793  * @async: (out): A pointer to store the async-flag in
794  *
795  * Get the format, minsize, maxsize and async-flag in the buffersize event.
796  */
797 void
798 gst_event_parse_buffer_size (GstEvent * event, GstFormat * format,
799     gint64 * minsize, gint64 * maxsize, gboolean * async)
800 {
801   const GstStructure *structure;
802
803   g_return_if_fail (GST_IS_EVENT (event));
804   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_BUFFERSIZE);
805
806   structure = GST_EVENT_STRUCTURE (event);
807   if (format)
808     *format = (GstFormat)
809         g_value_get_enum (gst_structure_id_get_value (structure,
810             GST_QUARK (FORMAT)));
811   if (minsize)
812     *minsize =
813         g_value_get_int64 (gst_structure_id_get_value (structure,
814             GST_QUARK (MINSIZE)));
815   if (maxsize)
816     *maxsize =
817         g_value_get_int64 (gst_structure_id_get_value (structure,
818             GST_QUARK (MAXSIZE)));
819   if (async)
820     *async =
821         g_value_get_boolean (gst_structure_id_get_value (structure,
822             GST_QUARK (ASYNC)));
823 }
824
825 /**
826  * gst_event_new_qos:
827  * @type: the QoS type
828  * @proportion: the proportion of the qos message
829  * @diff: The time difference of the last Clock sync
830  * @timestamp: The timestamp of the buffer
831  *
832  * Allocate a new qos event with the given values.
833  * The QOS event is generated in an element that wants an upstream
834  * element to either reduce or increase its rate because of
835  * high/low CPU load or other resource usage such as network performance or
836  * throttling. Typically sinks generate these events for each buffer
837  * they receive.
838  *
839  * @type indicates the reason for the QoS event. #GST_QOS_TYPE_OVERFLOW is
840  * used when a buffer arrived in time or when the sink cannot keep up with
841  * the upstream datarate. #GST_QOS_TYPE_UNDERFLOW is when the sink is not
842  * receiving buffers fast enough and thus has to drop late buffers. 
843  * #GST_QOS_TYPE_THROTTLE is used when the datarate is artificially limited
844  * by the application, for example to reduce power consumption.
845  *
846  * @proportion indicates the real-time performance of the streaming in the
847  * element that generated the QoS event (usually the sink). The value is
848  * generally computed based on more long term statistics about the streams
849  * timestamps compared to the clock.
850  * A value < 1.0 indicates that the upstream element is producing data faster
851  * than real-time. A value > 1.0 indicates that the upstream element is not
852  * producing data fast enough. 1.0 is the ideal @proportion value. The
853  * proportion value can safely be used to lower or increase the quality of
854  * the element.
855  *
856  * @diff is the difference against the clock in running time of the last
857  * buffer that caused the element to generate the QOS event. A negative value
858  * means that the buffer with @timestamp arrived in time. A positive value
859  * indicates how late the buffer with @timestamp was. When throttling is
860  * enabled, @diff will be set to the requested throttling interval.
861  *
862  * @timestamp is the timestamp of the last buffer that cause the element
863  * to generate the QOS event. It is expressed in running time and thus an ever
864  * increasing value.
865  *
866  * The upstream element can use the @diff and @timestamp values to decide
867  * whether to process more buffers. For possitive @diff, all buffers with
868  * timestamp <= @timestamp + @diff will certainly arrive late in the sink
869  * as well. A (negative) @diff value so that @timestamp + @diff would yield a
870  * result smaller than 0 is not allowed.
871  *
872  * The application can use general event probes to intercept the QoS
873  * event and implement custom application specific QoS handling.
874  *
875  * Returns: (transfer full): a new QOS event.
876  */
877 GstEvent *
878 gst_event_new_qos (GstQOSType type, gdouble proportion,
879     GstClockTimeDiff diff, GstClockTime timestamp)
880 {
881   GstEvent *event;
882   GstStructure *structure;
883
884   /* diff must be positive or timestamp + diff must be positive */
885   g_return_val_if_fail (diff >= 0 || -diff <= timestamp, NULL);
886
887   GST_CAT_INFO (GST_CAT_EVENT,
888       "creating qos type %d, proportion %lf, diff %" G_GINT64_FORMAT
889       ", timestamp %" GST_TIME_FORMAT, type, proportion,
890       diff, GST_TIME_ARGS (timestamp));
891
892   structure = gst_structure_new_id (GST_QUARK (EVENT_QOS),
893       GST_QUARK (TYPE), GST_TYPE_QOS_TYPE, type,
894       GST_QUARK (PROPORTION), G_TYPE_DOUBLE, proportion,
895       GST_QUARK (DIFF), G_TYPE_INT64, diff,
896       GST_QUARK (TIMESTAMP), G_TYPE_UINT64, timestamp, NULL);
897   event = gst_event_new_custom (GST_EVENT_QOS, structure);
898
899   return event;
900 }
901
902 /**
903  * gst_event_parse_qos:
904  * @event: The event to query
905  * @type: (out): A pointer to store the QoS type in
906  * @proportion: (out): A pointer to store the proportion in
907  * @diff: (out): A pointer to store the diff in
908  * @timestamp: (out): A pointer to store the timestamp in
909  *
910  * Get the type, proportion, diff and timestamp in the qos event. See
911  * gst_event_new_qos() for more information about the different QoS values.
912  */
913 void
914 gst_event_parse_qos (GstEvent * event, GstQOSType * type,
915     gdouble * proportion, GstClockTimeDiff * diff, GstClockTime * timestamp)
916 {
917   const GstStructure *structure;
918
919   g_return_if_fail (GST_IS_EVENT (event));
920   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_QOS);
921
922   structure = GST_EVENT_STRUCTURE (event);
923   if (type)
924     *type = (GstQOSType)
925         g_value_get_enum (gst_structure_id_get_value (structure,
926             GST_QUARK (TYPE)));
927   if (proportion)
928     *proportion =
929         g_value_get_double (gst_structure_id_get_value (structure,
930             GST_QUARK (PROPORTION)));
931   if (diff)
932     *diff =
933         g_value_get_int64 (gst_structure_id_get_value (structure,
934             GST_QUARK (DIFF)));
935   if (timestamp)
936     *timestamp =
937         g_value_get_uint64 (gst_structure_id_get_value (structure,
938             GST_QUARK (TIMESTAMP)));
939 }
940
941 /**
942  * gst_event_new_seek:
943  * @rate: The new playback rate
944  * @format: The format of the seek values
945  * @flags: The optional seek flags
946  * @start_type: The type and flags for the new start position
947  * @start: The value of the new start position
948  * @stop_type: The type and flags for the new stop position
949  * @stop: The value of the new stop position
950  *
951  * Allocate a new seek event with the given parameters.
952  *
953  * The seek event configures playback of the pipeline between @start to @stop
954  * at the speed given in @rate, also called a playback segment.
955  * The @start and @stop values are expressed in @format.
956  *
957  * A @rate of 1.0 means normal playback rate, 2.0 means double speed.
958  * Negatives values means backwards playback. A value of 0.0 for the
959  * rate is not allowed and should be accomplished instead by PAUSING the
960  * pipeline.
961  *
962  * A pipeline has a default playback segment configured with a start
963  * position of 0, a stop position of -1 and a rate of 1.0. The currently
964  * configured playback segment can be queried with #GST_QUERY_SEGMENT. 
965  *
966  * @start_type and @stop_type specify how to adjust the currently configured 
967  * start and stop fields in playback segment. Adjustments can be made relative
968  * or absolute to the last configured values. A type of #GST_SEEK_TYPE_NONE
969  * means that the position should not be updated.
970  *
971  * When the rate is positive and @start has been updated, playback will start
972  * from the newly configured start position. 
973  *
974  * For negative rates, playback will start from the newly configured stop
975  * position (if any). If the stop position if updated, it must be different from
976  * -1 for negative rates.
977  *
978  * It is not possible to seek relative to the current playback position, to do
979  * this, PAUSE the pipeline, query the current playback position with
980  * #GST_QUERY_POSITION and update the playback segment current position with a
981  * #GST_SEEK_TYPE_SET to the desired position. 
982  *
983  * Returns: (transfer full): a new seek event.
984  */
985 GstEvent *
986 gst_event_new_seek (gdouble rate, GstFormat format, GstSeekFlags flags,
987     GstSeekType start_type, gint64 start, GstSeekType stop_type, gint64 stop)
988 {
989   GstEvent *event;
990   GstStructure *structure;
991
992   g_return_val_if_fail (rate != 0.0, NULL);
993
994   if (format == GST_FORMAT_TIME) {
995     GST_CAT_INFO (GST_CAT_EVENT,
996         "creating seek rate %lf, format TIME, flags %d, "
997         "start_type %d, start %" GST_TIME_FORMAT ", "
998         "stop_type %d, stop %" GST_TIME_FORMAT,
999         rate, flags, start_type, GST_TIME_ARGS (start),
1000         stop_type, GST_TIME_ARGS (stop));
1001   } else {
1002     GST_CAT_INFO (GST_CAT_EVENT,
1003         "creating seek rate %lf, format %s, flags %d, "
1004         "start_type %d, start %" G_GINT64_FORMAT ", "
1005         "stop_type %d, stop %" G_GINT64_FORMAT,
1006         rate, gst_format_get_name (format), flags, start_type, start, stop_type,
1007         stop);
1008   }
1009
1010   structure = gst_structure_new_id (GST_QUARK (EVENT_SEEK),
1011       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1012       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1013       GST_QUARK (FLAGS), GST_TYPE_SEEK_FLAGS, flags,
1014       GST_QUARK (CUR_TYPE), GST_TYPE_SEEK_TYPE, start_type,
1015       GST_QUARK (CUR), G_TYPE_INT64, start,
1016       GST_QUARK (STOP_TYPE), GST_TYPE_SEEK_TYPE, stop_type,
1017       GST_QUARK (STOP), G_TYPE_INT64, stop, NULL);
1018   event = gst_event_new_custom (GST_EVENT_SEEK, structure);
1019
1020   return event;
1021 }
1022
1023 /**
1024  * gst_event_parse_seek:
1025  * @event: a seek event
1026  * @rate: (out): result location for the rate
1027  * @format: (out): result location for the stream format
1028  * @flags:  (out): result location for the #GstSeekFlags
1029  * @start_type: (out): result location for the #GstSeekType of the start position
1030  * @start: (out): result location for the start postion expressed in @format
1031  * @stop_type:  (out): result location for the #GstSeekType of the stop position
1032  * @stop: (out): result location for the stop postion expressed in @format
1033  *
1034  * Parses a seek @event and stores the results in the given result locations.
1035  */
1036 void
1037 gst_event_parse_seek (GstEvent * event, gdouble * rate,
1038     GstFormat * format, GstSeekFlags * flags, GstSeekType * start_type,
1039     gint64 * start, GstSeekType * stop_type, gint64 * stop)
1040 {
1041   const GstStructure *structure;
1042
1043   g_return_if_fail (GST_IS_EVENT (event));
1044   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SEEK);
1045
1046   structure = GST_EVENT_STRUCTURE (event);
1047   if (rate)
1048     *rate =
1049         g_value_get_double (gst_structure_id_get_value (structure,
1050             GST_QUARK (RATE)));
1051   if (format)
1052     *format = (GstFormat)
1053         g_value_get_enum (gst_structure_id_get_value (structure,
1054             GST_QUARK (FORMAT)));
1055   if (flags)
1056     *flags = (GstSeekFlags)
1057         g_value_get_flags (gst_structure_id_get_value (structure,
1058             GST_QUARK (FLAGS)));
1059   if (start_type)
1060     *start_type = (GstSeekType)
1061         g_value_get_enum (gst_structure_id_get_value (structure,
1062             GST_QUARK (CUR_TYPE)));
1063   if (start)
1064     *start =
1065         g_value_get_int64 (gst_structure_id_get_value (structure,
1066             GST_QUARK (CUR)));
1067   if (stop_type)
1068     *stop_type = (GstSeekType)
1069         g_value_get_enum (gst_structure_id_get_value (structure,
1070             GST_QUARK (STOP_TYPE)));
1071   if (stop)
1072     *stop =
1073         g_value_get_int64 (gst_structure_id_get_value (structure,
1074             GST_QUARK (STOP)));
1075 }
1076
1077 /**
1078  * gst_event_new_navigation:
1079  * @structure: (transfer full): description of the event. The event will take
1080  *     ownership of the structure.
1081  *
1082  * Create a new navigation event from the given description.
1083  *
1084  * Returns: (transfer full): a new #GstEvent
1085  */
1086 GstEvent *
1087 gst_event_new_navigation (GstStructure * structure)
1088 {
1089   g_return_val_if_fail (structure != NULL, NULL);
1090
1091   return gst_event_new_custom (GST_EVENT_NAVIGATION, structure);
1092 }
1093
1094 /**
1095  * gst_event_new_latency:
1096  * @latency: the new latency value
1097  *
1098  * Create a new latency event. The event is sent upstream from the sinks and
1099  * notifies elements that they should add an additional @latency to the
1100  * running time before synchronising against the clock.
1101  *
1102  * The latency is mostly used in live sinks and is always expressed in
1103  * the time format.
1104  *
1105  * Returns: (transfer full): a new #GstEvent
1106  *
1107  * Since: 0.10.12
1108  */
1109 GstEvent *
1110 gst_event_new_latency (GstClockTime latency)
1111 {
1112   GstEvent *event;
1113   GstStructure *structure;
1114
1115   GST_CAT_INFO (GST_CAT_EVENT,
1116       "creating latency event %" GST_TIME_FORMAT, GST_TIME_ARGS (latency));
1117
1118   structure = gst_structure_new_id (GST_QUARK (EVENT_LATENCY),
1119       GST_QUARK (LATENCY), G_TYPE_UINT64, latency, NULL);
1120   event = gst_event_new_custom (GST_EVENT_LATENCY, structure);
1121
1122   return event;
1123 }
1124
1125 /**
1126  * gst_event_parse_latency:
1127  * @event: The event to query
1128  * @latency: (out): A pointer to store the latency in.
1129  *
1130  * Get the latency in the latency event.
1131  *
1132  * Since: 0.10.12
1133  */
1134 void
1135 gst_event_parse_latency (GstEvent * event, GstClockTime * latency)
1136 {
1137   g_return_if_fail (GST_IS_EVENT (event));
1138   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_LATENCY);
1139
1140   if (latency)
1141     *latency =
1142         g_value_get_uint64 (gst_structure_id_get_value (GST_EVENT_STRUCTURE
1143             (event), GST_QUARK (LATENCY)));
1144 }
1145
1146 /**
1147  * gst_event_new_step:
1148  * @format: the format of @amount
1149  * @amount: the amount of data to step
1150  * @rate: the step rate
1151  * @flush: flushing steps
1152  * @intermediate: intermediate steps
1153  *
1154  * Create a new step event. The purpose of the step event is to instruct a sink
1155  * to skip @amount (expressed in @format) of media. It can be used to implement
1156  * stepping through the video frame by frame or for doing fast trick modes.
1157  *
1158  * A rate of <= 0.0 is not allowed. Pause the pipeline, for the effect of rate
1159  * = 0.0 or first reverse the direction of playback using a seek event to get
1160  * the same effect as rate < 0.0.
1161  *
1162  * The @flush flag will clear any pending data in the pipeline before starting
1163  * the step operation.
1164  *
1165  * The @intermediate flag instructs the pipeline that this step operation is
1166  * part of a larger step operation.
1167  *
1168  * Returns: (transfer full): a new #GstEvent
1169  *
1170  * Since: 0.10.24
1171  */
1172 GstEvent *
1173 gst_event_new_step (GstFormat format, guint64 amount, gdouble rate,
1174     gboolean flush, gboolean intermediate)
1175 {
1176   GstEvent *event;
1177   GstStructure *structure;
1178
1179   g_return_val_if_fail (rate > 0.0, NULL);
1180
1181   GST_CAT_INFO (GST_CAT_EVENT, "creating step event");
1182
1183   structure = gst_structure_new_id (GST_QUARK (EVENT_STEP),
1184       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1185       GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
1186       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
1187       GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
1188       GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate, NULL);
1189   event = gst_event_new_custom (GST_EVENT_STEP, structure);
1190
1191   return event;
1192 }
1193
1194 /**
1195  * gst_event_parse_step:
1196  * @event: The event to query
1197  * @format: (out) (allow-none): a pointer to store the format in
1198  * @amount: (out) (allow-none): a pointer to store the amount in
1199  * @rate: (out) (allow-none): a pointer to store the rate in
1200  * @flush: (out) (allow-none): a pointer to store the flush boolean in
1201  * @intermediate: (out) (allow-none): a pointer to store the intermediate
1202  *     boolean in
1203  *
1204  * Parse the step event.
1205  *
1206  * Since: 0.10.24
1207  */
1208 void
1209 gst_event_parse_step (GstEvent * event, GstFormat * format, guint64 * amount,
1210     gdouble * rate, gboolean * flush, gboolean * intermediate)
1211 {
1212   const GstStructure *structure;
1213
1214   g_return_if_fail (GST_IS_EVENT (event));
1215   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_STEP);
1216
1217   structure = GST_EVENT_STRUCTURE (event);
1218   if (format)
1219     *format =
1220         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
1221             GST_QUARK (FORMAT)));
1222   if (amount)
1223     *amount = g_value_get_uint64 (gst_structure_id_get_value (structure,
1224             GST_QUARK (AMOUNT)));
1225   if (rate)
1226     *rate = g_value_get_double (gst_structure_id_get_value (structure,
1227             GST_QUARK (RATE)));
1228   if (flush)
1229     *flush = g_value_get_boolean (gst_structure_id_get_value (structure,
1230             GST_QUARK (FLUSH)));
1231   if (intermediate)
1232     *intermediate = g_value_get_boolean (gst_structure_id_get_value (structure,
1233             GST_QUARK (INTERMEDIATE)));
1234 }
1235
1236 /**
1237  * gst_event_new_reconfigure:
1238
1239  * Create a new reconfigure event. The purpose of the reconfingure event is
1240  * to travel upstream and make elements renegotiate their caps or reconfigure
1241  * their buffer pools. This is useful when changing properties on elements
1242  * or changing the topology of the pipeline.
1243  *
1244  * Returns: (transfer full): a new #GstEvent
1245  *
1246  * Since: 0.11.0
1247  */
1248 GstEvent *
1249 gst_event_new_reconfigure (void)
1250 {
1251   GstEvent *event;
1252
1253   GST_CAT_INFO (GST_CAT_EVENT, "creating reconfigure event");
1254
1255   event = gst_event_new_custom (GST_EVENT_RECONFIGURE, NULL);
1256
1257   return event;
1258 }
1259
1260 /**
1261  * gst_event_new_sink_message:
1262  * @msg: (transfer none): the #GstMessage to be posted
1263  *
1264  * Create a new sink-message event. The purpose of the sink-message event is
1265  * to instruct a sink to post the message contained in the event synchronized
1266  * with the stream.
1267  *
1268  * Returns: (transfer full): a new #GstEvent
1269  *
1270  * Since: 0.10.26
1271  */
1272 /* FIXME 0.11: take ownership of msg for consistency? */
1273 GstEvent *
1274 gst_event_new_sink_message (GstMessage * msg)
1275 {
1276   GstEvent *event;
1277   GstStructure *structure;
1278
1279   g_return_val_if_fail (msg != NULL, NULL);
1280
1281   GST_CAT_INFO (GST_CAT_EVENT, "creating sink-message event");
1282
1283   structure = gst_structure_new_id (GST_QUARK (EVENT_SINK_MESSAGE),
1284       GST_QUARK (MESSAGE), GST_TYPE_MESSAGE, msg, NULL);
1285   event = gst_event_new_custom (GST_EVENT_SINK_MESSAGE, structure);
1286
1287   return event;
1288 }
1289
1290 /**
1291  * gst_event_parse_sink_message:
1292  * @event: The event to query
1293  * @msg: (out) (transfer full): a pointer to store the #GstMessage in.
1294  *
1295  * Parse the sink-message event. Unref @msg after usage.
1296  *
1297  * Since: 0.10.26
1298  */
1299 void
1300 gst_event_parse_sink_message (GstEvent * event, GstMessage ** msg)
1301 {
1302   const GstStructure *structure;
1303
1304   g_return_if_fail (GST_IS_EVENT (event));
1305   g_return_if_fail (GST_EVENT_TYPE (event) == GST_EVENT_SINK_MESSAGE);
1306
1307   structure = GST_EVENT_STRUCTURE (event);
1308   if (msg)
1309     *msg =
1310         GST_MESSAGE (g_value_dup_boxed (gst_structure_id_get_value
1311             (structure, GST_QUARK (MESSAGE))));
1312 }