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

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

Issue 1232373004: Adapting sequence number type to fit standards (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Merged with master Created 5 years, 5 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
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 90e4094cb38e3eb4651a7396ce567ea40b1a10b3..fc6f01ebc7c94dde32b1d9db78bfd34e5bd6e0aa 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc
@@ -175,7 +175,7 @@ MediaPacket::MediaPacket(int flow_id,
: Packet(flow_id, send_time_us, payload_size), header_(header) {
}
-MediaPacket::MediaPacket(int64_t send_time_us, uint32_t sequence_number)
+MediaPacket::MediaPacket(int64_t send_time_us, uint16_t sequence_number)
: Packet(0, send_time_us, 0) {
header_ = RTPHeader();
header_.sequenceNumber = sequence_number;
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698