Chromium Code Reviews| Index: webrtc/modules/pacing/bitrate_prober.cc |
| diff --git a/webrtc/modules/pacing/bitrate_prober.cc b/webrtc/modules/pacing/bitrate_prober.cc |
| index 4b2a977bbebcdcab302e24c762e679ae0cd87d0e..c6a557ab2d4be0d72b1c0ef4297dca83bf1388db 100644 |
| --- a/webrtc/modules/pacing/bitrate_prober.cc |
| +++ b/webrtc/modules/pacing/bitrate_prober.cc |
| @@ -64,7 +64,7 @@ void BitrateProber::OnIncomingPacket(size_t packet_size) { |
| } |
| } |
| -void BitrateProber::ProbeAtBitrate(uint32_t bitrate_bps, int num_packets) { |
| +void BitrateProber::CreateProbeCluster(int bitrate_bps, int num_packets) { |
| ProbeCluster cluster; |
| cluster.max_probe_packets = num_packets; |
| cluster.probe_bitrate_bps = bitrate_bps; |
| @@ -85,7 +85,7 @@ void BitrateProber::ResetState() { |
| std::queue<ProbeCluster> clusters; |
| clusters.swap(clusters_); |
| while (!clusters.empty()) { |
| - ProbeAtBitrate(clusters.front().probe_bitrate_bps, |
| + CreateProbeCluster(clusters.front().probe_bitrate_bps, |
| clusters.front().max_probe_packets); |
|
stefan-webrtc
2016/08/16 13:28:29
git cl format
|
| clusters.pop(); |
| } |