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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc

Issue 2904183002: Structure of BBR's implementation,some main classes and functions which are going to be used (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc
index f9313a6724dd8908b0aa7cd7dc99bd9d8109d9c3..b3d81287ea876ae8e1b6377316b99ce76bc0b2f9 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc
@@ -152,6 +152,14 @@ void MediaPacket::SetAbsSendTimeMs(int64_t abs_send_time_ms) {
(1 << 18)) + 500) / 1000) & 0x00fffffful;
}
+BbrBweFeedback::BbrBweFeedback(
+ int flow_id,
+ int64_t send_time_us,
+ int64_t latest_send_time_ms,
+ const std::vector<std::pair<uint64_t, int64_t> >& packet_feedback_vector)
philipel 2017/05/29 09:38:49 Change from std::vector<std::pair<uint64_t, int64_
gnish2 2017/05/29 11:04:26 Done.
+ : FeedbackPacket(flow_id, send_time_us, latest_send_time_ms),
+ packet_feedback_vector_(packet_feedback_vector) {}
+
RembFeedback::RembFeedback(int flow_id,
int64_t send_time_us,
int64_t last_send_time_ms,

Powered by Google App Engine
This is Rietveld 408576698