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
4d76b175
Commit
4d76b175
authored
Jun 09, 2009
by
Tim-Philipp Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: fix gtk-doc /*< private >*/ marker
parent
480b9200
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
17 deletions
+16
-17
gst/gstbufferlist.c
gst/gstbufferlist.c
+0
-1
gst/gstbus.h
gst/gstbus.h
+3
-3
gst/gstchildproxy.h
gst/gstchildproxy.h
+2
-2
gst/gstelementfactory.h
gst/gstelementfactory.h
+1
-1
gst/gstghostpad.h
gst/gstghostpad.h
+4
-4
gst/gstmessage.h
gst/gstmessage.h
+3
-3
gst/gstquery.h
gst/gstquery.h
+2
-2
libs/gst/base/gstdataqueue.h
libs/gst/base/gstdataqueue.h
+1
-1
No files found.
gst/gstbufferlist.c
View file @
4d76b175
...
...
@@ -141,7 +141,6 @@ struct _GstBufferList
{
GstMiniObject
mini_object
;
/*< private > */
GList
*
buffers
;
};
...
...
gst/gstbus.h
View file @
4d76b175
...
...
@@ -114,7 +114,7 @@ struct _GstBus
{
GstObject
object
;
/*< private >
*/
/*< private >*/
GQueue
*
queue
;
GMutex
*
queue_lock
;
...
...
@@ -124,7 +124,7 @@ struct _GstBus
guint
signal_watch_id
;
guint
num_signal_watchers
;
/*< private >
*/
/*< private >*/
GstBusPrivate
*
priv
;
gpointer
_gst_reserved
[
GST_PADDING
-
1
];
};
...
...
@@ -137,7 +137,7 @@ struct _GstBusClass
void
(
*
message
)
(
GstBus
*
bus
,
GstMessage
*
message
);
void
(
*
sync_message
)
(
GstBus
*
bus
,
GstMessage
*
message
);
/*< private >
*/
/*< private >*/
gpointer
_gst_reserved
[
GST_PADDING
];
};
...
...
gst/gstchildproxy.h
View file @
4d76b175
...
...
@@ -56,12 +56,12 @@ struct _GstChildProxyInterface
/* methods */
GstObject
*
(
*
get_child_by_index
)
(
GstChildProxy
*
parent
,
guint
index
);
guint
(
*
get_children_count
)
(
GstChildProxy
*
parent
);
/*< private >
*/
/*< private >*/
/* signals */
void
(
*
child_added
)
(
GstChildProxy
*
parent
,
GstObject
*
child
);
void
(
*
child_removed
)
(
GstChildProxy
*
parent
,
GstObject
*
child
);
/*< private >
*/
/*< private >*/
gpointer
_gst_reserved
[
GST_PADDING
];
};
...
...
gst/gstelementfactory.h
View file @
4d76b175
...
...
@@ -65,7 +65,7 @@ struct _GstElementDetails
gchar
*
description
;
gchar
*
author
;
/*< private >
*/
/*< private >*/
gpointer
_gst_reserved
[
GST_PADDING
];
};
...
...
gst/gstghostpad.h
View file @
4d76b175
...
...
@@ -45,7 +45,7 @@ struct _GstProxyPad
{
GstPad
pad
;
/*< private >
*/
/*< private >*/
GstProxyPadPrivate
*
priv
;
};
...
...
@@ -53,7 +53,7 @@ struct _GstProxyPadClass
{
GstPadClass
parent_class
;
/*< private >
*/
/*< private >*/
gpointer
_gst_reserved
[
1
];
};
...
...
@@ -80,7 +80,7 @@ struct _GstGhostPad
{
GstProxyPad
pad
;
/*< private >
*/
/*< private >*/
GstGhostPadPrivate
*
priv
;
};
...
...
@@ -88,7 +88,7 @@ struct _GstGhostPadClass
{
GstProxyPadClass
parent_class
;
/*< private >
*/
/*< private >*/
gpointer
_gst_reserved
[
GST_PADDING
];
};
...
...
gst/gstmessage.h
View file @
4d76b175
...
...
@@ -250,7 +250,7 @@ struct _GstMessage
{
GstMiniObject
mini_object
;
/*< private >
*//* with MESSAGE_LOCK */
/*< private >*//* with MESSAGE_LOCK */
GMutex
*
lock
;
/* lock and cond for async delivery */
GCond
*
cond
;
...
...
@@ -261,7 +261,7 @@ struct _GstMessage
GstStructure
*
structure
;
/*< private >
*/
/*< private >*/
union
{
struct
{
guint32
seqnum
;
...
...
@@ -274,7 +274,7 @@ struct _GstMessage
struct
_GstMessageClass
{
GstMiniObjectClass
mini_object_class
;
/*< private >
*/
/*< private >*/
gpointer
_gst_reserved
[
GST_PADDING
];
};
...
...
gst/gstquery.h
View file @
4d76b175
...
...
@@ -154,14 +154,14 @@ struct _GstQuery
GstStructure
*
structure
;
/*< private >
*/
/*< private >*/
gpointer
_gst_reserved
;
};
struct
_GstQueryClass
{
GstMiniObjectClass
mini_object_class
;
/*< private >
*/
/*< private >*/
gpointer
_gst_reserved
[
GST_PADDING
];
};
...
...
libs/gst/base/gstdataqueue.h
View file @
4d76b175
...
...
@@ -107,7 +107,7 @@ struct _GstDataQueue
{
GObject
object
;
/*< private >
*/
/*< private >*/
/* the queue of data we're keeping our grubby hands on */
GQueue
*
queue
;
...
...
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