| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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_REMOTE_ESTIMATOR_PROXY_H_ | 11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_REMOTE_ESTIMATOR_PROXY_H_ |
| 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_REMOTE_ESTIMATOR_PROXY_H_ | 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_REMOTE_ESTIMATOR_PROXY_H_ |
| 13 | 13 |
| 14 #include <map> | 14 #include <map> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "webrtc/base/criticalsection.h" |
| 17 #include "webrtc/modules/include/module_common_types.h" | 18 #include "webrtc/modules/include/module_common_types.h" |
| 18 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat
or.h" | 19 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat
or.h" |
| 19 #include "webrtc/rtc_base/criticalsection.h" | |
| 20 | 20 |
| 21 namespace webrtc { | 21 namespace webrtc { |
| 22 | 22 |
| 23 class Clock; | 23 class Clock; |
| 24 class PacketRouter; | 24 class PacketRouter; |
| 25 namespace rtcp { | 25 namespace rtcp { |
| 26 class TransportFeedback; | 26 class TransportFeedback; |
| 27 } | 27 } |
| 28 | 28 |
| 29 // Class used when send-side BWE is enabled: This proxy is instantiated on the | 29 // Class used when send-side BWE is enabled: This proxy is instantiated on the |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 SequenceNumberUnwrapper unwrapper_ GUARDED_BY(&lock_); | 68 SequenceNumberUnwrapper unwrapper_ GUARDED_BY(&lock_); |
| 69 int64_t window_start_seq_ GUARDED_BY(&lock_); | 69 int64_t window_start_seq_ GUARDED_BY(&lock_); |
| 70 // Map unwrapped seq -> time. | 70 // Map unwrapped seq -> time. |
| 71 std::map<int64_t, int64_t> packet_arrival_times_ GUARDED_BY(&lock_); | 71 std::map<int64_t, int64_t> packet_arrival_times_ GUARDED_BY(&lock_); |
| 72 int64_t send_interval_ms_ GUARDED_BY(&lock_); | 72 int64_t send_interval_ms_ GUARDED_BY(&lock_); |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace webrtc | 75 } // namespace webrtc |
| 76 | 76 |
| 77 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_REMOTE_ESTIMATOR_PROXY_H_ | 77 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_REMOTE_ESTIMATOR_PROXY_H_ |
| OLD | NEW |