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

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

Issue 2512693002: Implement Theil-Sen's method for fitting a line to noisy data (used in bandwidth estimation). (Closed)
Patch Set: Use PercentileFilter to find median slope Created 4 years 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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 import("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 "audio_processing/vad/voice_activity_detector_unittest.cc", 390 "audio_processing/vad/voice_activity_detector_unittest.cc",
391 "bitrate_controller/bitrate_controller_unittest.cc", 391 "bitrate_controller/bitrate_controller_unittest.cc",
392 "bitrate_controller/send_side_bandwidth_estimation_unittest.cc", 392 "bitrate_controller/send_side_bandwidth_estimation_unittest.cc",
393 "congestion_controller/congestion_controller_unittest.cc", 393 "congestion_controller/congestion_controller_unittest.cc",
394 "congestion_controller/delay_based_bwe_unittest.cc", 394 "congestion_controller/delay_based_bwe_unittest.cc",
395 "congestion_controller/delay_based_bwe_unittest_helper.cc", 395 "congestion_controller/delay_based_bwe_unittest_helper.cc",
396 "congestion_controller/delay_based_bwe_unittest_helper.h", 396 "congestion_controller/delay_based_bwe_unittest_helper.h",
397 "congestion_controller/probe_bitrate_estimator_unittest.cc", 397 "congestion_controller/probe_bitrate_estimator_unittest.cc",
398 "congestion_controller/probe_controller_unittest.cc", 398 "congestion_controller/probe_controller_unittest.cc",
399 "congestion_controller/probing_interval_estimator_unittest.cc", 399 "congestion_controller/probing_interval_estimator_unittest.cc",
400 "congestion_controller/theil_sen_estimator_unittest.cc",
400 "congestion_controller/transport_feedback_adapter_unittest.cc", 401 "congestion_controller/transport_feedback_adapter_unittest.cc",
401 "congestion_controller/trendline_estimator_unittest.cc", 402 "congestion_controller/trendline_estimator_unittest.cc",
402 "media_file/media_file_unittest.cc", 403 "media_file/media_file_unittest.cc",
403 "module_common_types_unittest.cc", 404 "module_common_types_unittest.cc",
404 "pacing/alr_detector_unittest.cc", 405 "pacing/alr_detector_unittest.cc",
405 "pacing/bitrate_prober_unittest.cc", 406 "pacing/bitrate_prober_unittest.cc",
406 "pacing/paced_sender_unittest.cc", 407 "pacing/paced_sender_unittest.cc",
407 "pacing/packet_router_unittest.cc", 408 "pacing/packet_router_unittest.cc",
408 "remote_bitrate_estimator/aimd_rate_control_unittest.cc", 409 "remote_bitrate_estimator/aimd_rate_control_unittest.cc",
409 "remote_bitrate_estimator/include/mock/mock_remote_bitrate_estimator.h", 410 "remote_bitrate_estimator/include/mock/mock_remote_bitrate_estimator.h",
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 "../test:test_common", 750 "../test:test_common",
750 "../test:test_support_main", 751 "../test:test_support_main",
751 "remote_bitrate_estimator:bwe_simulator_lib", 752 "remote_bitrate_estimator:bwe_simulator_lib",
752 "video_capture", 753 "video_capture",
753 "//testing/gmock", 754 "//testing/gmock",
754 "//testing/gtest", 755 "//testing/gtest",
755 "//third_party/gflags", 756 "//third_party/gflags",
756 ] 757 ]
757 } 758 }
758 } 759 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698