Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/BUILD.gn

Issue 2380883003: Add interval estimator to remote bitrate estimator (Closed)
Patch Set: Simplify probing estimator. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../../build/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
11 rtc_static_library("remote_bitrate_estimator") { 11 rtc_static_library("remote_bitrate_estimator") {
12 sources = [ 12 sources = [
13 "aimd_rate_control.cc", 13 "aimd_rate_control.cc",
14 "aimd_rate_control.h", 14 "aimd_rate_control.h",
15 "bwe_defines.cc", 15 "bwe_defines.cc",
16 "include/bwe_defines.h", 16 "include/bwe_defines.h",
17 "include/remote_bitrate_estimator.h", 17 "include/remote_bitrate_estimator.h",
18 "include/send_time_history.h", 18 "include/send_time_history.h",
19 "inter_arrival.cc", 19 "inter_arrival.cc",
20 "inter_arrival.h", 20 "inter_arrival.h",
21 "overuse_detector.cc", 21 "overuse_detector.cc",
22 "overuse_detector.h", 22 "overuse_detector.h",
23 "overuse_estimator.cc", 23 "overuse_estimator.cc",
24 "overuse_estimator.h", 24 "overuse_estimator.h",
25 "probing_interval_estimator.cc",
26 "probing_interval_estimator.h",
25 "remote_bitrate_estimator_abs_send_time.cc", 27 "remote_bitrate_estimator_abs_send_time.cc",
26 "remote_bitrate_estimator_abs_send_time.h", 28 "remote_bitrate_estimator_abs_send_time.h",
27 "remote_bitrate_estimator_single_stream.cc", 29 "remote_bitrate_estimator_single_stream.cc",
28 "remote_bitrate_estimator_single_stream.h", 30 "remote_bitrate_estimator_single_stream.h",
29 "remote_estimator_proxy.cc", 31 "remote_estimator_proxy.cc",
30 "remote_estimator_proxy.h", 32 "remote_estimator_proxy.h",
31 "send_time_history.cc", 33 "send_time_history.cc",
32 "test/bwe_test_logging.h", 34 "test/bwe_test_logging.h",
33 ] 35 ]
34 36
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 } 104 }
103 105
104 deps = [ 106 deps = [
105 "../../test:test_support", 107 "../../test:test_support",
106 "../pacing", 108 "../pacing",
107 "//testing/gmock", 109 "//testing/gmock",
108 "//testing/gtest", 110 "//testing/gtest",
109 ] 111 ]
110 } 112 }
111 } 113 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698