Exclude RTX from pacer delay plots

This is because padding (sent as RTX) makes the plot unreadable.

TBR=terelius@webrtc.org

Bug: None
Change-Id: Iddf681eab6ec826c6f3c620aac65e2bd6f31b895
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/133182
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27641}
This commit is contained in:
Konrad Hofbauer
2019-04-16 11:12:11 +02:00
committed by Commit Bot
parent 70c2db1aa0
commit bfb735b5a1

View File

@ -1487,6 +1487,10 @@ void EventLogAnalyzer::CreatePacerDelayGraph(Plot* plot) {
const std::vector<LoggedRtpPacketOutgoing>& packets =
stream.outgoing_packets;
if (IsRtxSsrc(kOutgoingPacket, stream.ssrc)) {
continue;
}
if (packets.size() < 2) {
RTC_LOG(LS_WARNING)
<< "Can't estimate a the RTP clock frequency or the "