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

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.h

Issue 2205803002: Add plot of network delay change computed based on transport feedback. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: . Created 4 years, 4 months 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
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 25 matching lines...) Expand all
36 void SetBitrateEstimator(RemoteBitrateEstimator* rbe); 36 void SetBitrateEstimator(RemoteBitrateEstimator* rbe);
37 RemoteBitrateEstimator* GetBitrateEstimator() const { 37 RemoteBitrateEstimator* GetBitrateEstimator() const {
38 return bitrate_estimator_.get(); 38 return bitrate_estimator_.get();
39 } 39 }
40 40
41 // Implements TransportFeedbackObserver. 41 // Implements TransportFeedbackObserver.
42 void AddPacket(uint16_t sequence_number, 42 void AddPacket(uint16_t sequence_number,
43 size_t length, 43 size_t length,
44 int probe_cluster_id) override; 44 int probe_cluster_id) override;
45 void OnSentPacket(uint16_t sequence_number, int64_t send_time_ms); 45 void OnSentPacket(uint16_t sequence_number, int64_t send_time_ms);
46
47 const std::vector<PacketInfo> GetPacketFeedbackVector(
48 const rtcp::TransportFeedback& feedback);
46 void OnTransportFeedback(const rtcp::TransportFeedback& feedback) override; 49 void OnTransportFeedback(const rtcp::TransportFeedback& feedback) override;
47 50
48 // Implements CallStatsObserver. 51 // Implements CallStatsObserver.
49 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override; 52 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override;
50 53
51 private: 54 private:
52 // Implements RemoteBitrateObserver. 55 // Implements RemoteBitrateObserver.
53 void OnReceiveBitrateChanged(const std::vector<uint32_t>& ssrcs, 56 void OnReceiveBitrateChanged(const std::vector<uint32_t>& ssrcs,
54 uint32_t bitrate) override; 57 uint32_t bitrate) override;
55 58
56 rtc::CriticalSection lock_; 59 rtc::CriticalSection lock_;
57 SendTimeHistory send_time_history_ GUARDED_BY(&lock_); 60 SendTimeHistory send_time_history_ GUARDED_BY(&lock_);
58 BitrateController* bitrate_controller_; 61 BitrateController* bitrate_controller_;
59 std::unique_ptr<RemoteBitrateEstimator> bitrate_estimator_; 62 std::unique_ptr<RemoteBitrateEstimator> bitrate_estimator_;
60 Clock* const clock_; 63 Clock* const clock_;
61 int64_t current_offset_ms_; 64 int64_t current_offset_ms_;
62 int64_t last_timestamp_us_; 65 int64_t last_timestamp_us_;
63 }; 66 };
64 67
65 } // namespace webrtc 68 } // namespace webrtc
66 69
67 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TRANSPORT_FEEDBACK_ADAPTER_H_ 70 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TRANSPORT_FEEDBACK_ADAPTER_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698