mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
plugins/elements/: These are not installed headers, no need for padding.
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.
This commit is contained in:
parent
65ef6ed5a4
commit
5c9c202e47
4 changed files with 8 additions and 9 deletions
|
@ -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),
|
||||
|
|
|
@ -39,7 +39,7 @@ libgstcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|||
|
||||
noinst_HEADERS = \
|
||||
gstbufferstore.h \
|
||||
gstcapsfilter.h \
|
||||
gstcapsfilter.h \
|
||||
gstfakesink.h \
|
||||
gstfakesrc.h \
|
||||
gstfdsrc.h \
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue