Home
last modified time | relevance | path

Searched refs:bwe_update (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/rtc_tools/rtc_event_log_visualizer/
Dalerts.cc206 for (auto& bwe_update : parsed_log.bwe_loss_updates()) { in AnalyzeLog() local
207 if (bwe_update.log_time_us() > segment_end_us) { in AnalyzeLog()
211 int64_t lost_packets = static_cast<double>(bwe_update.fraction_lost) / 255 * in AnalyzeLog()
212 bwe_update.expected_packets; in AnalyzeLog()
214 total_expected_packets += bwe_update.expected_packets; in AnalyzeLog()
215 if (bwe_update.fraction_lost >= 255 * kMaxLossFraction) { in AnalyzeLog()
216 first_occurrence = std::min(first_occurrence, bwe_update.log_time_us()); in AnalyzeLog()
Danalyzer.cc802 for (auto& bwe_update : parsed_log_.bwe_loss_updates()) { in CreateFractionLossGraph() local
803 float x = config_.GetCallTimeSec(bwe_update.log_time_us()); in CreateFractionLossGraph()
804 float y = static_cast<float>(bwe_update.fraction_lost) / 255 * 100; in CreateFractionLossGraph()
/external/webrtc/logging/rtc_event_log/
Drtc_event_log_parser.cc1827 LoggedBweLossBasedUpdate bwe_update; in GetLossBasedBweUpdate() local
1829 bwe_update.timestamp_us = event.timestamp_us(); in GetLossBasedBweUpdate()
1831 bwe_update.bitrate_bps = loss_event.bitrate_bps(); in GetLossBasedBweUpdate()
1833 bwe_update.fraction_lost = loss_event.fraction_loss(); in GetLossBasedBweUpdate()
1835 bwe_update.expected_packets = loss_event.total_packets(); in GetLossBasedBweUpdate()
1836 return bwe_update; in GetLossBasedBweUpdate()