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:
Nicolas Dufresne 2015-06-14 10:56:28 -04:00
parent 48700c7791
commit 0e0a0c1b11
4 changed files with 10 additions and 2 deletions

View file

@ -361,7 +361,7 @@ gst_base_transform_get_allocator
gst_base_transform_get_buffer_pool gst_base_transform_get_buffer_pool
gst_base_transform_reconfigure_sink gst_base_transform_reconfigure_sink
gst_base_transform_reconfigure_src gst_base_transform_reconfigure_src
gst_base_transform_update_src gst_base_transform_update_src_caps
GST_BASE_TRANSFORM_SINK_NAME GST_BASE_TRANSFORM_SINK_NAME
GST_BASE_TRANSFORM_SRC_NAME GST_BASE_TRANSFORM_SRC_NAME

View file

@ -156,6 +156,7 @@ typedef struct _GstBaseParsePrivate GstBaseParsePrivate;
* The opaque #GstBaseParse data structure. * The opaque #GstBaseParse data structure.
*/ */
struct _GstBaseParse { struct _GstBaseParse {
/*< public >*/
GstElement element; GstElement element;
/*< protected >*/ /*< protected >*/

View file

@ -30,7 +30,7 @@ typedef struct _GstNetControlMessageMeta GstNetControlMessageMeta;
/** /**
* GstNetControlMessageMeta: * GstNetControlMessageMeta:
* @meta: the parent type * @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 * Buffer metadata for GSocket control messages, AKA ancillary data attached to
* data sent across a socket. * data sent across a socket.

View file

@ -43,6 +43,7 @@ typedef struct _GstPtpClockPrivate GstPtpClockPrivate;
/** /**
* GstPtpClock: * GstPtpClock:
* @clock: parented to #GstSystemClock
* *
* Opaque #GstPtpClock structure. * Opaque #GstPtpClock structure.
*/ */
@ -55,6 +56,12 @@ struct _GstPtpClock {
gpointer _gst_reserved[GST_PADDING]; gpointer _gst_reserved[GST_PADDING];
}; };
/**
* GstPtpClockClass:
* @parent_class: parented to #GstSystemClockClass
*
* Opaque #GstPtpClockClass structure.
*/
struct _GstPtpClockClass { struct _GstPtpClockClass {
GstSystemClockClass parent_class; GstSystemClockClass parent_class;