summaryrefslogtreecommitdiff
path: root/gst/gstpipeline.h
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-03-13 15:27:01 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-03-13 15:27:01 +0000
commita967370df58163d7f5219a285a8331b3f79930a3 (patch)
treed6c4b98d58ce96273f7e99f836d4bbef0e7e2cce /gst/gstpipeline.h
parentb8edc59edb7c71b3edcc9d51bf6f6d145e60df91 (diff)
gst-indent run on core
Original commit message from CVS: gst-indent run on core
Diffstat (limited to 'gst/gstpipeline.h')
-rw-r--r--gst/gstpipeline.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/gst/gstpipeline.h b/gst/gstpipeline.h
index 5dd5b11c06..47bf9c3915 100644
--- a/gst/gstpipeline.h
+++ b/gst/gstpipeline.h
@@ -27,34 +27,32 @@
#include <gst/gstbin.h>
G_BEGIN_DECLS
-
#define GST_TYPE_PIPELINE (gst_pipeline_get_type ())
#define GST_PIPELINE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_PIPELINE, GstPipeline))
#define GST_IS_PIPELINE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_PIPELINE))
#define GST_PIPELINE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_PIPELINE, GstPipelineClass))
#define GST_IS_PIPELINE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_PIPELINE))
#define GST_PIPELINE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_PIPELINE, GstPipelineClass))
-
typedef struct _GstPipeline GstPipeline;
typedef struct _GstPipelineClass GstPipelineClass;
-struct _GstPipeline {
- GstBin bin;
+struct _GstPipeline
+{
+ GstBin bin;
gpointer _gst_reserved[GST_PADDING];
};
-struct _GstPipelineClass {
+struct _GstPipelineClass
+{
GstBinClass parent_class;
gpointer _gst_reserved[GST_PADDING];
};
-GType gst_pipeline_get_type (void);
-GstElement* gst_pipeline_new (const gchar *name);
+GType gst_pipeline_get_type (void);
+GstElement *gst_pipeline_new (const gchar * name);
G_END_DECLS
-
#endif /* __GST_PIPELINE_H__ */
-