FS-11635: decrement RTCP counters on duplicate received NACKed packet which is dropped anyway

(affects cum_lost calculation)
This commit is contained in:
Dragos Oancea 2019-02-27 06:04:11 +00:00
parent a8d7c72084
commit 133b42b1e9
1 changed files with 4 additions and 0 deletions

View File

@ -6146,6 +6146,10 @@ static switch_status_t read_rtp_packet(switch_rtp_t *rtp_session, switch_size_t
stat = 0;
sbytes = 0;
*bytes = 0;
if (rtp_session->stats.rtcp.pkt_count) {
rtp_session->stats.rtcp.period_pkt_count--;
rtp_session->stats.rtcp.pkt_count--;
}
switch_mutex_unlock(rtp_session->ice_mutex);
goto more;
}