diff options
author | Stefan Kost <ensonic@users.sf.net> | 2009-04-15 15:43:04 +0300 |
---|---|---|
committer | Stefan Kost <ensonic@users.sf.net> | 2009-04-15 16:13:34 +0300 |
commit | 99fcc86ee441d34752b39e382014d5a8a5cb04b0 (patch) | |
tree | 7e73c7baee67685b82d4daba7aca5b047352c17e /gst/debug/gstnavigationtest.h | |
parent | 787124dad6657d2c79134f611ae960f1666ca156 (diff) |
debug: indent before renaming
Diffstat (limited to 'gst/debug/gstnavigationtest.h')
-rw-r--r-- | gst/debug/gstnavigationtest.h | 13 |
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__ */ |