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