mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
rtpstats: Use the same lower limit for RTCP bandwidth to stop sending RTCP everywhere
https://bugzilla.gnome.org/show_bug.cgi?id=747863
This commit is contained in:
parent
7596ed91b8
commit
475b1e607e
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ rtp_stats_calculate_rtcp_interval (RTPSessionStats * stats, gboolean we_send,
|
|||
|
||||
/* no bandwidth for RTCP, return NONE to signal that we don't want to send
|
||||
* RTCP packets */
|
||||
if (rtcp_bw <= 0.00001)
|
||||
if (rtcp_bw <= 0.0001)
|
||||
return GST_CLOCK_TIME_NONE;
|
||||
|
||||
avg_rtcp_size = stats->avg_rtcp_packet_size;
|
||||
|
|
Loading…
Reference in a new issue