Moved congestion controller to goog_cc folder.

Bug: webrtc:8415
Change-Id: I2070da0cacf1dbfc4b6a89285af3e68fd03497ab
Reviewed-on: https://webrtc-review.googlesource.com/43841
Commit-Queue: Sebastian Jansson <srte@webrtc.org>
Reviewed-by: Björn Terelius <terelius@webrtc.org>
Reviewed-by: Stefan Holmer <stefan@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21928}
This commit is contained in:
Sebastian Jansson
2018-02-07 10:00:51 +01:00
committed by Commit Bot
parent 2a5ce2bcf8
commit e6cefdf9c5
39 changed files with 250 additions and 230 deletions

View File

@ -149,9 +149,9 @@ if (rtc_include_tests) {
"../../test:test_support",
"../bitrate_controller",
"../congestion_controller",
"../congestion_controller:delay_based_bwe",
"../congestion_controller:estimators",
"../congestion_controller:transport_feedback",
"../congestion_controller/goog_cc:delay_based_bwe",
"../congestion_controller/goog_cc:estimators",
"../pacing",
"../rtp_rtcp",
"../rtp_rtcp:rtp_rtcp_format",

View File

@ -12,7 +12,7 @@
#include <algorithm>
#include "modules/congestion_controller/delay_based_bwe.h"
#include "modules/congestion_controller/goog_cc/delay_based_bwe.h"
#include "modules/remote_bitrate_estimator/test/bwe_test_logging.h"
#include "rtc_base/logging.h"
#include "rtc_base/ptr_util.h"

View File

@ -15,7 +15,7 @@
#include <vector>
#include "logging/rtc_event_log/mock/mock_rtc_event_log.h"
#include "modules/congestion_controller/acknowledged_bitrate_estimator.h"
#include "modules/congestion_controller/goog_cc/acknowledged_bitrate_estimator.h"
#include "modules/congestion_controller/send_time_history.h"
#include "modules/remote_bitrate_estimator/test/bwe.h"