cacasink: minor cleanups for header.
authorPriit Laes <plaes@plaes.org>
Mon, 19 Oct 2009 18:59:46 +0000 (21:59 +0300)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 22 Oct 2009 01:03:12 +0000 (02:03 +0100)
Use G_BEGIN_DECLS macros, remove unused variables and fix typo.
See #599018.

ext/libcaca/gstcacasink.h

index 548ca5d..580567a 100644 (file)
@@ -30,9 +30,7 @@
 #   include <caca0.h>
 #endif
 
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
+G_BEGIN_DECLS
 
 #define GST_TYPE_CACASINK \
   (gst_cacasink_get_type())
@@ -51,9 +49,6 @@ typedef struct _GstCACASinkClass GstCACASinkClass;
 struct _GstCACASink {
   GstBaseSink parent;
 
-  GstPad *sinkpad;
-
-  gulong format;
   gint width, height;
   gint screen_width, screen_height;
   guint bpp;
@@ -72,9 +67,6 @@ struct _GstCACASinkClass {
 
 GType gst_cacasink_get_type(void);
 
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
+G_END_DECLS
 
-#endif /* __GST_CACASINKE_H__ */
+#endif /* __GST_CACASINK_H__ */