From 79efd372c12ae9117f3863d756296a22a4010c0f Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sat, 2 Jan 2021 13:06:16 +0530 Subject: [PATCH] udpsrc: Fix marker links These should be with a single ':'. The double '::' results in a CI with build failure message like below. ERROR: [links]: (mandatory-link-not-found): Mandatory link Link GstSocketTimestamp -> None (GstSocketTimestamp) could not be resolved ERROR: [check-missing-since-markers]: (missing-since-marker): Missing since marker for udpsrc:socket-timestamp Part-of: --- gst/udp/gstudpsrc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c index 87ef7b5..2054d38 100644 --- a/gst/udp/gstudpsrc.c +++ b/gst/udp/gstudpsrc.c @@ -715,7 +715,7 @@ gst_udpsrc_class_init (GstUDPSrcClass * klass) "multicast-group property for now", UDP_DEFAULT_MULTICAST_GROUP, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** - * GstUDPSrc::loop: + * GstUDPSrc:loop: * * Can be used to disable multicast loopback. * @@ -727,7 +727,7 @@ gst_udpsrc_class_init (GstUDPSrcClass * klass) " FALSE = disable", UDP_DEFAULT_LOOP, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** - * GstUDPSrc::retrieve-sender-address: + * GstUDPSrc:retrieve-sender-address: * * Whether to retrieve the sender address and add it to the buffers as * meta. Disabling this might result in minor performance improvements @@ -743,7 +743,7 @@ gst_udpsrc_class_init (GstUDPSrcClass * klass) "in certain scenarios", UDP_DEFAULT_RETRIEVE_SENDER_ADDRESS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** - * GstUDPSrc::mtu: + * GstUDPSrc:mtu: * * Maximum expected packet size. This directly defines the allocation * size of the receive buffer pool. -- 2.7.4