| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_ | 11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_ |
| 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_ | 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_ |
| 13 | 13 |
| 14 #include <assert.h> | 14 #include <assert.h> |
| 15 #include <math.h> | 15 #include <math.h> |
| 16 | 16 |
| 17 #include <algorithm> | 17 #include <algorithm> |
| 18 #include <list> | 18 #include <list> |
| 19 #include <memory> | 19 #include <memory> |
| 20 #include <numeric> | 20 #include <numeric> |
| 21 #include <set> | 21 #include <set> |
| 22 #include <sstream> | 22 #include <sstream> |
| 23 #include <string> | 23 #include <string> |
| 24 #include <utility> | 24 #include <utility> |
| 25 #include <vector> | 25 #include <vector> |
| 26 | 26 |
| 27 #include "webrtc/base/common.h" | 27 #include "webrtc/base/common.h" |
| 28 #include "webrtc/base/constructormagic.h" |
| 28 #include "webrtc/base/random.h" | 29 #include "webrtc/base/random.h" |
| 29 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" | 30 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" |
| 30 #include "webrtc/modules/include/module_common_types.h" | 31 #include "webrtc/modules/include/module_common_types.h" |
| 31 #include "webrtc/modules/pacing/paced_sender.h" | 32 #include "webrtc/modules/pacing/paced_sender.h" |
| 32 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat
or.h" | 33 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat
or.h" |
| 33 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" | 34 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" |
| 34 #include "webrtc/modules/remote_bitrate_estimator/test/packet.h" | 35 #include "webrtc/modules/remote_bitrate_estimator/test/packet.h" |
| 35 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 36 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
| 36 #include "webrtc/system_wrappers/include/clock.h" | 37 #include "webrtc/system_wrappers/include/clock.h" |
| 37 | 38 |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 uint32_t frame_counter_; | 463 uint32_t frame_counter_; |
| 463 int compensation_bytes_; | 464 int compensation_bytes_; |
| 464 int compensation_per_frame_; | 465 int compensation_per_frame_; |
| 465 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(PeriodicKeyFrameSource); | 466 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(PeriodicKeyFrameSource); |
| 466 }; | 467 }; |
| 467 } // namespace bwe | 468 } // namespace bwe |
| 468 } // namespace testing | 469 } // namespace testing |
| 469 } // namespace webrtc | 470 } // namespace webrtc |
| 470 | 471 |
| 471 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_ | 472 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_ |
| OLD | NEW |