| 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 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 class RemoteEstimatorProxy : public RemoteBitrateEstimator { | 33 class RemoteEstimatorProxy : public RemoteBitrateEstimator { |
| 34 public: | 34 public: |
| 35 RemoteEstimatorProxy(Clock* clock, PacketRouter* packet_router); | 35 RemoteEstimatorProxy(Clock* clock, PacketRouter* packet_router); |
| 36 virtual ~RemoteEstimatorProxy(); | 36 virtual ~RemoteEstimatorProxy(); |
| 37 | 37 |
| 38 void IncomingPacketFeedbackVector( | 38 void IncomingPacketFeedbackVector( |
| 39 const std::vector<PacketInfo>& packet_feedback_vector) override; | 39 const std::vector<PacketInfo>& packet_feedback_vector) override; |
| 40 void IncomingPacket(int64_t arrival_time_ms, | 40 void IncomingPacket(int64_t arrival_time_ms, |
| 41 size_t payload_size, | 41 size_t payload_size, |
| 42 const RTPHeader& header, | 42 const RTPHeader& header) override; |
| 43 bool was_paced) override; | |
| 44 void RemoveStream(uint32_t ssrc) override {} | 43 void RemoveStream(uint32_t ssrc) override {} |
| 45 bool LatestEstimate(std::vector<unsigned int>* ssrcs, | 44 bool LatestEstimate(std::vector<unsigned int>* ssrcs, |
| 46 unsigned int* bitrate_bps) const override; | 45 unsigned int* bitrate_bps) const override; |
| 47 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override {} | 46 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override {} |
| 48 void SetMinBitrate(int min_bitrate_bps) override {} | 47 void SetMinBitrate(int min_bitrate_bps) override {} |
| 49 int64_t TimeUntilNextProcess() override; | 48 int64_t TimeUntilNextProcess() override; |
| 50 void Process() override; | 49 void Process() override; |
| 51 | 50 |
| 52 static const int kDefaultProcessIntervalMs; | 51 static const int kDefaultProcessIntervalMs; |
| 53 static const int kBackWindowMs; | 52 static const int kBackWindowMs; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 67 uint8_t feedback_sequence_ GUARDED_BY(&lock_); | 66 uint8_t feedback_sequence_ GUARDED_BY(&lock_); |
| 68 SequenceNumberUnwrapper unwrapper_ GUARDED_BY(&lock_); | 67 SequenceNumberUnwrapper unwrapper_ GUARDED_BY(&lock_); |
| 69 int64_t window_start_seq_ GUARDED_BY(&lock_); | 68 int64_t window_start_seq_ GUARDED_BY(&lock_); |
| 70 // Map unwrapped seq -> time. | 69 // Map unwrapped seq -> time. |
| 71 std::map<int64_t, int64_t> packet_arrival_times_ GUARDED_BY(&lock_); | 70 std::map<int64_t, int64_t> packet_arrival_times_ GUARDED_BY(&lock_); |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // namespace webrtc | 73 } // namespace webrtc |
| 75 | 74 |
| 76 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_REMOTE_ESTIMATOR_PROXY_H_ | 75 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_REMOTE_ESTIMATOR_PROXY_H_ |
| OLD | NEW |