diff --git a/gst/rtpmanager/gstrtpjitterbuffer.c b/gst/rtpmanager/gstrtpjitterbuffer.c index dd458dea2e..547bef5e4b 100644 --- a/gst/rtpmanager/gstrtpjitterbuffer.c +++ b/gst/rtpmanager/gstrtpjitterbuffer.c @@ -666,10 +666,36 @@ gst_rtp_jitter_buffer_class_init (GstRtpJitterBufferClass * klass) * Various jitterbuffer statistics. This property returns a GstStructure * with name application/x-rtp-jitterbuffer-stats with the following fields: * - * "rtx-count" G_TYPE_UINT64 The number of retransmissions requested - * "rtx-success-count" G_TYPE_UINT64 The number of successful retransmissions - * "rtx-per-packet" G_TYPE_DOUBLE Average number of RTX per packet - * "rtx-rtt" G_TYPE_UINT64 Average round trip time per RTX + * + * + * + * #guint64 + * "rtx-count": + * the number of retransmissions requested. + * + * + * + * + * #guint64 + * "rtx-success-count": + * the number of successful retransmissions. + * + * + * + * + * #gdouble + * "rtx-per-packet": + * average number of RTX per packet. + * + * + * + * + * #guint64 + * "rtx-rtt": + * average round trip time per RTX. + * + * + * * * Since: 1.4 */