diff options
author | Johan Dahlin <johan@gnome.org> | 2004-03-15 16:32:54 +0000 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2004-03-15 16:32:54 +0000 |
commit | 39fd8a2dbd436cbabe5e336d1145b62c2a885ed5 (patch) | |
tree | 61df7da4a9d2b8bdb853af50a27219a8921bf5e4 /gst/deinterlace | |
parent | 1633bd8693c54cbc5f6648703a7ecf01548ec55f (diff) | |
download | gstreamer-plugins-bad-39fd8a2dbd436cbabe5e336d1145b62c2a885ed5.tar.gz |
*.h: Revert indenting
Original commit message from CVS:
* *.h: Revert indenting
Diffstat (limited to 'gst/deinterlace')
-rw-r--r-- | gst/deinterlace/gstdeinterlace.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gst/deinterlace/gstdeinterlace.h b/gst/deinterlace/gstdeinterlace.h index 13f3d66f0..272073196 100644 --- a/gst/deinterlace/gstdeinterlace.h +++ b/gst/deinterlace/gstdeinterlace.h @@ -26,6 +26,7 @@ /* #include <gst/meta/audioraw.h> */ G_BEGIN_DECLS + #define GST_TYPE_DEINTERLACE \ (gst_deinterlace_get_type()) #define GST_DEINTERLACE(obj) \ @@ -36,11 +37,11 @@ G_BEGIN_DECLS (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DEINTERLACE)) #define GST_IS_DEINTERLACE_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DEINTERLACE)) + typedef struct _GstDeInterlace GstDeInterlace; typedef struct _GstDeInterlaceClass GstDeInterlaceClass; -struct _GstDeInterlace -{ +struct _GstDeInterlace { GstElement element; GstPad *sinkpad, *srcpad; @@ -49,8 +50,8 @@ struct _GstDeInterlace gboolean show_deinterlaced_area_only; gboolean blend; - gint threshold_blend; /* here we start blending */ - gint threshold; /* here we start interpolating TODO FIXME */ + gint threshold_blend; /* here we start blending */ + gint threshold; /* here we start interpolating TODO FIXME */ gint edge_detect; gint picsize; @@ -58,10 +59,10 @@ struct _GstDeInterlace }; -struct _GstDeInterlaceClass -{ +struct _GstDeInterlaceClass { GstElementClass parent_class; }; G_END_DECLS + #endif /* __GST_DEINTERLACE_H__ */ |