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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/packet.h

Issue 2999073002: Tweaked version of BBR for WebRTC. (Closed)
Patch Set: Updated according to comments. Created 3 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/remote_bitrate_estimator/test/packet.h
diff --git a/webrtc/modules/remote_bitrate_estimator/test/packet.h b/webrtc/modules/remote_bitrate_estimator/test/packet.h
index 525397c50df84c4c30ada2a814620cea8340ef76..05e12674368691c3b338670dbcd5481a28cfb236 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/packet.h
+++ b/webrtc/modules/remote_bitrate_estimator/test/packet.h
@@ -114,15 +114,15 @@ class BbrBweFeedback : public FeedbackPacket {
BbrBweFeedback(int flow_id,
int64_t send_time_us,
int64_t latest_send_time_ms,
- const std::vector<uint64_t>& packet_feedback_vector);
+ const std::vector<uint16_t>& packet_feedback_vector);
virtual ~BbrBweFeedback() {}
- const std::vector<uint64_t>& packet_feedback_vector() const {
+ const std::vector<uint16_t>& packet_feedback_vector() const {
return packet_feedback_vector_;
}
private:
- const std::vector<uint64_t> packet_feedback_vector_;
+ const std::vector<uint16_t> packet_feedback_vector_;
};
class RembFeedback : public FeedbackPacket {

Powered by Google App Engine
This is Rietveld 408576698