f3522eb7001b7f6d0c08087bec9deb14484941b5
[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 #include <gst/gstminiobject.h>
29 #include <gst/gstformat.h>
30 #include <gst/gstobject.h>
31 #include <gst/gstclock.h>
32 #include <gst/gststructure.h>
33 #include <gst/gsttaglist.h>
34
35 G_BEGIN_DECLS
36
37 extern GType _gst_event_type;
38
39 typedef struct _GstEvent GstEvent;
40
41 #define GST_TYPE_EVENT                  (_gst_event_type)
42 #define GST_IS_EVENT(obj)               (GST_IS_MINI_OBJECT_TYPE (obj, GST_TYPE_EVENT))
43 #define GST_EVENT_CAST(obj)             ((GstEvent *)(obj))
44 #define GST_EVENT(obj)                  (GST_EVENT_CAST(obj))
45
46 /**
47  * GST_EVENT_TRACE_NAME:
48  *
49  * The name used for memory allocation tracing
50  */
51 #define GST_EVENT_TRACE_NAME    "GstEvent"
52
53 /**
54  * GstEventTypeFlags:
55  * @GST_EVENT_TYPE_UPSTREAM:   Set if the event can travel upstream.
56  * @GST_EVENT_TYPE_DOWNSTREAM: Set if the event can travel downstream.
57  * @GST_EVENT_TYPE_SERIALIZED: Set if the event should be serialized with data
58  *                             flow.
59  * @GST_EVENT_TYPE_STICKY:     Set if the event is sticky on the pads.
60  *
61  * #GstEventTypeFlags indicate the aspects of the different #GstEventType
62  * values. You can get the type flags of a #GstEventType with the
63  * gst_event_type_get_flags() function.
64  */
65 typedef enum {
66   GST_EVENT_TYPE_UPSTREAM       = 1 << 0,
67   GST_EVENT_TYPE_DOWNSTREAM     = 1 << 1,
68   GST_EVENT_TYPE_SERIALIZED     = 1 << 2,
69   GST_EVENT_TYPE_STICKY         = 1 << 3
70 } GstEventTypeFlags;
71
72 /**
73  * GST_EVENT_TYPE_BOTH:
74  *
75  * The same thing as #GST_EVENT_TYPE_UPSTREAM | #GST_EVENT_TYPE_DOWNSTREAM.
76  */
77 #define GST_EVENT_TYPE_BOTH \
78     (GST_EVENT_TYPE_UPSTREAM | GST_EVENT_TYPE_DOWNSTREAM)
79
80 #define GST_EVENT_MAX_STICKY    16
81 #define GST_EVENT_STICKY_SHIFT  8
82 #define GST_EVENT_NUM_SHIFT     (GST_EVENT_STICKY_SHIFT + 4)
83
84 /**
85  * GST_EVENT_MAKE_TYPE:
86  * @num: the event number to create
87  * @idx: the index in the sticky array
88  * @flags: the event flags
89  *
90  * when making custom event types, use this macro with the num and
91  * the given flags
92  */
93 #define GST_EVENT_MAKE_TYPE(num,idx,flags) \
94     (((num) << GST_EVENT_NUM_SHIFT) | ((idx) << GST_EVENT_STICKY_SHIFT) | (flags))
95
96 #define FLAG(name) GST_EVENT_TYPE_##name
97
98
99 #define GST_EVENT_STICKY_IDX_TYPE(type)  (((type) >> GST_EVENT_STICKY_SHIFT) & 0xf)
100 #define GST_EVENT_STICKY_IDX(ev)         GST_EVENT_STICKY_IDX_TYPE(GST_EVENT_TYPE(ev))
101
102 /**
103  * GstEventType:
104  * @GST_EVENT_UNKNOWN: unknown event.
105  * @GST_EVENT_FLUSH_START: Start a flush operation. This event clears all data
106  *                 from the pipeline and unblock all streaming threads.
107  * @GST_EVENT_FLUSH_STOP: Stop a flush operation. This event resets the
108  *                 running-time of the pipeline.
109  * @GST_EVENT_EOS: End-Of-Stream. No more data is to be expected to follow
110  *                 without a NEWSEGMENT event.
111  * @GST_EVENT_NEWSEGMENT: A new media segment follows in the dataflow. The
112  *                 segment events contains information for clipping buffers and
113  *                 converting buffer timestamps to running-time and
114  *                 stream-time.
115  * @GST_EVENT_TAG: A new set of metadata tags has been found in the stream.
116  * @GST_EVENT_BUFFERSIZE: Notification of buffering requirements. Currently not
117  *                 used yet.
118  * @GST_EVENT_SINK_MESSAGE: An event that sinks turn into a message. Used to
119  *                          send messages that should be emitted in sync with
120  *                          rendering.
121  *                          Since: 0.10.26
122  * @GST_EVENT_QOS: A quality message. Used to indicate to upstream elements
123  *                 that the downstream elements should adjust their processing
124  *                 rate.
125  * @GST_EVENT_SEEK: A request for a new playback position and rate.
126  * @GST_EVENT_NAVIGATION: Navigation events are usually used for communicating
127  *                        user requests, such as mouse or keyboard movements,
128  *                        to upstream elements.
129  * @GST_EVENT_LATENCY: Notification of new latency adjustment. Sinks will use
130  *                     the latency information to adjust their synchronisation.
131  *                     Since: 0.10.12
132  * @GST_EVENT_STEP: A request for stepping through the media. Sinks will usually
133  *                  execute the step operation. Since: 0.10.24
134  * @GST_EVENT_RECONFIGURE: A request for upstream renegotiating caps and reconfiguring.
135  *                         Since: 0.10.34
136  * @GST_EVENT_CUSTOM_UPSTREAM: Upstream custom event
137  * @GST_EVENT_CUSTOM_DOWNSTREAM: Downstream custom event that travels in the
138  *                        data flow.
139  * @GST_EVENT_CUSTOM_DOWNSTREAM_OOB: Custom out-of-band downstream event.
140  * @GST_EVENT_CUSTOM_BOTH: Custom upstream or downstream event.
141  *                         In-band when travelling downstream.
142  * @GST_EVENT_CUSTOM_BOTH_OOB: Custom upstream or downstream out-of-band event.
143  *
144  * #GstEventType lists the standard event types that can be sent in a pipeline.
145  *
146  * The custom event types can be used for private messages between elements
147  * that can't be expressed using normal
148  * GStreamer buffer passing semantics. Custom events carry an arbitrary
149  * #GstStructure.
150  * Specific custom events are distinguished by the name of the structure.
151  */
152 /* NOTE: keep in sync with quark registration in gstevent.c */
153 typedef enum {
154   GST_EVENT_UNKNOWN               = GST_EVENT_MAKE_TYPE (0, 0, 0),
155   /* bidirectional events */
156   GST_EVENT_FLUSH_START           = GST_EVENT_MAKE_TYPE (1, 0, FLAG(BOTH)),
157   GST_EVENT_FLUSH_STOP            = GST_EVENT_MAKE_TYPE (2, 0, FLAG(BOTH) | FLAG(SERIALIZED)),
158   /* downstream serialized events */
159   GST_EVENT_CAPS                  = GST_EVENT_MAKE_TYPE (5, 1, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
160   GST_EVENT_NEWSEGMENT            = GST_EVENT_MAKE_TYPE (6, 2, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
161   GST_EVENT_TAG                   = GST_EVENT_MAKE_TYPE (7, 3, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
162   GST_EVENT_BUFFERSIZE            = GST_EVENT_MAKE_TYPE (8, 4, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
163   GST_EVENT_SINK_MESSAGE          = GST_EVENT_MAKE_TYPE (9, 5, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
164   GST_EVENT_EOS                   = GST_EVENT_MAKE_TYPE (10, 6, FLAG(DOWNSTREAM) | FLAG(SERIALIZED) | FLAG(STICKY)),
165   /* upstream events */
166   GST_EVENT_QOS                   = GST_EVENT_MAKE_TYPE (15, 0, FLAG(UPSTREAM)),
167   GST_EVENT_SEEK                  = GST_EVENT_MAKE_TYPE (16, 0, FLAG(UPSTREAM)),
168   GST_EVENT_NAVIGATION            = GST_EVENT_MAKE_TYPE (17, 0, FLAG(UPSTREAM)),
169   GST_EVENT_LATENCY               = GST_EVENT_MAKE_TYPE (18, 0, FLAG(UPSTREAM)),
170   GST_EVENT_STEP                  = GST_EVENT_MAKE_TYPE (19, 0, FLAG(UPSTREAM)),
171   GST_EVENT_RECONFIGURE           = GST_EVENT_MAKE_TYPE (20, 0, FLAG(UPSTREAM)),
172
173   /* custom events start here */
174   GST_EVENT_CUSTOM_UPSTREAM       = GST_EVENT_MAKE_TYPE (32, 0, FLAG(UPSTREAM)),
175   GST_EVENT_CUSTOM_DOWNSTREAM     = GST_EVENT_MAKE_TYPE (32, 0, FLAG(DOWNSTREAM) | FLAG(SERIALIZED)),
176   GST_EVENT_CUSTOM_DOWNSTREAM_OOB = GST_EVENT_MAKE_TYPE (32, 0, FLAG(DOWNSTREAM)),
177   GST_EVENT_CUSTOM_BOTH           = GST_EVENT_MAKE_TYPE (32, 0, FLAG(BOTH) | FLAG(SERIALIZED)),
178   GST_EVENT_CUSTOM_BOTH_OOB       = GST_EVENT_MAKE_TYPE (32, 0, FLAG(BOTH))
179 } GstEventType;
180 #undef FLAG
181
182 /**
183  * GST_EVENT_TYPE:
184  * @event: the event to query
185  *
186  * Get the #GstEventType of the event.
187  */
188 #define GST_EVENT_TYPE(event)           (GST_EVENT_CAST(event)->type)
189
190 /**
191  * GST_EVENT_TYPE_NAME:
192  * @event: the event to query
193  *
194  * Get a constant string representation of the #GstEventType of the event.
195  */
196 #define GST_EVENT_TYPE_NAME(event)      (gst_event_type_get_name(GST_EVENT_TYPE(event)))
197
198 /**
199  * GST_EVENT_TIMESTAMP:
200  * @event: the event to query
201  *
202  * Get the #GstClockTime timestamp of the event. This is the time when the event
203  * was created.
204  */
205 #define GST_EVENT_TIMESTAMP(event)      (GST_EVENT_CAST(event)->timestamp)
206
207 /**
208  * GST_EVENT_SEQNUM:
209  * @event: the event to query
210  *
211  * The sequence number of @event.
212  */
213 #define GST_EVENT_SEQNUM(event)         (GST_EVENT_CAST(event)->seqnum)
214
215 /**
216  * GST_EVENT_IS_UPSTREAM:
217  * @ev: the event to query
218  *
219  * Check if an event can travel upstream.
220  */
221 #define GST_EVENT_IS_UPSTREAM(ev)       !!(GST_EVENT_TYPE (ev) & GST_EVENT_TYPE_UPSTREAM)
222 /**
223  * GST_EVENT_IS_DOWNSTREAM:
224  * @ev: the event to query
225  *
226  * Check if an event can travel downstream.
227  */
228 #define GST_EVENT_IS_DOWNSTREAM(ev)     !!(GST_EVENT_TYPE (ev) & GST_EVENT_TYPE_DOWNSTREAM)
229 /**
230  * GST_EVENT_IS_SERIALIZED:
231  * @ev: the event to query
232  *
233  * Check if an event is serialized with the data stream.
234  */
235 #define GST_EVENT_IS_SERIALIZED(ev)     !!(GST_EVENT_TYPE (ev) & GST_EVENT_TYPE_SERIALIZED)
236 /**
237  * GST_EVENT_IS_STICKY:
238  * @ev: the event to query
239  *
240  * Check if an event is sticky on the pads.
241  */
242 #define GST_EVENT_IS_STICKY(ev)     !!(GST_EVENT_TYPE (ev) & GST_EVENT_TYPE_STICKY)
243
244 /**
245  * gst_event_is_writable:
246  * @ev: a #GstEvent
247  *
248  * Tests if you can safely write data into a event's structure or validly
249  * modify the seqnum and timestamp field.
250  */
251 #define         gst_event_is_writable(ev)     gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (ev))
252 /**
253  * gst_event_make_writable:
254  * @ev: (transfer full): a #GstEvent
255  *
256  * Makes a writable event from the given event. If the source event is
257  * already writable, this will simply return the same event. A copy will
258  * otherwise be made using gst_event_copy().
259  *
260  * Returns: (transfer full): a writable event which may or may not be the
261  *     same as @ev
262  */
263 #define         gst_event_make_writable(ev)   GST_EVENT_CAST (gst_mini_object_make_writable (GST_MINI_OBJECT_CAST (ev)))
264 /**
265  * gst_event_replace:
266  * @old_event: (inout) (transfer full): pointer to a pointer to a #GstEvent
267  *     to be replaced.
268  * @new_event: (allow-none) (transfer none): pointer to a #GstEvent that will
269  *     replace the event pointed to by @old_event.
270  *
271  * Modifies a pointer to a #GstEvent to point to a different #GstEvent. The
272  * modification is done atomically (so this is useful for ensuring thread safety
273  * in some cases), and the reference counts are updated appropriately (the old
274  * event is unreffed, the new one is reffed).
275  *
276  * Either @new_event or the #GstEvent pointed to by @old_event may be NULL.
277  *
278  * Since: 0.10.3
279  */
280 #define         gst_event_replace(old_event,new_event) \
281     gst_mini_object_replace ((GstMiniObject **)(old_event), GST_MINI_OBJECT_CAST (new_event))
282
283 /**
284  * GstSeekType:
285  * @GST_SEEK_TYPE_NONE: no change in position is required
286  * @GST_SEEK_TYPE_CUR: change relative to currently configured segment. This
287  *    can't be used to seek relative to the current playback position - do a
288  *    position query, calculate the desired position and then do an absolute
289  *    position seek instead if that's what you want to do.
290  * @GST_SEEK_TYPE_SET: absolute position is requested
291  * @GST_SEEK_TYPE_END: relative position to duration is requested
292  *
293  * The different types of seek events. When constructing a seek event with
294  * gst_event_new_seek(), a format, a seek method and optional flags are to
295  * be provided. The seek event is then inserted into the graph with
296  * gst_pad_send_event() or gst_element_send_event().
297  */
298 typedef enum {
299   /* one of these */
300   GST_SEEK_TYPE_NONE            = 0,
301   GST_SEEK_TYPE_CUR             = 1,
302   GST_SEEK_TYPE_SET             = 2,
303   GST_SEEK_TYPE_END             = 3
304 } GstSeekType;
305
306 /**
307  * GstSeekFlags:
308  * @GST_SEEK_FLAG_NONE: no flag
309  * @GST_SEEK_FLAG_FLUSH: flush pipeline
310  * @GST_SEEK_FLAG_ACCURATE: accurate position is requested, this might
311  *                     be considerably slower for some formats.
312  * @GST_SEEK_FLAG_KEY_UNIT: seek to the nearest keyframe. This might be
313  *                     faster but less accurate.
314  * @GST_SEEK_FLAG_SEGMENT: perform a segment seek.
315  * @GST_SEEK_FLAG_SKIP: when doing fast foward or fast reverse playback, allow
316  *                     elements to skip frames instead of generating all
317  *                     frames. Since 0.10.22.
318  *
319  * Flags to be used with gst_element_seek() or gst_event_new_seek(). All flags
320  * can be used together.
321  *
322  * A non flushing seek might take some time to perform as the currently
323  * playing data in the pipeline will not be cleared.
324  *
325  * An accurate seek might be slower for formats that don't have any indexes
326  * or timestamp markers in the stream. Specifying this flag might require a
327  * complete scan of the file in those cases.
328  *
329  * When performing a segment seek: after the playback of the segment completes,
330  * no EOS will be emmited by the element that performed the seek, but a
331  * #GST_MESSAGE_SEGMENT_DONE message will be posted on the bus by the element.
332  * When this message is posted, it is possible to send a new seek event to
333  * continue playback. With this seek method it is possible to perform seemless
334  * looping or simple linear editing.
335  *
336  * When doing fast forward (rate > 1.0) or fast reverse (rate < -1.0) trickmode
337  * playback, the @GST_SEEK_FLAG_SKIP flag can be used to instruct decoders
338  * and demuxers to adjust the playback rate by skipping frames. This can improve
339  * performance and decrease CPU usage because not all frames need to be decoded.
340  *
341  * Also see part-seeking.txt in the GStreamer design documentation for more
342  * details on the meaning of these flags and the behaviour expected of
343  * elements that handle them.
344  */
345 typedef enum {
346   GST_SEEK_FLAG_NONE            = 0,
347   GST_SEEK_FLAG_FLUSH           = (1 << 0),
348   GST_SEEK_FLAG_ACCURATE        = (1 << 1),
349   GST_SEEK_FLAG_KEY_UNIT        = (1 << 2),
350   GST_SEEK_FLAG_SEGMENT         = (1 << 3),
351   GST_SEEK_FLAG_SKIP            = (1 << 4)
352 } GstSeekFlags;
353
354 /**
355  * GstQOSType:
356  * @GST_QOS_TYPE_OVERFLOW: The QoS event type that is produced when downstream
357  *    elements are producing data too quickly and the element can't keep up
358  *    processing the data. Upstream should reduce their processing rate. This
359  *    type is also used when buffers arrive early or in time.
360  * @GST_QOS_TYPE_UNDERFLOW: The QoS event type that is produced when downstream
361  *    elements are producing data too slowly and need to speed up their processing
362  *    rate.
363  * @GST_QOS_TYPE_THROTTLE: The QoS event type that is produced when the
364  *    application enabled throttling to limit the datarate.
365  *
366  * The different types of QoS events that can be given to the
367  * gst_event_new_qos() method.
368  *
369  * Since: 0.10.33
370  */
371 typedef enum {
372   GST_QOS_TYPE_OVERFLOW        = 0,
373   GST_QOS_TYPE_UNDERFLOW       = 1,
374   GST_QOS_TYPE_THROTTLE        = 2
375 } GstQOSType;
376
377 /**
378  * GstEvent:
379  * @mini_object: the parent structure
380  * @type: the #GstEventType of the event
381  * @timestamp: the timestamp of the event
382  * @structure: the #GstStructure containing the event info.
383  *
384  * A #GstEvent.
385  */
386 struct _GstEvent {
387   GstMiniObject mini_object;
388
389   /*< public >*/ /* with COW */
390   GstEventType  type;
391   guint64       timestamp;
392   guint32       seqnum;
393 };
394
395 const gchar*    gst_event_type_get_name         (GstEventType type);
396 GQuark          gst_event_type_to_quark         (GstEventType type);
397 GstEventTypeFlags
398                 gst_event_type_get_flags        (GstEventType type);
399
400
401 /* refcounting */
402 /**
403  * gst_event_ref:
404  * @event: The event to refcount
405  *
406  * Increase the refcount of this event.
407  *
408  * Returns: (transfer full): @event (for convenience when doing assignments)
409  */
410 #ifdef _FOOL_GTK_DOC_
411 G_INLINE_FUNC GstEvent * gst_event_ref (GstEvent * event);
412 #endif
413
414 static inline GstEvent *
415 gst_event_ref (GstEvent * event)
416 {
417   return (GstEvent *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (event));
418 }
419
420 /**
421  * gst_event_unref:
422  * @event: (transfer full): the event to refcount
423  *
424  * Decrease the refcount of an event, freeing it if the refcount reaches 0.
425  */
426 #ifdef _FOOL_GTK_DOC_
427 G_INLINE_FUNC void gst_event_unref (GstEvent * event);
428 #endif
429
430 static inline void
431 gst_event_unref (GstEvent * event)
432 {
433   gst_mini_object_unref (GST_MINI_OBJECT_CAST (event));
434 }
435
436 /* copy event */
437 /**
438  * gst_event_copy:
439  * @event: The event to copy
440  *
441  * Copy the event using the event specific copy function.
442  *
443  * Returns: (transfer full): the new event
444  */
445 #ifdef _FOOL_GTK_DOC_
446 G_INLINE_FUNC GstEvent * gst_event_copy (const GstEvent * event);
447 #endif
448
449 static inline GstEvent *
450 gst_event_copy (const GstEvent * event)
451 {
452   return GST_EVENT_CAST (gst_mini_object_copy (GST_MINI_OBJECT_CONST_CAST (event)));
453 }
454
455
456 /* custom event */
457 GstEvent*       gst_event_new_custom            (GstEventType type, GstStructure *structure);
458
459 const GstStructure *
460                 gst_event_get_structure         (GstEvent *event);
461 GstStructure *  gst_event_writable_structure    (GstEvent *event);
462
463 gboolean        gst_event_has_name              (GstEvent *event, const gchar *name);
464
465 /* identifiers for events and messages */
466 guint32         gst_event_get_seqnum            (GstEvent *event);
467 void            gst_event_set_seqnum            (GstEvent *event, guint32 seqnum);
468
469 /* flush events */
470 GstEvent *      gst_event_new_flush_start       (void);
471 GstEvent *      gst_event_new_flush_stop        (void);
472
473 /* EOS event */
474 GstEvent *      gst_event_new_eos               (void);
475
476 /* Caps events */
477 GstEvent *      gst_event_new_caps              (GstCaps *caps);
478 void            gst_event_parse_caps            (GstEvent *event, GstCaps **caps);
479
480 /* newsegment events */
481 GstEvent*       gst_event_new_new_segment       (gboolean update, gdouble rate,
482                                                  gdouble applied_rate,
483                                                  GstFormat format,
484                                                  gint64 start, gint64 stop,
485                                                  gint64 time);
486 void            gst_event_parse_new_segment     (GstEvent *event,
487                                                  gboolean *update,
488                                                  gdouble *rate,
489                                                  gdouble *applied_rate,
490                                                  GstFormat *format,
491                                                  gint64 *start, gint64 *stop,
492                                                  gint64 *time);
493
494 /* tag event */
495 GstEvent*       gst_event_new_tag               (GstTagList *taglist);
496 void            gst_event_parse_tag             (GstEvent *event, GstTagList **taglist);
497
498 /* buffer */
499 GstEvent *      gst_event_new_buffer_size       (GstFormat format, gint64 minsize, gint64 maxsize,
500                                                  gboolean async);
501 void            gst_event_parse_buffer_size     (GstEvent *event, GstFormat *format, gint64 *minsize,
502                                                  gint64 *maxsize, gboolean *async);
503
504 /* QOS events */
505 GstEvent*       gst_event_new_qos               (GstQOSType type, gdouble proportion,
506                                                  GstClockTimeDiff diff, GstClockTime timestamp);
507 void            gst_event_parse_qos             (GstEvent *event, GstQOSType *type,
508                                                  gdouble *proportion, GstClockTimeDiff *diff,
509                                                  GstClockTime *timestamp);
510 /* seek event */
511 GstEvent*       gst_event_new_seek              (gdouble rate, GstFormat format, GstSeekFlags flags,
512                                                  GstSeekType start_type, gint64 start,
513                                                  GstSeekType stop_type, gint64 stop);
514 void            gst_event_parse_seek            (GstEvent *event, gdouble *rate, GstFormat *format,
515                                                  GstSeekFlags *flags,
516                                                  GstSeekType *start_type, gint64 *start,
517                                                  GstSeekType *stop_type, gint64 *stop);
518 /* navigation event */
519 GstEvent*       gst_event_new_navigation        (GstStructure *structure);
520
521 /* latency event */
522 GstEvent*       gst_event_new_latency           (GstClockTime latency);
523 void            gst_event_parse_latency         (GstEvent *event, GstClockTime *latency);
524
525 /* step event */
526 GstEvent*       gst_event_new_step              (GstFormat format, guint64 amount, gdouble rate,
527                                                  gboolean flush, gboolean intermediate);
528 void            gst_event_parse_step            (GstEvent *event, GstFormat *format, guint64 *amount,
529                                                  gdouble *rate, gboolean *flush, gboolean *intermediate);
530
531 /* renegotiate event */
532 GstEvent*       gst_event_new_reconfigure       (void);
533
534 G_END_DECLS
535
536 #endif /* __GST_EVENT_H__ */