From dca14499be1f990692f456e7805c944c6087cc94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Spr=C3=A5ng?= Date: Tue, 19 Nov 2019 18:14:30 +0100 Subject: [PATCH] Makes RoundRobinPacketQueue use same field trials as PacingController. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A bug currently causes the packet queue to not get any trials enabled unless an injected key value map is used. Bug: None Change-Id: I5c21aa296e8a202a63e81a57c5d13297ad7333bd Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/160012 Reviewed-by: Christoffer Rodbro Reviewed-by: Philip Eliasson Commit-Queue: Erik Språng Cr-Commit-Position: refs/heads/master@{#29845} --- modules/pacing/pacing_controller.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/pacing/pacing_controller.cc b/modules/pacing/pacing_controller.cc index 5b7dda3640..16d1f36b95 100644 --- a/modules/pacing/pacing_controller.cc +++ b/modules/pacing/pacing_controller.cc @@ -113,7 +113,7 @@ PacingController::PacingController(Clock* clock, pacing_bitrate_(DataRate::Zero()), last_process_time_(clock->CurrentTime()), last_send_time_(last_process_time_), - packet_queue_(last_process_time_, field_trials), + packet_queue_(last_process_time_, field_trials_), packet_counter_(0), congestion_window_size_(DataSize::PlusInfinity()), outstanding_data_(DataSize::Zero()),