mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
Add navigation event
Original commit message from CVS: Add navigation event
This commit is contained in:
parent
b4993b3de2
commit
ce8fe777e6
1 changed files with 6 additions and 1 deletions
|
@ -28,6 +28,7 @@
|
|||
#include <gst/gstdata.h>
|
||||
#include <gst/gstformat.h>
|
||||
#include <gst/gstobject.h>
|
||||
#include <gst/gstcaps.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -46,7 +47,8 @@ typedef enum {
|
|||
GST_EVENT_RATE = 11,
|
||||
GST_EVENT_FILLER = 12,
|
||||
GST_EVENT_TS_OFFSET = 13,
|
||||
GST_EVENT_INTERRUPT = 14
|
||||
GST_EVENT_INTERRUPT = 14,
|
||||
GST_EVENT_NAVIGATION = 15
|
||||
} GstEventType;
|
||||
|
||||
extern GType _gst_event_type;
|
||||
|
@ -178,6 +180,9 @@ struct _GstEvent {
|
|||
struct {
|
||||
gdouble value;
|
||||
} rate;
|
||||
struct {
|
||||
GstCaps *caps;
|
||||
} caps;
|
||||
} event_data;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue