mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
doc: Various doc fixes for libgstreamer-base
* Fix function name in sections.txt * Add few missing or fix miss-named * Workaround gtk-doc being confused with non typedef types (loose track of public/private
This commit is contained in:
parent
48700c7791
commit
0e0a0c1b11
4 changed files with 10 additions and 2 deletions
|
@ -361,7 +361,7 @@ gst_base_transform_get_allocator
|
|||
gst_base_transform_get_buffer_pool
|
||||
gst_base_transform_reconfigure_sink
|
||||
gst_base_transform_reconfigure_src
|
||||
gst_base_transform_update_src
|
||||
gst_base_transform_update_src_caps
|
||||
|
||||
GST_BASE_TRANSFORM_SINK_NAME
|
||||
GST_BASE_TRANSFORM_SRC_NAME
|
||||
|
|
|
@ -156,6 +156,7 @@ typedef struct _GstBaseParsePrivate GstBaseParsePrivate;
|
|||
* The opaque #GstBaseParse data structure.
|
||||
*/
|
||||
struct _GstBaseParse {
|
||||
/*< public >*/
|
||||
GstElement element;
|
||||
|
||||
/*< protected >*/
|
||||
|
|
|
@ -30,7 +30,7 @@ typedef struct _GstNetControlMessageMeta GstNetControlMessageMeta;
|
|||
/**
|
||||
* GstNetControlMessageMeta:
|
||||
* @meta: the parent type
|
||||
* @addr: a #GSocketControlMessage stored as metadata
|
||||
* @message: a #GSocketControlMessage stored as metadata
|
||||
*
|
||||
* Buffer metadata for GSocket control messages, AKA ancillary data attached to
|
||||
* data sent across a socket.
|
||||
|
|
|
@ -43,6 +43,7 @@ typedef struct _GstPtpClockPrivate GstPtpClockPrivate;
|
|||
|
||||
/**
|
||||
* GstPtpClock:
|
||||
* @clock: parented to #GstSystemClock
|
||||
*
|
||||
* Opaque #GstPtpClock structure.
|
||||
*/
|
||||
|
@ -55,6 +56,12 @@ struct _GstPtpClock {
|
|||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
/**
|
||||
* GstPtpClockClass:
|
||||
* @parent_class: parented to #GstSystemClockClass
|
||||
*
|
||||
* Opaque #GstPtpClockClass structure.
|
||||
*/
|
||||
struct _GstPtpClockClass {
|
||||
GstSystemClockClass parent_class;
|
||||
|
||||
|
|
Loading…
Reference in a new issue