diff -r 43ce4ea2f9fb -r b7f71ba285da gst-gmyth/nuvdemux/gstnuvdemux.h --- a/gst-gmyth/nuvdemux/gstnuvdemux.h Tue May 01 16:04:02 2007 +0100 +++ b/gst-gmyth/nuvdemux/gstnuvdemux.h Thu Jun 14 18:21:53 2007 +0100 @@ -26,7 +26,6 @@ #include G_BEGIN_DECLS - #define GST_TYPE_NUV_DEMUX \ (gst_nuv_demux_get_type ()) #define GST_NUV_DEMUX(obj) \ @@ -37,19 +36,19 @@ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NUV_DEMUX)) #define GST_IS_NUV_DEMUX_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_NUV_DEMUX)) - typedef struct _GstNuvDemuxPrivate GstNuvDemuxPrivate; -typedef struct _GstNuvDemux { - GstElement parent; +typedef struct _GstNuvDemux +{ + GstElement parent; GstNuvDemuxPrivate *priv; } GstNuvDemux; -typedef struct _GstNuvDemuxClass { +typedef struct _GstNuvDemuxClass +{ GstElementClass parent_class; } GstNuvDemuxClass; -GType gst_nuv_demux_get_type (void); +GType gst_nuv_demux_get_type(void); G_END_DECLS - #endif /* __GST_NUV_DEMUX_H__ */