Don't visualize incoming packets in pacer delay graph.
The difference between capture time and the log time for incoming packets include the network delay, so it is misleading to show them in the pacer delay graph. Bug: webrtc:8508 Change-Id: Ib2e727f7d2971c66ccf9693cb1a92e066e169bed Reviewed-on: https://webrtc-review.googlesource.com/21326 Reviewed-by: Niels Moller <nisse@webrtc.org> Commit-Queue: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20642}
This commit is contained in:

committed by
Commit Bot

parent
3e9e5b39d1
commit
b87c27ebc4
@ -1507,6 +1507,8 @@ void EventLogAnalyzer::CreatePacerDelayGraph(Plot* plot) {
|
||||
for (const auto& kv : rtp_packets_) {
|
||||
const std::vector<LoggedRtpPacket>& packets = kv.second;
|
||||
StreamId stream_id = kv.first;
|
||||
if (stream_id.GetDirection() == kIncomingPacket)
|
||||
continue;
|
||||
|
||||
if (packets.size() < 2) {
|
||||
RTC_LOG(LS_WARNING)
|
||||
|
Reference in New Issue
Block a user