Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
luzpaz
gstreamer
Commits
4290fca3
Commit
4290fca3
authored
Feb 04, 2004
by
Thomas Vander Stichele
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
increment current, reset padding
Original commit message from CVS: increment current, reset padding
parent
16cfcc2d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
6 deletions
+14
-6
ChangeLog
ChangeLog
+8
-0
configure.ac
configure.ac
+1
-1
gst/gstelement.h
gst/gstelement.h
+1
-1
gst/gstpad.h
gst/gstpad.h
+2
-2
gst/gstqueue.h
gst/gstqueue.h
+1
-1
plugins/elements/gstqueue.h
plugins/elements/gstqueue.h
+1
-1
No files found.
ChangeLog
View file @
4290fca3
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:
...
...
configure.ac
View file @
4290fca3
...
...
@@ -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])
...
...
gst/gstelement.h
View file @
4290fca3
...
...
@@ -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
);
...
...
gst/gstpad.h
View file @
4290fca3
...
...
@@ -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
{
...
...
gst/gstqueue.h
View file @
4290fca3
...
...
@@ -90,7 +90,7 @@ struct _GstQueue {
GstCaps
*
negotiated_caps
;
gpointer
_gst_reserved
[
GST_PADDING
-
1
];
gpointer
_gst_reserved
[
GST_PADDING
];
};
struct
_GstQueueClass
{
...
...
plugins/elements/gstqueue.h
View file @
4290fca3
...
...
@@ -90,7 +90,7 @@ struct _GstQueue {
GstCaps
*
negotiated_caps
;
gpointer
_gst_reserved
[
GST_PADDING
-
1
];
gpointer
_gst_reserved
[
GST_PADDING
];
};
struct
_GstQueueClass
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment