summaryrefslogtreecommitdiff
path: root/gst/siren/gstsiren.h
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2014-12-28 00:58:04 +0000
committerTim-Philipp Müller <tim@centricular.com>2014-12-28 00:58:04 +0000
commitbedb735d7271c10c3a66167545fa18e2319175f2 (patch)
tree7ba0bda6f2d48a0d0d8a936d05839f23a324464e /gst/siren/gstsiren.h
parent2a6446e5193f4eb20780994e363b0f25a0395c99 (diff)
downloadgstreamer-plugins-bad-bedb735d7271c10c3a66167545fa18e2319175f2.tar.gz
siren: remove unneeded structure padding
Public headers are private and not installed.
Diffstat (limited to 'gst/siren/gstsiren.h')
-rw-r--r--gst/siren/gstsiren.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/gst/siren/gstsiren.h b/gst/siren/gstsiren.h
index 6117cc169..40b1be1af 100644
--- a/gst/siren/gstsiren.h
+++ b/gst/siren/gstsiren.h
@@ -27,7 +27,7 @@
#include <gst/base/gstbasetransform.h>
G_BEGIN_DECLS
-/* #define's don't like whitespacey bits */
+
#define GST_TYPE_SIREN \
(gst_siren_get_type())
#define GST_SIREN(obj) \
@@ -40,24 +40,18 @@ G_BEGIN_DECLS
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SIREN))
#define GST_IS_SIREN_CLASS(obj) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SIREN))
+
typedef struct _GstSiren GstSiren;
typedef struct _GstSirenClass GstSirenClass;
-typedef struct _GstSirenPrivate GstSirenPrivate;
struct _GstSiren
{
GstBaseTransform parent;
-
- /*< private > */
- gpointer _gst_reserved[GST_PADDING];
};
struct _GstSirenClass
{
GstBaseTransformClass parent_class;
-
- /*< private > */
- gpointer _gst_reserved[GST_PADDING];
};
GType gst_siren_get_type (void);