mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
srt: Fix type of bytes-received-lost
The field is a uint64_t.
This commit is contained in:
parent
132e3a1af9
commit
d19b3fccb5
1 changed files with 1 additions and 1 deletions
|
@ -1510,7 +1510,7 @@ get_stats_for_srtsock (SRTSOCKET srtsock, gboolean is_sender)
|
|||
/* number of sent NAK packets */
|
||||
"packet-nack-sent", G_TYPE_INT, stats.pktSentNAK,
|
||||
"bytes-received", G_TYPE_UINT64, stats.byteRecvTotal,
|
||||
"bytes-received-lost", G_TYPE_INT, stats.byteRcvLossTotal,
|
||||
"bytes-received-lost", G_TYPE_UINT64, stats.byteRcvLossTotal,
|
||||
"receive-rate-mbps", G_TYPE_DOUBLE, stats.mbpsRecvRate,
|
||||
"negotiated-latency-ms", G_TYPE_INT, stats.msRcvTsbPdDelay, NULL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue