From cf0ffd86930d02e13a9a8d8770b40e0be4bec4d9 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Tue, 9 Apr 2019 10:46:39 +0200 Subject: [PATCH] rtpsource: clarify meaning of the octets-sent and octets-received stats The octets-send and octets-received stats count the payload bytes excluding RTP and lower level headers, clarify that in the documentation. --- gst/rtpmanager/rtpsource.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c index da357eec9c..f4755c7130 100644 --- a/gst/rtpmanager/rtpsource.c +++ b/gst/rtpmanager/rtpsource.c @@ -161,13 +161,13 @@ rtp_source_class_init (RTPSourceClass * klass) * The following fields make sense for internal sources and will only increase * when "is-sender" is TRUE. * - * "octets-sent" G_TYPE_UINT64 number of bytes we sent + * "octets-sent" G_TYPE_UINT64 number of payload bytes we sent * "packets-sent" G_TYPE_UINT64 number of packets we sent * * The following fields make sense for non-internal sources and will only * increase when "is-sender" is TRUE. * - * "octets-received" G_TYPE_UINT64 total number of bytes received + * "octets-received" G_TYPE_UINT64 total number of payload bytes received * "packets-received" G_TYPE_UINT64 total number of packets received * "bytes-received" G_TYPE_UINT64 total number of bytes received including lower level headers overhead *