mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
docs: fix more gtk-doc warnings
This commit is contained in:
parent
b06e86fb18
commit
f6d638153c
4 changed files with 18 additions and 3 deletions
|
@ -1942,6 +1942,7 @@ GST_PAD_ELEMENT_PRIVATE
|
|||
GST_PAD_PAD_TEMPLATE
|
||||
GST_PAD_DIRECTION
|
||||
GST_PAD_PEER
|
||||
GST_PAD_IS_ACCEPT_INTERSECT
|
||||
GST_PAD_IS_LINKED
|
||||
GST_PAD_IS_SRC
|
||||
GST_PAD_IS_SINK
|
||||
|
@ -1952,6 +1953,8 @@ GST_PAD_IS_PROXY_ALLOCATION
|
|||
GST_PAD_IS_PROXY_CAPS
|
||||
GST_PAD_IS_PROXY_SCHEDULING
|
||||
GST_PAD_NEEDS_PARENT
|
||||
GST_PAD_SET_ACCEPT_INTERSECT
|
||||
GST_PAD_UNSET_ACCEPT_INTERSECT
|
||||
GST_PAD_SET_PROXY_ALLOCATION
|
||||
GST_PAD_UNSET_PROXY_ALLOCATION
|
||||
GST_PAD_SET_PROXY_CAPS
|
||||
|
@ -2681,6 +2684,7 @@ GST_TAG_APPLICATION_DATA
|
|||
GST_TAG_IMAGE_ORIENTATION
|
||||
GST_TAG_PUBLISHER
|
||||
GST_TAG_INTERPRETED_BY
|
||||
GST_TAG_MIDI_BASE_NOTE
|
||||
|
||||
gst_tag_register
|
||||
gst_tag_register_static
|
||||
|
@ -3048,6 +3052,7 @@ GST_ROUND_UP_4
|
|||
GST_ROUND_UP_8
|
||||
GST_ROUND_UP_16
|
||||
GST_ROUND_UP_32
|
||||
GST_ROUND_UP_64
|
||||
GST_ROUND_UP_128
|
||||
GST_ROUND_UP_N
|
||||
GST_ROUND_DOWN_2
|
||||
|
@ -3068,6 +3073,9 @@ GFLOAT_FROM_LE
|
|||
GFLOAT_SWAP_LE_BE
|
||||
GFLOAT_TO_BE
|
||||
GFLOAT_TO_LE
|
||||
GUINT16_SWAP_LE_BE
|
||||
GUINT32_SWAP_LE_BE
|
||||
GUINT64_SWAP_LE_BE
|
||||
|
||||
|
||||
gst_guint64_to_gdouble
|
||||
|
|
|
@ -75,6 +75,11 @@ struct _GstControlBinding {
|
|||
/**
|
||||
* GstControlBindingClass:
|
||||
* @parent_class: Parent class
|
||||
* @sync_values: implementation for updating the target values
|
||||
* @get_value: implementation to fetch a single control-value
|
||||
* @get_value_array: implementation to fetch a series of control-values
|
||||
* @get_g_value_array: implementation to fetch a series of control-values
|
||||
* as g_values
|
||||
*
|
||||
* The class structure of #GstControlBinding.
|
||||
*/
|
||||
|
@ -83,7 +88,7 @@ struct _GstControlBindingClass
|
|||
{
|
||||
GstObjectClass parent_class;
|
||||
|
||||
/* virtual methods */
|
||||
/*< public >*/
|
||||
gboolean (* sync_values) (GstControlBinding *binding, GstObject *object, GstClockTime timestamp, GstClockTime last_sync);
|
||||
GValue * (* get_value) (GstControlBinding *binding, GstClockTime timestamp);
|
||||
gboolean (* get_value_array) (GstControlBinding *binding, GstClockTime timestamp,GstClockTime interval, guint n_values, gpointer values);
|
||||
|
|
|
@ -222,7 +222,9 @@ GST_EXPORT GQuark _gst_meta_tag_memory;
|
|||
* Deprecated: The GQuarks are not exported by any public API, use
|
||||
* GST_META_TAG_MEMORY_STR instead.
|
||||
*/
|
||||
#ifndef GST_DISABLE_DEPRECATED
|
||||
#define GST_META_TAG_MEMORY (_gst_meta_tag_memory)
|
||||
#endif
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
|
|
@ -844,7 +844,7 @@ gst_base_transform_default_decide_allocation (GstBaseTransform * trans,
|
|||
|
||||
/* by default we remove all metadata, subclasses should implement a
|
||||
* filter_meta function */
|
||||
if (gst_meta_api_type_has_tag (api, GST_META_TAG_MEMORY)) {
|
||||
if (gst_meta_api_type_has_tag (api, _gst_meta_tag_memory)) {
|
||||
/* remove all memory dependent metadata because we are going to have to
|
||||
* allocate different memory for input and output. */
|
||||
GST_LOG_OBJECT (trans, "removing memory specific metadata %s",
|
||||
|
@ -1682,7 +1682,7 @@ foreach_metadata (GstBuffer * inbuf, GstMeta ** meta, gpointer user_data)
|
|||
GST_DEBUG_OBJECT (trans, "not copying pooled metadata %s",
|
||||
g_type_name (info->api));
|
||||
do_copy = FALSE;
|
||||
} else if (gst_meta_api_type_has_tag (info->api, GST_META_TAG_MEMORY)) {
|
||||
} else if (gst_meta_api_type_has_tag (info->api, _gst_meta_tag_memory)) {
|
||||
/* never call the transform_meta with memory specific metadata */
|
||||
GST_DEBUG_OBJECT (trans, "not copying memory specific metadata %s",
|
||||
g_type_name (info->api));
|
||||
|
|
Loading…
Reference in a new issue