Home
last modified time | relevance | path

Searched refs:scoring_point (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/audio_coding/audio_network_adaptor/
Dcontroller_manager.cc299 auto& scoring_point = controller_config.scoring_point(); in Create() local
300 RTC_CHECK(scoring_point.has_uplink_bandwidth_bps()); in Create()
301 RTC_CHECK(scoring_point.has_uplink_packet_loss_fraction()); in Create()
303 scoring_point.uplink_bandwidth_bps(), in Create()
304 scoring_point.uplink_packet_loss_fraction()); in Create()
368 ScoringPoint scoring_point(*metrics.uplink_bandwidth_bps, in GetSortedControllers() local
372 last_scoring_point_.SquaredDistanceTo(scoring_point) < in GetSortedControllers()
387 [this, &scoring_point](const Controller* lhs, const Controller* rhs) { in GetSortedControllers()
397 return lhs_scoring_point->second.SquaredDistanceTo(scoring_point) < in GetSortedControllers()
398 rhs_scoring_point->second.SquaredDistanceTo(scoring_point); in GetSortedControllers()
[all …]
Dcontroller_manager_unittest.cc239 auto scoring_point = controller_config_ext->mutable_scoring_point(); in AddFecControllerConfig() local
240 scoring_point->set_uplink_bandwidth_bps(kChracteristicBandwithBps[0]); in AddFecControllerConfig()
241 scoring_point->set_uplink_packet_loss_fraction( in AddFecControllerConfig()
257 auto scoring_point = controller_config_ext->mutable_scoring_point(); in AddFrameLengthControllerConfig() local
258 scoring_point->set_uplink_bandwidth_bps(kChracteristicBandwithBps[1]); in AddFrameLengthControllerConfig()
259 scoring_point->set_uplink_packet_loss_fraction( in AddFrameLengthControllerConfig()
Dconfig.proto167 // The distance from |scoring_point| to a given network condition defines
171 // without |scoring_point| follow their default order in
173 optional ScoringPoint scoring_point = 1; field
Dcontroller_manager.h97 float SquaredDistanceTo(const ScoringPoint& scoring_point) const;