From 7a778ee4b7ec09a1f5b2185c9cceee3910dfbdf2 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 14 Mar 2004 22:34:33 +0000 Subject: gst-indent Original commit message from CVS: gst-indent --- gst/videodrop/gstvideodrop.h | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'gst/videodrop/gstvideodrop.h') diff --git a/gst/videodrop/gstvideodrop.h b/gst/videodrop/gstvideodrop.h index 20f954a4..913c91b5 100644 --- a/gst/videodrop/gstvideodrop.h +++ b/gst/videodrop/gstvideodrop.h @@ -23,7 +23,6 @@ #include G_BEGIN_DECLS - #define GST_TYPE_VIDEODROP \ (gst_videodrop_get_type()) #define GST_VIDEODROP(obj) \ @@ -34,29 +33,28 @@ G_BEGIN_DECLS (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEODROP)) #define GST_IS_VIDEODROP_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEODROP)) - typedef struct _GstVideodrop GstVideodrop; typedef struct _GstVideodropClass GstVideodropClass; -struct _GstVideodrop { +struct _GstVideodrop +{ GstElement element; GstPad *sinkpad, *srcpad; /* video state */ gboolean inited; - gfloat from_fps, - to_fps; + gfloat from_fps, to_fps; gfloat speed; guint64 pass, total, time_adjust; }; -struct _GstVideodropClass { +struct _GstVideodropClass +{ GstElementClass parent_class; }; -GType gst_videodrop_get_type(void); +GType gst_videodrop_get_type (void); G_END_DECLS - #endif /* __GST_VIDEODROP_H__ */ -- cgit v1.2.1