doc fixups
[platform/upstream/gstreamer.git] / gst / gstevent.h
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.h: Header for 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 #ifndef __GST_EVENT_H__
26 #define __GST_EVENT_H__
27
28 typedef struct _GstEvent GstEvent;
29
30 /**
31  * GstEventTypeFlags:
32  * @GST_EVENT_TYPE_UPSTREAM:     Set if the event can travel upstream.
33  * @GST_EVENT_TYPE_DOWNSTREAM:   Set if the event can travel downstream.
34  * @GST_EVENT_TYPE_SERIALIZED:   Set if the event should be serialized with data
35  *                               flow.
36  * @GST_EVENT_TYPE_STICKY:       Set if the event is sticky on the pads.
37  * @GST_EVENT_TYPE_STICKY_MULTI: Multiple sticky events can be on a pad, each
38  *                               identified by the event name.
39  *
40  * #GstEventTypeFlags indicate the aspects of the different #GstEventType
41  * values. You can get the type flags of a #GstEventType with the
42  * gst_event_type_get_flags() function.
43  */
44 typedef enum {
45   GST_EVENT_TYPE_UPSTREAM       = 1 << 0,
46   GST_EVENT_TYPE_DOWNSTREAM     = 1 << 1,
47   GST_EVENT_TYPE_SERIALIZED     = 1 << 2,
48   GST_EVENT_TYPE_STICKY         = 1 << 3,
49   GST_EVENT_TYPE_STICKY_MULTI   = 1 << 4
50 } GstEventTypeFlags;
51
52 /**
53  * GST_EVENT_TYPE_BOTH:
54  *
55  * The same thing as #GST_EVENT_TYPE_UPSTREAM | #GST_EVENT_TYPE_DOWNSTREAM.
56  */
57 #define GST_EVENT_TYPE_BOTH \
58     (GST_EVENT_TYPE_UPSTREAM | GST_EVENT_TYPE_DOWNSTREAM)
59
60 #define GST_EVENT_NUM_SHIFT     (8)
61
62 /**
63  * GST_EVENT_MAKE_TYPE:
64  * @num: the event number to create
65  * @idx: the index in the sticky array
66  * @flags: the event flags
67  *
68  * when making custom event types, use this macro with the num and
69  * the given flags
70  */
71 #define GST_EVENT_MAKE_TYPE(num,flags) \
72     (((num) << GST_EVENT_NUM_SHIFT) | (flags))
73
74 #define FLAG(name) GST_EVENT_TYPE_##name
75
76 /**
77  * GstEventType:
78  * @GST_EVENT_UNKNOWN: unknown event.
79  * @GST_EVENT_FLUSH_START: Start a flush operation. This event clears all data
80  *                 from the pipeline and unblock all streaming threads.
81  * @GST_EVENT_FLUSH_STOP: Stop a flush operation. This event resets the
82  *                 running-time of the pipeline.
83  * @GST_EVENT_STREAM_START: Event to mark the start of a new stream. Sent before any
84  *                 other serialized event and only sent at the start of a new stream,
85  *                 not after flushing seeks.
86  * @GST_EVENT_CAPS: #GstCaps event. Notify the pad of a new media type.
87  * @GST_EVENT_STREAM_CONFIG: contains configuration information for the stream,
88  *                 for example stream-headers and codec-data.
89  * @GST_EVENT_SEGMENT: A new media segment follows in the dataflow. The
90  *                 segment events contains information for clipping buffers and
91  *                 converting buffer timestamps to running-time and
92  *                 stream-time.
93  * @GST_EVENT_TAG: A new set of metadata tags has been found in the stream.
94  * @GST_EVENT_BUFFERSIZE: Notification of buffering requirements. Currently not
95  *                 used yet.
96  * @GST_EVENT_SINK_MESSAGE: An event that sinks turn into a message. Used to
97  *                          send messages that should be emitted in sync with
98  *                          rendering.
99  *                          Since: 0.10.26
100  * @GST_EVENT_EOS: End-Of-Stream. No more data is to be expected to follow
101  *                 without a SEGMENT event.
102  * @GST_EVENT_SEGMENT_DONE: (unimplemented) Marks the end of a segment playback.
103  * @GST_EVENT_GAP: (unimplemented) Marks a gap in the datastream.
104  * @GST_EVENT_QOS: A quality message. Used to indicate to upstream elements
105  *                 that the downstream elements should adjust their processing
106  *                 rate.
107  * @GST_EVENT_SEEK: A request for a new playback position and rate.
108  * @GST_EVENT_NAVIGATION: Navigation events are usually used for communicating
109  *                        user requests, such as mouse or keyboard movements,
110  *                        to upstream elements.
111  * @GST_EVENT_LATENCY: Notification of new latency adjustment. Sinks will use
112  *                     the latency information to adjust their synchronisation.
113  *                     Since: 0.10.12
114  * @GST_EVENT_STEP: A request for stepping through the media. Sinks will usually
115  *                  execute the step operation. Since: 0.10.24
116  * @GST_EVENT_RECONFIGURE: A request for upstream renegotiating caps and reconfiguring.
117  *                         Since: 0.11.0
118  * @GST_EVENT_CUSTOM_UPSTREAM: Upstream custom event
119  * @GST_EVENT_CUSTOM_DOWNSTREAM: Downstream custom event that travels in the
120  *                        data flow.
121  * @GST_EVENT_CUSTOM_DOWNSTREAM_OOB: Custom out-of-band downstream event.
122  * @GST_EVENT_CUSTOM_DOWNSTREAM_STICKY: Custom sticky downstream event.
123  * @GST_EVENT_CUSTOM_BOTH: Custom upstream or downstream event.
124  *                         In-band when travelling downstream.
125  * @GST_EVENT_CUSTOM_BOTH_OOB: Custom upstream or downstream out-of-band event.
126  *
127  * #GstEventType lists the standard event types that can be sent in a pipeline.
128  *
129  * The custom event types can be used for private messages between elements
130  * that can't be expressed using normal
131  * GStreamer buffer passing semantics. Custom events carry an arbitrary
132  * #GstStructure.
133  * Specific custom events are distinguished by the name of the structure.
134  */
135 /* NOTE: keep in sync with quark registration in gstevent.c */
136 typedef enum {
137   GST_EVENT_UNKNOWN               = GST_EVENT_MAKE_TYPE (0, 0),
138
139   /* bidirectional events */
140   GST_EVENT_FLUSH_START           = GST_EVENT_MAKE_TYPE (10, FLAG(BOTH)),
141   GST_EVENT_FLUSH_STOP            = GST_EVENT_MAKE_TYPE (20, FLAG(BOTH) | FLAG(SERIALIZED)),
142
143   /* downstream serialized events */
144   GST_EVENT_STREAM_START          = GST_EVENT_MAKE_TYPE (40, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
145   GST_EVENT_CAPS                  = GST_EVENT_MAKE_TYPE (50, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
146   GST_EVENT_STREAM_CONFIG         = GST_EVENT_MAKE_TYPE (60, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
147   GST_EVENT_SEGMENT               = GST_EVENT_MAKE_TYPE (70, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
148   GST_EVENT_TAG                   = GST_EVENT_MAKE_TYPE (80, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY) | FLAG(STICKY_MULTI)),
149   GST_EVENT_BUFFERSIZE            = GST_EVENT_MAKE_TYPE (90, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
150   GST_EVENT_SINK_MESSAGE          = GST_EVENT_MAKE_TYPE (100, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY) | FLAG(STICKY_MULTI)),
151   GST_EVENT_EOS                   = GST_EVENT_MAKE_TYPE (110, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
152
153   /* non-sticky downstream serialized */
154   GST_EVENT_SEGMENT_DONE          = GST_EVENT_MAKE_TYPE (150, FLAG(DOWNSTREAM) | FLAG(SERIALIZED)),
155   GST_EVENT_GAP                   = GST_EVENT_MAKE_TYPE (160, FLAG(DOWNSTREAM) | FLAG(SERIALIZED)),
156
157   /* upstream events */
158   GST_EVENT_QOS                   = GST_EVENT_MAKE_TYPE (190, FLAG(UPSTREAM)),
159   GST_EVENT_SEEK                  = GST_EVENT_MAKE_TYPE (200, FLAG(UPSTREAM)),
160   GST_EVENT_NAVIGATION            = GST_EVENT_MAKE_TYPE (210, FLAG(UPSTREAM)),
161   GST_EVENT_LATENCY               = GST_EVENT_MAKE_TYPE (220, FLAG(UPSTREAM)),
162   GST_EVENT_STEP                  = GST_EVENT_MAKE_TYPE (230, FLAG(UPSTREAM)),
163   GST_EVENT_RECONFIGURE           = GST_EVENT_MAKE_TYPE (240, FLAG(UPSTREAM)),
164
165   /* custom events start here */
166   GST_EVENT_CUSTOM_UPSTREAM          = GST_EVENT_MAKE_TYPE (270, FLAG(UPSTREAM)),
167   GST_EVENT_CUSTOM_DOWNSTREAM        = GST_EVENT_MAKE_TYPE (280, FLAG(DOWNSTREAM) | FLAG(SERIALIZED)),
168   GST_EVENT_CUSTOM_DOWNSTREAM_OOB    = GST_EVENT_MAKE_TYPE (290, FLAG(DOWNSTREAM)),
169   GST_EVENT_CUSTOM_DOWNSTREAM_STICKY = GST_EVENT_MAKE_TYPE (300, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY) | FLAG(STICKY_MULTI)),
170   GST_EVENT_CUSTOM_BOTH              = GST_EVENT_MAKE_TYPE (310, FLAG(BOTH) | FLAG(SERIALIZED)),
171   GST_EVENT_CUSTOM_BOTH_OOB          = GST_EVENT_MAKE_TYPE (320, FLAG(BOTH))
172 } GstEventType;
173 #undef FLAG
174
175 #include <gst/gstminiobject.h>
176 #include <gst/gstformat.h>
177 #include <gst/gstobject.h>
178 #include <gst/gstclock.h>
179 #include <gst/gststructure.h>
180 #include <gst/gsttaglist.h>
181 #include <gst/gstsegment.h>
182 #include <gst/gstsegment.h>
183 #include <gst/gstmessage.h>
184
185 G_BEGIN_DECLS
186
187 GST_EXPORT GType _gst_event_type;
188
189 #define GST_TYPE_EVENT                  (_gst_event_type)
190 #define GST_IS_EVENT(obj)               (GST_IS_MINI_OBJECT_TYPE (obj, GST_TYPE_EVENT))
191 #define GST_EVENT_CAST(obj)             ((GstEvent *)(obj))
192 #define GST_EVENT(obj)                  (GST_EVENT_CAST(obj))
193
194 /**
195  * GST_EVENT_TYPE:
196  * @event: the event to query
197  *
198  * Get the #GstEventType of the event.
199  */
200 #define GST_EVENT_TYPE(event)           (GST_EVENT_CAST(event)->type)
201
202 /**
203  * GST_EVENT_TYPE_NAME:
204  * @event: the event to query
205  *
206  * Get a constant string representation of the #GstEventType of the event.
207  */
208 #define GST_EVENT_TYPE_NAME(event)      (gst_event_type_get_name(GST_EVENT_TYPE(event)))
209
210 /**
211  * GST_EVENT_TIMESTAMP:
212  * @event: the event to query
213  *
214  * Get the #GstClockTime timestamp of the event. This is the time when the event
215  * was created.
216  */
217 #define GST_EVENT_TIMESTAMP(event)      (GST_EVENT_CAST(event)->timestamp)
218
219 /**
220  * GST_EVENT_SEQNUM:
221  * @event: the event to query
222  *
223  * The sequence number of @event.
224  */
225 #define GST_EVENT_SEQNUM(event)         (GST_EVENT_CAST(event)->seqnum)
226
227 /**
228  * GST_EVENT_IS_UPSTREAM:
229  * @ev: the event to query
230  *
231  * Check if an event can travel upstream.
232  */
233 #define GST_EVENT_IS_UPSTREAM(ev)       !!(GST_EVENT_TYPE (ev) & GST_EVENT_TYPE_UPSTREAM)
234 /**
235  * GST_EVENT_IS_DOWNSTREAM:
236  * @ev: the event to query
237  *
238  * Check if an event can travel downstream.
239  */
240 #define GST_EVENT_IS_DOWNSTREAM(ev)     !!(GST_EVENT_TYPE (ev) & GST_EVENT_TYPE_DOWNSTREAM)
241 /**
242  * GST_EVENT_IS_SERIALIZED:
243  * @ev: the event to query
244  *
245  * Check if an event is serialized with the data stream.
246  */
247 #define GST_EVENT_IS_SERIALIZED(ev)     !!(GST_EVENT_TYPE (ev) & GST_EVENT_TYPE_SERIALIZED)
248 /**
249  * GST_EVENT_IS_STICKY:
250  * @ev: the event to query
251  *
252  * Check if an event is sticky on the pads.
253  */
254 #define GST_EVENT_IS_STICKY(ev)     !!(GST_EVENT_TYPE (ev) & GST_EVENT_TYPE_STICKY)
255
256 /**
257  * gst_event_is_writable:
258  * @ev: a #GstEvent
259  *
260  * Tests if you can safely write data into a event's structure or validly
261  * modify the seqnum and timestamp field.
262  */
263 #define         gst_event_is_writable(ev)     gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (ev))
264 /**
265  * gst_event_make_writable:
266  * @ev: (transfer full): a #GstEvent
267  *
268  * Makes a writable event from the given event. If the source event is
269  * already writable, this will simply return the same event. A copy will
270  * otherwise be made using gst_event_copy().
271  *
272  * Returns: (transfer full): a writable event which may or may not be the
273  *     same as @ev
274  */
275 #define         gst_event_make_writable(ev)   GST_EVENT_CAST (gst_mini_object_make_writable (GST_MINI_OBJECT_CAST (ev)))
276 /**
277  * gst_event_replace:
278  * @old_event: (inout) (transfer full): pointer to a pointer to a #GstEvent
279  *     to be replaced.
280  * @new_event: (allow-none) (transfer none): pointer to a #GstEvent that will
281  *     replace the event pointed to by @old_event.
282  *
283  * Modifies a pointer to a #GstEvent to point to a different #GstEvent. The
284  * modification is done atomically (so this is useful for ensuring thread safety
285  * in some cases), and the reference counts are updated appropriately (the old
286  * event is unreffed, the new one is reffed).
287  *
288  * Either @new_event or the #GstEvent pointed to by @old_event may be NULL.
289  *
290  * Returns: TRUE if @new_event was different from @old_event
291  */
292 #ifdef _FOOL_GTK_DOC_
293 G_INLINE_FUNC gboolean gst_event_replace (GstEvent **old_event, GstEvent *new_event);
294 #endif
295
296 static inline gboolean
297 gst_event_replace (GstEvent **old_event, GstEvent *new_event)
298 {
299   return gst_mini_object_replace ((GstMiniObject **) old_event, (GstMiniObject *) new_event);
300 }
301
302 /**
303  * gst_event_steal:
304  * @old_event: (inout) (transfer full): pointer to a pointer to a #GstEvent
305  *     to be stolen.
306  *
307  * Atomically replace the #GstEvent pointed to by @old_event with NULL and
308  * return the original event.
309  *
310  * Returns: the #GstEvent that was in @old_event
311  */
312 #ifdef _FOOL_GTK_DOC_
313 G_INLINE_FUNC GstEvent * gst_event_steal (GstEvent **old_event);
314 #endif
315
316 static inline GstEvent *
317 gst_event_steal (GstEvent **old_event)
318 {
319   return GST_EVENT_CAST (gst_mini_object_steal ((GstMiniObject **) old_event));
320 }
321
322 /**
323  * gst_event_take:
324  * @old_event: (inout) (transfer full): pointer to a pointer to a #GstEvent
325  *     to be stolen.
326  * @new_event: (allow-none) (transfer full): pointer to a #GstEvent that will
327  *     replace the event pointed to by @old_event.
328  *
329  * Modifies a pointer to a #GstEvent to point to a different #GstEvent. This
330  * function is similar to gst_event_replace() except that it takes ownership of
331  * @new_event.
332  *
333  * Either @new_event or the #GstEvent pointed to by @old_event may be NULL.
334  *
335  * Returns: TRUE if @new_event was different from @old_event
336  */
337 #ifdef _FOOL_GTK_DOC_
338 G_INLINE_FUNC gboolean gst_event_take (GstEvent **old_event, GstEvent *new_event);
339 #endif
340
341 static inline gboolean
342 gst_event_take (GstEvent **old_event, GstEvent *new_event)
343 {
344   return gst_mini_object_take ((GstMiniObject **) old_event, (GstMiniObject *) new_event);
345 }
346
347 /**
348  * GstQOSType:
349  * @GST_QOS_TYPE_OVERFLOW: The QoS event type that is produced when downstream
350  *    elements are producing data too quickly and the element can't keep up
351  *    processing the data. Upstream should reduce their processing rate. This
352  *    type is also used when buffers arrive early or in time.
353  * @GST_QOS_TYPE_UNDERFLOW: The QoS event type that is produced when downstream
354  *    elements are producing data too slowly and need to speed up their processing
355  *    rate.
356  * @GST_QOS_TYPE_THROTTLE: The QoS event type that is produced when the
357  *    application enabled throttling to limit the datarate.
358  *
359  * The different types of QoS events that can be given to the
360  * gst_event_new_qos() method.
361  *
362  * Since: 0.10.33
363  */
364 typedef enum {
365   GST_QOS_TYPE_OVERFLOW        = 0,
366   GST_QOS_TYPE_UNDERFLOW       = 1,
367   GST_QOS_TYPE_THROTTLE        = 2
368 } GstQOSType;
369
370 /**
371  * GstStreamConfigFlags:
372  * @GST_STREAM_CONFIG_FLAG_NONE: no flags set
373  *
374  * GstStreamConfigFlags are flags passed with the stream config event, see
375  * gst_event_new_stream_config().
376  */
377 typedef enum {
378   GST_STREAM_CONFIG_FLAG_NONE = 0
379 } GstStreamConfigFlags;
380
381 /**
382  * GstEvent:
383  * @mini_object: the parent structure
384  * @type: the #GstEventType of the event
385  * @timestamp: the timestamp of the event
386  * @seqnum: the sequence number of the event
387  *
388  * A #GstEvent.
389  */
390 struct _GstEvent {
391   GstMiniObject mini_object;
392
393   /*< public >*/ /* with COW */
394   GstEventType  type;
395   guint64       timestamp;
396   guint32       seqnum;
397 };
398
399 const gchar*    gst_event_type_get_name         (GstEventType type);
400 GQuark          gst_event_type_to_quark         (GstEventType type);
401 GstEventTypeFlags
402                 gst_event_type_get_flags        (GstEventType type);
403
404
405 /* refcounting */
406 /**
407  * gst_event_ref:
408  * @event: The event to refcount
409  *
410  * Increase the refcount of this event.
411  *
412  * Returns: (transfer full): @event (for convenience when doing assignments)
413  */
414 #ifdef _FOOL_GTK_DOC_
415 G_INLINE_FUNC GstEvent * gst_event_ref (GstEvent * event);
416 #endif
417
418 static inline GstEvent *
419 gst_event_ref (GstEvent * event)
420 {
421   return (GstEvent *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (event));
422 }
423
424 /**
425  * gst_event_unref:
426  * @event: (transfer full): the event to refcount
427  *
428  * Decrease the refcount of an event, freeing it if the refcount reaches 0.
429  */
430 #ifdef _FOOL_GTK_DOC_
431 G_INLINE_FUNC void gst_event_unref (GstEvent * event);
432 #endif
433
434 static inline void
435 gst_event_unref (GstEvent * event)
436 {
437   gst_mini_object_unref (GST_MINI_OBJECT_CAST (event));
438 }
439
440 /* copy event */
441 /**
442  * gst_event_copy:
443  * @event: The event to copy
444  *
445  * Copy the event using the event specific copy function.
446  *
447  * Returns: (transfer full): the new event
448  */
449 #ifdef _FOOL_GTK_DOC_
450 G_INLINE_FUNC GstEvent * gst_event_copy (const GstEvent * event);
451 #endif
452
453 static inline GstEvent *
454 gst_event_copy (const GstEvent * event)
455 {
456   return GST_EVENT_CAST (gst_mini_object_copy (GST_MINI_OBJECT_CONST_CAST (event)));
457 }
458
459 GType           gst_event_get_type              (void);
460
461 /* custom event */
462 GstEvent*       gst_event_new_custom            (GstEventType type, GstStructure *structure) G_GNUC_MALLOC;
463
464 const GstStructure *
465                 gst_event_get_structure         (GstEvent *event);
466 GstStructure *  gst_event_writable_structure    (GstEvent *event);
467
468 gboolean        gst_event_has_name              (GstEvent *event, const gchar *name);
469
470 /* identifiers for events and messages */
471 guint32         gst_event_get_seqnum            (GstEvent *event);
472 void            gst_event_set_seqnum            (GstEvent *event, guint32 seqnum);
473
474 /* Stream start event */
475 GstEvent *      gst_event_new_stream_start      (void) G_GNUC_MALLOC;
476
477 /* flush events */
478 GstEvent *      gst_event_new_flush_start       (void) G_GNUC_MALLOC;
479
480 GstEvent *      gst_event_new_flush_stop        (gboolean reset_time) G_GNUC_MALLOC;
481 void            gst_event_parse_flush_stop      (GstEvent *event, gboolean *reset_time);
482
483 /* EOS event */
484 GstEvent *      gst_event_new_eos               (void) G_GNUC_MALLOC;
485
486 /* GAP event */
487 GstEvent *      gst_event_new_gap               (GstClockTime   timestamp,
488                                                  GstClockTime   duration) G_GNUC_MALLOC;
489
490 void            gst_event_parse_gap             (GstEvent     * event,
491                                                  GstClockTime * timestamp,
492                                                  GstClockTime * duration);
493
494 /* Caps events */
495 GstEvent *      gst_event_new_caps              (GstCaps *caps) G_GNUC_MALLOC;
496 void            gst_event_parse_caps            (GstEvent *event, GstCaps **caps);
497
498 /* Stream config */
499 GstEvent *      gst_event_new_stream_config                (GstStreamConfigFlags flags) G_GNUC_MALLOC;
500
501 void            gst_event_parse_stream_config              (GstEvent * event, GstStreamConfigFlags * flags);
502
503
504 void            gst_event_set_stream_config_setup_data     (GstEvent * event, GstBuffer  * buf);
505
506 gboolean        gst_event_parse_stream_config_setup_data   (GstEvent * event, GstBuffer ** buf);
507
508
509 void            gst_event_add_stream_config_header         (GstEvent * event, GstBuffer  * buf);
510
511 guint           gst_event_get_n_stream_config_headers      (GstEvent * event);
512
513 gboolean        gst_event_parse_nth_stream_config_header   (GstEvent * event, guint index, GstBuffer ** buf);
514
515 /* segment event */
516 GstEvent*       gst_event_new_segment           (const GstSegment *segment) G_GNUC_MALLOC;
517 void            gst_event_parse_segment         (GstEvent *event, const GstSegment **segment);
518 void            gst_event_copy_segment          (GstEvent *event, GstSegment *segment);
519
520 /* tag event */
521 GstEvent*       gst_event_new_tag               (GstTagList *taglist) G_GNUC_MALLOC;
522 void            gst_event_parse_tag             (GstEvent *event, GstTagList **taglist);
523
524 /* buffer */
525 GstEvent *      gst_event_new_buffer_size       (GstFormat format, gint64 minsize, gint64 maxsize,
526                                                  gboolean async) G_GNUC_MALLOC;
527 void            gst_event_parse_buffer_size     (GstEvent *event, GstFormat *format, gint64 *minsize,
528                                                  gint64 *maxsize, gboolean *async);
529
530 /* sink message */
531 GstEvent*       gst_event_new_sink_message      (GstMessage *msg) G_GNUC_MALLOC;
532 void            gst_event_parse_sink_message    (GstEvent *event, GstMessage **msg);
533
534 /* QOS events */
535 GstEvent*       gst_event_new_qos               (GstQOSType type, gdouble proportion,
536                                                  GstClockTimeDiff diff, GstClockTime timestamp) G_GNUC_MALLOC;
537 void            gst_event_parse_qos             (GstEvent *event, GstQOSType *type,
538                                                  gdouble *proportion, GstClockTimeDiff *diff,
539                                                  GstClockTime *timestamp);
540 /* seek event */
541 GstEvent*       gst_event_new_seek              (gdouble rate, GstFormat format, GstSeekFlags flags,
542                                                  GstSeekType start_type, gint64 start,
543                                                  GstSeekType stop_type, gint64 stop) G_GNUC_MALLOC;
544 void            gst_event_parse_seek            (GstEvent *event, gdouble *rate, GstFormat *format,
545                                                  GstSeekFlags *flags,
546                                                  GstSeekType *start_type, gint64 *start,
547                                                  GstSeekType *stop_type, gint64 *stop);
548
549 /* navigation event */
550 GstEvent*       gst_event_new_navigation        (GstStructure *structure) G_GNUC_MALLOC;
551
552 /* latency event */
553 GstEvent*       gst_event_new_latency           (GstClockTime latency) G_GNUC_MALLOC;
554 void            gst_event_parse_latency         (GstEvent *event, GstClockTime *latency);
555
556 /* step event */
557 GstEvent*       gst_event_new_step              (GstFormat format, guint64 amount, gdouble rate,
558                                                  gboolean flush, gboolean intermediate) G_GNUC_MALLOC;
559 void            gst_event_parse_step            (GstEvent *event, GstFormat *format, guint64 *amount,
560                                                  gdouble *rate, gboolean *flush, gboolean *intermediate);
561
562 /* renegotiate event */
563 GstEvent*       gst_event_new_reconfigure       (void) G_GNUC_MALLOC;
564
565 G_END_DECLS
566
567 #endif /* __GST_EVENT_H__ */