From: Sangchul Lee Date: Mon, 4 Apr 2022 07:14:03 +0000 (+0900) Subject: webrtc_stats: Update description as per the GStreamer's update X-Git-Tag: submit/tizen/20220426.020921~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c175ab51cc08760034dfbe8b4c91c5e10db3e584;p=platform%2Fcore%2Fapi%2Fwebrtc.git webrtc_stats: Update description as per the GStreamer's update [Version] 0.3.84 [Issue Type] Documentation Change-Id: I4ad0c0acd8bb3004a8ef860c9e448403b0af3b2d Signed-off-by: Sangchul Lee --- diff --git a/packaging/capi-media-webrtc.spec b/packaging/capi-media-webrtc.spec index 2e3aa646..3a73cfe7 100644 --- a/packaging/capi-media-webrtc.spec +++ b/packaging/capi-media-webrtc.spec @@ -1,6 +1,6 @@ Name: capi-media-webrtc Summary: A WebRTC library in Tizen Native API -Version: 0.3.83 +Version: 0.3.84 Release: 0 Group: Multimedia/API License: Apache-2.0 diff --git a/src/webrtc_stats.c b/src/webrtc_stats.c index ccbc36e7..b81501d1 100644 --- a/src/webrtc_stats.c +++ b/src/webrtc_stats.c @@ -86,7 +86,7 @@ static stats_field_s __stats_rtp_stream_fields[] = { * RTCReceivedStreamStats supported fields (https://w3c.github.io/webrtc-stats/#receivedrtpstats-dict*) * * "packets-received" G_TYPE_UINT64 number of packets received (only for local inbound) - * "packets-lost" G_TYPE_UINT64 number of packets lost + * "packets-lost" G_TYPE_INT64 number of packets lost * "packets-discarded" G_TYPE_UINT64 number of packets discarded * "packets-repaired" G_TYPE_UINT64 number of packets repaired * "jitter" G_TYPE_DOUBLE packet jitter measured in seconds @@ -107,9 +107,9 @@ static stats_field_s __stats_received_rtp_stream_fields[] = { * "remote-id" G_TYPE_STRING identifier for the associated RTCRemoteOutboundRTPStreamStats * "bytes-received" G_TYPE_UINT64 number of bytes received (only for local inbound) * "packets-duplicated" G_TYPE_UINT64 number of packets duplicated - * "fir-count" G_TYPE_UINT FIR requests sent by the receiver - * "pli-count" G_TYPE_UINT PLI requests sent by the receiver - * "nack-count" G_TYPE_UINT NACK requests sent by the receiver + * "fir-count" G_TYPE_UINT FIR packets sent by the receiver + * "pli-count" G_TYPE_UINT PLI packets sent by the receiver + * "nack-count" G_TYPE_UINT NACK packets sent by the receiver */ static stats_field_s __stats_inbound_rtp_stream_fields[] = { { "remote-id", WEBRTC_STATS_PROP_REMOTE_ID, 0 }, @@ -157,7 +157,7 @@ static stats_field_s __stats_outbound_rtp_stream_fields[] = { * * "local-id" G_TYPE_STRING identifier for the associated RTCOutboundRTPSTreamStats * "round-trip-time" G_TYPE_DOUBLE round trip time of packets measured in seconds - * "fraction-lost" G_TYPE_DOUBLE the fraction packet loss reported for this SSRC + * "fraction-lost" G_TYPE_DOUBLE fraction packet loss */ static stats_field_s __stats_remote_inbound_rtp_stream_fields[] = { { "local-id", WEBRTC_STATS_PROP_LOCAL_ID, 0 }, @@ -171,7 +171,7 @@ static stats_field_s __stats_remote_inbound_rtp_stream_fields[] = { * RTCRemoteOutboundRTPStreamStats supported fields (https://w3c.github.io/webrtc-stats/#remoteoutboundrtpstats-dict*) * * "local-id" G_TYPE_STRING identifier for the associated RTCInboundRTPSTreamStats - * "remote-timestamp" G_TYPE_DOUBLE the remote timestamp at which these statistics were sent by the remote endpoint + * "remote-timestamp" G_TYPE_DOUBLE remote timestamp the statistics were sent by the remote */ static stats_field_s __stats_remote_outbound_rtp_stream_fields[] = { { "local-id", WEBRTC_STATS_PROP_LOCAL_ID, 0 },