mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
increment current, reset padding
Original commit message from CVS: increment current, reset padding
This commit is contained in:
parent
16cfcc2d33
commit
4290fca331
6 changed files with 14 additions and 6 deletions
|
@ -1,3 +1,11 @@
|
|||
2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
* gst/gstelement.h:
|
||||
* gst/gstpad.h:
|
||||
* gst/gstqueue.h:
|
||||
upgrade libtool CURRENT, reset padding
|
||||
|
||||
2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -26,7 +26,7 @@ dnl - library source changed -> increment REVISION
|
|||
dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
|
||||
dnl - interfaces added -> increment AGE
|
||||
dnl - interfaces removed -> AGE = 0
|
||||
AS_LIBTOOL(GST, 5, 0, 0)
|
||||
AS_LIBTOOL(GST, 6, 0, 0)
|
||||
AM_PROG_LIBTOOL
|
||||
|
||||
AC_CONFIG_SRCDIR([gst/gst.c])
|
||||
|
|
|
@ -244,7 +244,7 @@ struct _GstElementClass {
|
|||
void (*set_index) (GstElement *element, GstIndex *index);
|
||||
|
||||
GstElementStateReturn (*set_state) (GstElement *element, GstElementState state);
|
||||
gpointer _gst_reserved[GST_PADDING - 1];
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
void gst_element_class_add_pad_template (GstElementClass *klass, GstPadTemplate *templ);
|
||||
|
|
|
@ -203,7 +203,7 @@ struct _GstRealPad {
|
|||
GstPadLink *link;
|
||||
GstCaps *explicit_caps;
|
||||
|
||||
gpointer _gst_reserved[GST_PADDING - 2];
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
struct _GstRealPadClass {
|
||||
|
@ -216,7 +216,7 @@ struct _GstRealPadClass {
|
|||
void (*unlinked) (GstPad *pad, GstPad *peer);
|
||||
GstPadFixateFunction appfixatefunc;
|
||||
|
||||
gpointer _gst_reserved[GST_PADDING - 1];
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
struct _GstGhostPad {
|
||||
|
|
|
@ -90,7 +90,7 @@ struct _GstQueue {
|
|||
|
||||
GstCaps *negotiated_caps;
|
||||
|
||||
gpointer _gst_reserved[GST_PADDING - 1];
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
struct _GstQueueClass {
|
||||
|
|
|
@ -90,7 +90,7 @@ struct _GstQueue {
|
|||
|
||||
GstCaps *negotiated_caps;
|
||||
|
||||
gpointer _gst_reserved[GST_PADDING - 1];
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
struct _GstQueueClass {
|
||||
|
|
Loading…
Reference in a new issue