Searched refs:bwe_update (Results 1 – 3 of 3) sorted by relevance
197 for (auto& bwe_update : parsed_log.bwe_loss_updates()) { in AnalyzeLog() local198 if (bwe_update.log_time_us() > segment_end_us) { in AnalyzeLog()202 int64_t lost_packets = static_cast<double>(bwe_update.fraction_lost) / 255 * in AnalyzeLog()203 bwe_update.expected_packets; in AnalyzeLog()205 total_expected_packets += bwe_update.expected_packets; in AnalyzeLog()206 if (bwe_update.fraction_lost >= 255 * kMaxLossFraction) { in AnalyzeLog()207 first_occurrence = std::min(first_occurrence, bwe_update.log_time()); in AnalyzeLog()
806 for (auto& bwe_update : parsed_log_.bwe_loss_updates()) { in CreateFractionLossGraph() local807 float x = config_.GetCallTimeSec(bwe_update.log_time()); in CreateFractionLossGraph()808 float y = static_cast<float>(bwe_update.fraction_lost) / 255 * 100; in CreateFractionLossGraph()
1994 LoggedBweLossBasedUpdate bwe_update; in GetLossBasedBweUpdate() local1996 bwe_update.timestamp = Timestamp::Micros(event.timestamp_us()); in GetLossBasedBweUpdate()1998 bwe_update.bitrate_bps = loss_event.bitrate_bps(); in GetLossBasedBweUpdate()2000 bwe_update.fraction_lost = loss_event.fraction_loss(); in GetLossBasedBweUpdate()2002 bwe_update.expected_packets = loss_event.total_packets(); in GetLossBasedBweUpdate()2003 return bwe_update; in GetLossBasedBweUpdate()