From: Tim-Philipp Müller Date: Wed, 1 Jul 2020 11:35:32 +0000 (+0100) Subject: avtp: documentation fixes X-Git-Tag: 1.19.3~507^2~1669 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c229127b43c7a9ae5d11bafc2504f67691a2ea6d;p=platform%2Fupstream%2Fgstreamer.git avtp: documentation fixes Unclear why hotdoc wants 'gstavtp' as the plugin name here, that's just wrong. Add since marker and mark private subclasses as plugin API so hotdoc knows they belong to the plugin and aren't external. Fix GstAvtpAafTstampMode get_type() function. --- diff --git a/docs/plugins/gst_plugins_cache.json b/docs/plugins/gst_plugins_cache.json index a89c8fe..cc487a4 100644 --- a/docs/plugins/gst_plugins_cache.json +++ b/docs/plugins/gst_plugins_cache.json @@ -2002,7 +2002,168 @@ }, "filename": "gstavtp", "license": "LGPL", - "other-types": {}, + "other-types": { + "GstAvtpAafTstampMode": { + "kind": "enum", + "values": [ + { + "desc": "Normal timestamping mode", + "name": "normal", + "value": "0" + }, + { + "desc": "Sparse timestamping mode", + "name": "sparse", + "value": "1" + } + ] + }, + "GstAvtpBaseDepayload": { + "hierarchy": [ + "GstAvtpBaseDepayload", + "GstElement", + "GstObject", + "GInitiallyUnowned", + "GObject" + ], + "kind": "object", + "properties": { + "streamid": { + "blurb": "Stream ID associated with the AVTPDU", + "conditionally-available": false, + "construct": false, + "construct-only": false, + "controllable": false, + "default": "12302652060662169600", + "max": "18446744073709551615", + "min": "0", + "mutable": "paused", + "readable": true, + "type": "guint64", + "writable": true + } + } + }, + "GstAvtpBasePayload": { + "hierarchy": [ + "GstAvtpBasePayload", + "GstElement", + "GstObject", + "GInitiallyUnowned", + "GObject" + ], + "kind": "object", + "properties": { + "mtt": { + "blurb": "Maximum Transit Time (MTT) in nanoseconds", + "conditionally-available": false, + "construct": false, + "construct-only": false, + "controllable": false, + "default": "50000000", + "max": "-1", + "min": "0", + "mutable": "null", + "readable": true, + "type": "guint", + "writable": true + }, + "processing-deadline": { + "blurb": "Maximum amount of time (in ns) the pipeline can take for processing the buffer", + "conditionally-available": false, + "construct": false, + "construct-only": false, + "controllable": false, + "default": "20000000", + "max": "18446744073709551615", + "min": "0", + "mutable": "null", + "readable": true, + "type": "guint64", + "writable": true + }, + "streamid": { + "blurb": "Stream ID associated with the AVTPDU", + "conditionally-available": false, + "construct": false, + "construct-only": false, + "controllable": false, + "default": "12302652060662169600", + "max": "18446744073709551615", + "min": "0", + "mutable": "ready", + "readable": true, + "type": "guint64", + "writable": true + }, + "tu": { + "blurb": "Timing Uncertainty (TU) in nanoseconds", + "conditionally-available": false, + "construct": false, + "construct-only": false, + "controllable": false, + "default": "1000000", + "max": "-1", + "min": "0", + "mutable": "null", + "readable": true, + "type": "guint", + "writable": true + } + } + }, + "GstAvtpCrfBase": { + "hierarchy": [ + "GstAvtpCrfBase", + "GstBaseTransform", + "GstElement", + "GstObject", + "GInitiallyUnowned", + "GObject" + ], + "kind": "object", + "properties": { + "address": { + "blurb": "Destination MAC address expected on the Ethernet frames", + "conditionally-available": false, + "construct": false, + "construct-only": false, + "controllable": false, + "default": "01:AA:AA:AA:AA:AA", + "mutable": "ready", + "readable": true, + "type": "gchararray", + "writable": true + }, + "ifname": { + "blurb": "Network interface utilized to receive CRF AVTPDUs", + "conditionally-available": false, + "construct": false, + "construct-only": false, + "controllable": false, + "default": "eth0", + "mutable": "ready", + "readable": true, + "type": "gchararray", + "writable": true + }, + "streamid": { + "blurb": "Stream ID associated with the CRF AVTPDU", + "conditionally-available": false, + "construct": false, + "construct-only": false, + "controllable": false, + "default": "12302652060662173696", + "max": "18446744073709551615", + "min": "0", + "mutable": "ready", + "readable": true, + "type": "guint64", + "writable": true + } + } + } + }, "package": "GStreamer Bad Plug-ins", "source": "gst-plugins-bad", "tracers": {}, diff --git a/ext/avtp/gstavtp.c b/ext/avtp/gstavtp.c index 9ece65f..a587d1c 100644 --- a/ext/avtp/gstavtp.c +++ b/ext/avtp/gstavtp.c @@ -20,7 +20,7 @@ */ /** - * plugin-avtp: + * plugin-gstavtp: * * ## Audio Video Transport Protocol (AVTP) Plugin * @@ -226,6 +226,7 @@ * a malicious software do it for Denial of Service attempts, or other * compromises attempts. * + * Since: 1.18 */ #ifdef HAVE_CONFIG_H #include diff --git a/ext/avtp/gstavtpaafpay.c b/ext/avtp/gstavtpaafpay.c index fd6b1e6..e51ac65 100644 --- a/ext/avtp/gstavtpaafpay.c +++ b/ext/avtp/gstavtpaafpay.c @@ -66,17 +66,23 @@ static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink", static GType gst_avtp_aaf_tstamp_mode_get_type (void) { - static GType tstamp_mode_type = 0; static const GEnumValue tstamp_mode_types[] = { {GST_AVTP_AAF_TSTAMP_MODE_NORMAL, "Normal timestamping mode", "normal"}, {GST_AVTP_AAF_TSTAMP_MODE_SPARSE, "Sparse timestamping mode", "sparse"}, {0, NULL, NULL}, }; + static gsize id = 0; - tstamp_mode_type = - g_enum_register_static ("GstAvtpAafTstampMode", tstamp_mode_types); + if (g_once_init_enter (&id)) { + GType new_type; - return tstamp_mode_type; + new_type = + g_enum_register_static ("GstAvtpAafTstampMode", tstamp_mode_types); + + g_once_init_leave (&id, (gsize) new_type); + } + + return (GType) id; } #define gst_avtp_aaf_pay_parent_class parent_class @@ -129,6 +135,8 @@ gst_avtp_aaf_pay_class_init (GstAvtpAafPayClass * klass) GST_DEBUG_CATEGORY_INIT (avtpaafpay_debug, "avtpaafpay", 0, "AAF AVTP Payloader"); + + gst_type_mark_as_plugin_api (GST_TYPE_AVTP_AAF_TSTAMP_MODE, 0); } static void diff --git a/ext/avtp/gstavtpbasedepayload.c b/ext/avtp/gstavtpbasedepayload.c index 420911e..4ee2f61 100644 --- a/ext/avtp/gstavtpbasedepayload.c +++ b/ext/avtp/gstavtpbasedepayload.c @@ -97,6 +97,8 @@ gst_avtp_base_depayload_class_init (GstAvtpBaseDepayloadClass * klass) GST_DEBUG_CATEGORY_INIT (avtpbasedepayload_debug, "avtpbasedepayload", 0, "Base class for AVTP depayloaders"); + + gst_type_mark_as_plugin_api (GST_TYPE_AVTP_BASE_DEPAYLOAD, 0); } static void diff --git a/ext/avtp/gstavtpbasepayload.c b/ext/avtp/gstavtpbasepayload.c index c75ea65..aa3af39 100644 --- a/ext/avtp/gstavtpbasepayload.c +++ b/ext/avtp/gstavtpbasepayload.c @@ -115,6 +115,8 @@ gst_avtp_base_payload_class_init (GstAvtpBasePayloadClass * klass) GST_DEBUG_CATEGORY_INIT (avtpbasepayload_debug, "avtpbasepayload", 0, "Base class for AVTP payloaders"); + + gst_type_mark_as_plugin_api (GST_TYPE_AVTP_BASE_PAYLOAD, 0); } static void diff --git a/ext/avtp/gstavtpcrfbase.c b/ext/avtp/gstavtpcrfbase.c index 26109f7..8baf29f 100644 --- a/ext/avtp/gstavtpcrfbase.c +++ b/ext/avtp/gstavtpcrfbase.c @@ -112,6 +112,8 @@ gst_avtp_crf_base_class_init (GstAvtpCrfBaseClass * klass) gst_element_class_add_static_pad_template (element_class, &src_template); GST_DEBUG_CATEGORY_INIT (avtpcrfbase_debug, "avtpcrfbase", 0, "CRF Base"); + + gst_type_mark_as_plugin_api (GST_TYPE_AVTP_CRF_BASE, 0); } static void