Home | History | Annotate | Download | only in voice_engine

Lines Matching refs:statistics

34 #include "webrtc/voice_engine/statistics.h"
45 // Extend the default RTCP statistics struct with max_jitter, defined as the
54 // Statistics callback, called at each generation of a new RTCP report block.
62 virtual void StatisticsUpdated(const RtcpStatistics& statistics,
68 stats_.rtcp = statistics;
69 if (statistics.jitter > stats_.max_jitter) {
70 stats_.max_jitter = statistics.jitter;
1219 Channel::SetEngineInformation(Statistics& engineStatistics,
3278 "GetRemoteRTCPData() failed to measure statistics due"
3375 // The jitter statistics is updated for each received RTP packet and is
3383 // Don't use returned statistics, use data from proxy instead so that
3393 // Scale RTP statistics given the current playout frequency
3450 // The jitter statistics is updated for each received RTP packet and is
3452 statistics;
3456 &statistics, _rtpRtcpModule->RTCP() == kRtcpOff)) {
3459 "GetRTPStatistics() failed to read RTP statistics from the "
3463 stats.fractionLost = statistics.fraction_lost;
3464 stats.cumulativeLost = statistics.cumulative_lost;
3465 stats.extendedMax = statistics.extended_max_sequence_number;
3466 stats.jitterSamples = statistics.jitter;