udpsrc: Fix marker links
authorSanchayan Maity <sanchayan@asymptotic.io>
Sat, 2 Jan 2021 07:36:16 +0000 (13:06 +0530)
committerArun Raghavan <arun@asymptotic.io>
Mon, 4 Jan 2021 20:23:22 +0000 (15:23 -0500)
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: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/828>

gst/udp/gstudpsrc.c

index 87ef7b5..2054d38 100644 (file)
@@ -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.