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 --- ext/esd/esdmon.h | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'ext/esd/esdmon.h') diff --git a/ext/esd/esdmon.h b/ext/esd/esdmon.h index 5b8c7e49..f50e6544 100644 --- a/ext/esd/esdmon.h +++ b/ext/esd/esdmon.h @@ -26,6 +26,7 @@ #include G_BEGIN_DECLS + #define GST_TYPE_ESDMON \ (gst_esdmon_get_type()) #define GST_ESDMON(obj) \ @@ -36,22 +37,21 @@ G_BEGIN_DECLS (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_ESDMON)) #define GST_IS_ESDMON_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_ESDMON)) - typedef enum -{ - GST_ESDMON_OPEN = GST_ELEMENT_FLAG_LAST, - GST_ESDMON_FLAG_LAST = GST_ELEMENT_FLAG_LAST + 2, + +typedef enum { + GST_ESDMON_OPEN = GST_ELEMENT_FLAG_LAST, + GST_ESDMON_FLAG_LAST = GST_ELEMENT_FLAG_LAST+2, } GstEsdSrcFlags; typedef struct _GstEsdmon GstEsdmon; typedef struct _GstEsdmonClass GstEsdmonClass; -struct _GstEsdmon -{ +struct _GstEsdmon { GstElement element; GstPad *srcpad; - gchar *host; + gchar* host; int fd; @@ -65,13 +65,14 @@ struct _GstEsdmon guint64 bytes_per_read; }; -struct _GstEsdmonClass -{ +struct _GstEsdmonClass { GstElementClass parent_class; }; -GType gst_esdmon_get_type (void); -gboolean gst_esdmon_factory_init (GstPlugin * plugin); +GType gst_esdmon_get_type(void); +gboolean gst_esdmon_factory_init(GstPlugin *plugin); G_END_DECLS + #endif /* __GST_ESDMON_H__ */ + -- cgit