plugins/elements/: These are not installed headers, no need for padding.
authorTim-Philipp Müller <tim@centricular.net>
Thu, 24 May 2007 09:41:51 +0000 (09:41 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Thu, 24 May 2007 09:41:51 +0000 (09:41 +0000)
Original commit message from CVS:
* plugins/elements/Makefile.am:
* plugins/elements/gstmultiqueue.h:
* plugins/elements/gstqueue.h:
These are not installed headers, no need for padding.

ChangeLog
plugins/elements/Makefile.am
plugins/elements/gstmultiqueue.h
plugins/elements/gstqueue.h

index 31119b6..28e5da2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * plugins/elements/Makefile.am:
+       * plugins/elements/gstmultiqueue.h:
+       * plugins/elements/gstqueue.h:
+         These are not installed headers, no need for padding.
+
 2007-05-24  Wim Taymans  <wim@fluendo.com>
 
        * gst/gstbin.c: (gst_bin_class_init), (gst_bin_get_state_func),
index d34951a..49c8321 100644 (file)
@@ -39,7 +39,7 @@ libgstcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
 
 noinst_HEADERS =               \
        gstbufferstore.h        \
-    gstcapsfilter.h            \
+       gstcapsfilter.h         \
        gstfakesink.h           \
        gstfakesrc.h            \
        gstfdsrc.h              \
index 74cdaf3..b85b69e 100644 (file)
@@ -66,8 +66,6 @@ struct _GstMultiQueue {
                        /* GstMultiQueueSize, counter and highid */
 
   gint nextnotlinked;  /* ID of the next queue not linked (-1 : none) */
-  
-  gpointer _gst_reserved[GST_PADDING_LARGE];
 };
 
 struct _GstMultiQueueClass {
@@ -76,8 +74,6 @@ struct _GstMultiQueueClass {
   /* signals emitted when ALL queues are either full or empty */
   void (*underrun)     (GstMultiQueue *queue);
   void (*overrun)      (GstMultiQueue *queue);
-
-  gpointer _gst_reserved[GST_PADDING_LARGE];
 };
 
 GType gst_multi_queue_get_type (void);
index 524a0fb..8ed5af8 100644 (file)
@@ -103,8 +103,6 @@ struct _GstQueue {
   GMutex *qlock;       /* lock for queue (vs object lock) */
   GCond *item_add;     /* signals buffers now available for reading */
   GCond *item_del;     /* signals space now available for writing */
-
-  gpointer _gst_reserved[GST_PADDING];
 };
 
 struct _GstQueueClass {
@@ -117,8 +115,6 @@ struct _GstQueueClass {
   void (*overrun)      (GstQueue *queue);
 
   void (*pushing)      (GstQueue *queue);
-
-  gpointer _gst_reserved[GST_PADDING];
 };
 
 GType gst_queue_get_type (void);