diff options
Diffstat (limited to 'gst/debug/gstnavigationtest.h')
-rw-r--r-- | gst/debug/gstnavigationtest.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/gst/debug/gstnavigationtest.h b/gst/debug/gstnavigationtest.h index 4211fc3c..98abcd81 100644 --- a/gst/debug/gstnavigationtest.h +++ b/gst/debug/gstnavigationtest.h @@ -21,12 +21,8 @@ #ifndef __GST_NAVIGATIONTEST_H__ #define __GST_NAVIGATIONTEST_H__ - -#include <gst/gst.h> - #include "gstvideofilter.h" - G_BEGIN_DECLS #define GST_TYPE_NAVIGATIONTEST \ @@ -43,11 +39,21 @@ G_BEGIN_DECLS typedef struct _GstNavigationtest GstNavigationtest; typedef struct _GstNavigationtestClass GstNavigationtestClass; +typedef struct +{ + gdouble x; + gdouble y; + gint images_left; + guint8 cy, cu, cv; +} ButtonClick; + struct _GstNavigationtest { GstVideofilter videofilter; - double x; - double y; + gint width, height; + + GValue framerate; + gdouble x, y; GSList *clicks; }; @@ -61,4 +67,3 @@ GType gst_navigationtest_get_type(void); G_END_DECLS #endif /* __GST_NAVIGATIONTEST_H__ */ - |