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