From 5acffea623eaa95469a8fb77260c85240c6c0a41 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Mon, 15 Mar 2004 16:32:54 +0000 Subject: *.h: Revert indenting Original commit message from CVS: * *.h: Revert indenting --- gst/debug/efence.h | 35 +++++++++++++++++------------------ gst/debug/gstnavigationtest.h | 12 +++++++----- 2 files changed, 24 insertions(+), 23 deletions(-) (limited to 'gst/debug') diff --git a/gst/debug/efence.h b/gst/debug/efence.h index 8447e848..bf0790dd 100644 --- a/gst/debug/efence.h +++ b/gst/debug/efence.h @@ -8,9 +8,8 @@ #include #ifdef __cplusplus -extern "C" -{ -#endif /* __cplusplus */ +extern "C" { +#endif /* __cplusplus */ /* #define's don't like whitespacey bits */ #define GST_TYPE_EFENCE \ @@ -24,27 +23,27 @@ extern "C" #define GST_IS_EFENCE_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_EFENCE)) - typedef struct _GstEFence GstEFence; - typedef struct _GstEFenceClass GstEFenceClass; +typedef struct _GstEFence GstEFence; +typedef struct _GstEFenceClass GstEFenceClass; - struct _GstEFence - { - GstElement element; +struct _GstEFence +{ + GstElement element; - GstPad *sinkpad, *srcpad; + GstPad *sinkpad, *srcpad; - gboolean fence_top; - }; + gboolean fence_top; +}; - struct _GstEFenceClass - { - GstElementClass parent_class; - }; +struct _GstEFenceClass +{ + GstElementClass parent_class; +}; - GType gst_gst_efence_get_type (void); +GType gst_gst_efence_get_type (void); #ifdef __cplusplus } -#endif /* __cplusplus */ +#endif /* __cplusplus */ -#endif /* __GST_EFENCE_H__ */ +#endif /* __GST_EFENCE_H__ */ diff --git a/gst/debug/gstnavigationtest.h b/gst/debug/gstnavigationtest.h index 00d3e6d1..61798c93 100644 --- a/gst/debug/gstnavigationtest.h +++ b/gst/debug/gstnavigationtest.h @@ -28,6 +28,7 @@ G_BEGIN_DECLS + #define GST_TYPE_NAVIGATIONTEST \ (gst_navigationtest_get_type()) #define GST_NAVIGATIONTEST(obj) \ @@ -38,23 +39,24 @@ G_BEGIN_DECLS (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_NAVIGATIONTEST)) #define GST_IS_NAVIGATIONTEST_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_NAVIGATIONTEST)) + typedef struct _GstNavigationtest GstNavigationtest; typedef struct _GstNavigationtestClass GstNavigationtestClass; -struct _GstNavigationtest -{ +struct _GstNavigationtest { GstVideofilter videofilter; double x; double y; }; -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__ */ + -- cgit