diff --git a/audio/channel_receive.cc b/audio/channel_receive.cc index 530ebf3905..3847add73f 100644 --- a/audio/channel_receive.cc +++ b/audio/channel_receive.cc @@ -809,8 +809,6 @@ CallReceiveStatistics ChannelReceive::GetRTCPStatistics() const { stats.cumulativeLost = rtp_stats.packets_lost; stats.jitterSamples = rtp_stats.jitter; - stats.rttMs = GetRTT(); - // Data counters. if (statistician) { stats.payload_bytes_rcvd = rtp_stats.packet_counter.payload_bytes; diff --git a/audio/channel_receive.h b/audio/channel_receive.h index ae9cd59db8..c3eca29006 100644 --- a/audio/channel_receive.h +++ b/audio/channel_receive.h @@ -53,7 +53,6 @@ class RtpRtcp; struct CallReceiveStatistics { unsigned int cumulativeLost; unsigned int jitterSamples; - int64_t rttMs; int64_t payload_bytes_rcvd = 0; int64_t header_and_padding_bytes_rcvd = 0; int packetsReceived;