mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
docs: fix gtk-doc /*< private >*/ marker
This commit is contained in:
parent
480b92006d
commit
4d76b175ef
8 changed files with 16 additions and 17 deletions
|
@ -141,7 +141,6 @@ struct _GstBufferList
|
|||
{
|
||||
GstMiniObject mini_object;
|
||||
|
||||
/*< private > */
|
||||
GList *buffers;
|
||||
};
|
||||
|
||||
|
|
|
@ -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];
|
||||
};
|
||||
|
||||
|
|
|
@ -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];
|
||||
};
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ struct _GstElementDetails
|
|||
gchar *description;
|
||||
gchar *author;
|
||||
|
||||
/*< private > */
|
||||
/*< private >*/
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
|
|
|
@ -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];
|
||||
};
|
||||
|
||||
|
|
|
@ -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];
|
||||
};
|
||||
|
||||
|
|
|
@ -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];
|
||||
};
|
||||
|
||||
|
|
|
@ -107,7 +107,7 @@ struct _GstDataQueue
|
|||
{
|
||||
GObject object;
|
||||
|
||||
/*< private > */
|
||||
/*< private >*/
|
||||
/* the queue of data we're keeping our grubby hands on */
|
||||
GQueue *queue;
|
||||
|
||||
|
|
Loading…
Reference in a new issue