| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 * | 9 * |
| 10 */ | 10 */ |
| 11 | 11 |
| 12 #include "webrtc/modules/remote_bitrate_estimator/test/estimators/bbr.h" | 12 #include "webrtc/modules/remote_bitrate_estimator/test/estimators/bbr.h" |
| 13 | 13 |
| 14 #include <time.h> | 14 #include <time.h> |
| 15 #include <algorithm> | 15 #include <algorithm> |
| 16 #include <utility> | 16 #include <utility> |
| 17 | 17 |
| 18 #include "webrtc/base/logging.h" |
| 18 #include "webrtc/modules/congestion_controller/delay_based_bwe.h" | 19 #include "webrtc/modules/congestion_controller/delay_based_bwe.h" |
| 19 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" | 20 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" |
| 20 #include "webrtc/rtc_base/logging.h" | |
| 21 | 21 |
| 22 namespace webrtc { | 22 namespace webrtc { |
| 23 namespace testing { | 23 namespace testing { |
| 24 namespace bwe { | 24 namespace bwe { |
| 25 BbrBweSender::BbrBweSender() : BweSender() { | 25 BbrBweSender::BbrBweSender() : BweSender() { |
| 26 // Initially enter Startup mode. | 26 // Initially enter Startup mode. |
| 27 EnterStartup(); | 27 EnterStartup(); |
| 28 } | 28 } |
| 29 | 29 |
| 30 BbrBweSender::~BbrBweSender() {} | 30 BbrBweSender::~BbrBweSender() {} |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 void BbrBweReceiver::ReceivePacket(int64_t arrival_time_ms, | 71 void BbrBweReceiver::ReceivePacket(int64_t arrival_time_ms, |
| 72 const MediaPacket& media_packet) {} | 72 const MediaPacket& media_packet) {} |
| 73 | 73 |
| 74 FeedbackPacket* BbrBweReceiver::GetFeedback(int64_t now_ms) { | 74 FeedbackPacket* BbrBweReceiver::GetFeedback(int64_t now_ms) { |
| 75 return nullptr; | 75 return nullptr; |
| 76 } | 76 } |
| 77 } // namespace bwe | 77 } // namespace bwe |
| 78 } // namespace testing | 78 } // namespace testing |
| 79 } // namespace webrtc | 79 } // namespace webrtc |
| OLD | NEW |