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/gsttaginject.h | |
parent | 787124dad6657d2c79134f611ae960f1666ca156 (diff) |
debug: indent before renaming
Diffstat (limited to 'gst/debug/gsttaginject.h')
-rw-r--r-- | gst/debug/gsttaginject.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/gst/debug/gsttaginject.h b/gst/debug/gsttaginject.h index 4d0f04f1..8e8de1ee 100644 --- a/gst/debug/gsttaginject.h +++ b/gst/debug/gsttaginject.h @@ -28,8 +28,6 @@ #include <gst/base/gstbasetransform.h> G_BEGIN_DECLS - - #define GST_TYPE_TAG_INJECT \ (gst_tag_inject_get_type()) #define GST_TAG_INJECT(obj) \ @@ -40,7 +38,6 @@ G_BEGIN_DECLS (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TAG_INJECT)) #define GST_IS_TAG_INJECT_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TAG_INJECT)) - typedef struct _GstTagInject GstTagInject; typedef struct _GstTagInjectClass GstTagInjectClass; @@ -49,20 +46,21 @@ typedef struct _GstTagInjectClass GstTagInjectClass; * * Opaque #GstTagInject data structure */ -struct _GstTagInject { - GstBaseTransform element; +struct _GstTagInject +{ + GstBaseTransform element; - /*< private >*/ + /*< private > */ GstTagList *tags; gboolean tags_sent; }; -struct _GstTagInjectClass { +struct _GstTagInjectClass +{ GstBaseTransformClass parent_class; }; -GType gst_tag_inject_get_type(void); +GType gst_tag_inject_get_type (void); G_END_DECLS - #endif /* __GST_TAG_INJECT_H__ */ |