summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/navigation/navigation.h
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-11-11 00:43:29 +0000
committerDavid Schleef <ds@schleef.org>2003-11-11 00:43:29 +0000
commit7e171f0215303fae4ac0c6e3e083d0d3144842f7 (patch)
treed1ee45c344c21aaf235a8f18889bd34c029c7844 /gst-libs/gst/navigation/navigation.h
parent65941aa8d9ef8b5612b03588f72b1bacaa363aa0 (diff)
downloadgst-plugins-bad-7e171f0215303fae4ac0c6e3e083d0d3144842f7.tar.gz
gst-plugins-bad-7e171f0215303fae4ac0c6e3e083d0d3144842f7.tar.bz2
gst-plugins-bad-7e171f0215303fae4ac0c6e3e083d0d3144842f7.zip
Change GstCaps to GstStructure in navigation events. Fix x[v]imagesink to scale navigation events.
Original commit message from CVS: Change GstCaps to GstStructure in navigation events. Fix x[v]imagesink to scale navigation events.
Diffstat (limited to 'gst-libs/gst/navigation/navigation.h')
-rw-r--r--gst-libs/gst/navigation/navigation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/navigation/navigation.h b/gst-libs/gst/navigation/navigation.h
index 5ce3a5c7..22a66632 100644
--- a/gst-libs/gst/navigation/navigation.h
+++ b/gst-libs/gst/navigation/navigation.h
@@ -42,7 +42,7 @@ typedef struct _GstNavigationInterface {
GTypeInterface g_iface;
/* virtual functions */
- void (*send_event) (GstNavigation *navigation, GstCaps *caps);
+ void (*send_event) (GstNavigation *navigation, GstStructure *structure);
GST_CLASS_PADDING
} GstNavigationInterface;
@@ -50,7 +50,7 @@ typedef struct _GstNavigationInterface {
GType gst_navigation_get_type (void);
/* virtual class function wrappers */
-void gst_navigation_send_event (GstNavigation *navigation, GstCaps *caps);
+void gst_navigation_send_event (GstNavigation *navigation, GstStructure *structure);
void gst_navigation_send_key_event (GstNavigation *navigation, const char *key);
void gst_navigation_send_mouse_event (GstNavigation *navigation, double x,