rtpsession: Fix collection of statistics

Stats should be collected on the media rtp source not in the
sender one.

https://bugzilla.gnome.org/show_bug.cgi?id=749669
This commit is contained in:
Santiago Carot-Nemesio 2015-05-21 09:35:58 +02:00 committed by Sebastian Dröge
parent 27c91bc881
commit 2fb1fe2ee3

View file

@ -2390,8 +2390,6 @@ rtp_session_process_pli (RTPSession * sess, guint32 sender_ssrc,
return;
rtp_session_request_local_key_unit (sess, src, FALSE, current_time);
src->stats.recv_pli_count++;
}
static void
@ -2448,7 +2446,6 @@ rtp_session_process_fir (RTPSession * sess, guint32 sender_ssrc,
return;
rtp_session_request_local_key_unit (sess, src, TRUE, current_time);
src->stats.recv_fir_count++;
}
static void
@ -2531,10 +2528,12 @@ rtp_session_process_feedback (RTPSession * sess, GstRTCPPacket * packet,
case GST_RTCP_TYPE_PSFB:
switch (fbtype) {
case GST_RTCP_PSFB_TYPE_PLI:
src->stats.recv_pli_count++;
rtp_session_process_pli (sess, sender_ssrc, media_ssrc,
current_time);
break;
case GST_RTCP_PSFB_TYPE_FIR:
src->stats.recv_fir_count++;
rtp_session_process_fir (sess, sender_ssrc, fci_data, fci_length,
current_time);
break;