summaryrefslogtreecommitdiffstats
path: root/gst/debug/gstnavigationtest.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/debug/gstnavigationtest.h')
-rw-r--r--gst/debug/gstnavigationtest.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/gst/debug/gstnavigationtest.h b/gst/debug/gstnavigationtest.h
index 21c355f6..efdbb228 100644
--- a/gst/debug/gstnavigationtest.h
+++ b/gst/debug/gstnavigationtest.h
@@ -24,7 +24,6 @@
#include <gst/video/gstvideofilter.h>
G_BEGIN_DECLS
-
#define GST_TYPE_NAVIGATIONTEST \
(gst_navigationtest_get_type())
#define GST_NAVIGATIONTEST(obj) \
@@ -35,7 +34,6 @@ G_BEGIN_DECLS
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_NAVIGATIONTEST))
#define GST_IS_NAVIGATIONTEST_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_NAVIGATIONTEST))
-
typedef struct _GstNavigationtest GstNavigationtest;
typedef struct _GstNavigationtestClass GstNavigationtestClass;
@@ -47,23 +45,24 @@ typedef struct
guint8 cy, cu, cv;
} ButtonClick;
-struct _GstNavigationtest {
+struct _GstNavigationtest
+{
GstVideoFilter videofilter;
gint width, height;
-
+
GValue framerate;
gdouble x, y;
GSList *clicks;
};
-struct _GstNavigationtestClass {
+struct _GstNavigationtestClass
+{
GstVideoFilterClass parent_class;
};
-GType gst_navigationtest_get_type(void);
+GType gst_navigationtest_get_type (void);
G_END_DECLS
-
#endif /* __GST_NAVIGATIONTEST_H__ */