Searched refs:packet_loss_fraction (Results 1 – 3 of 3) sorted by relevance
26 uint32_t ConvertPacketLossFractionToProtoFormat(float packet_loss_fraction) { in ConvertPacketLossFractionToProtoFormat() argument27 RTC_DCHECK_GE(packet_loss_fraction, 0); in ConvertPacketLossFractionToProtoFormat()28 RTC_DCHECK_LE(packet_loss_fraction, 1); in ConvertPacketLossFractionToProtoFormat()29 return static_cast<uint32_t>(packet_loss_fraction * kPacketLossFractionRange); in ConvertPacketLossFractionToProtoFormat()
24 uint32_t ConvertPacketLossFractionToProtoFormat(float packet_loss_fraction);
327 void AddSample(float packet_loss_fraction) { in AddSample() argument330 packet_loss_fraction); in AddSample()