From: Sanchayan Maity Date: Sat, 2 Jan 2021 07:36:16 +0000 (+0530) Subject: udpsrc: Fix marker links X-Git-Tag: 1.19.3~509^2~318 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79efd372c12ae9117f3863d756296a22a4010c0f;p=platform%2Fupstream%2Fgstreamer.git 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: --- 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.