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

Unified Diff: webrtc/video/rtp_stream_receiver.cc

Issue 2005313003: Propagate probing cluster id to SendTimeHistory. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Feedback fixes. Created 4 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/video/rtp_stream_receiver.cc
diff --git a/webrtc/video/rtp_stream_receiver.cc b/webrtc/video/rtp_stream_receiver.cc
index 98b46831c53894ae655928156babf8120a45fff7..4694f3d48a8912a6925a826f0345f49f9ebfaf73 100644
--- a/webrtc/video/rtp_stream_receiver.cc
+++ b/webrtc/video/rtp_stream_receiver.cc
@@ -309,7 +309,7 @@ bool RtpStreamReceiver::DeliverRtp(const uint8_t* rtp_packet,
}
remote_bitrate_estimator_->IncomingPacket(arrival_time_ms, payload_length,
- header, true);
danilchap 2016/05/26 11:22:42 this change looks even stranger than similar code
stefan-webrtc 2016/05/26 16:29:50 Yes, this looks wrong. If anything it should be as
+ header, PacketInfo::kNotAProbe);
header.payload_type_frequency = kVideoPayloadTypeFrequency;
bool in_order = IsPacketInOrder(header);

Powered by Google App Engine
This is Rietveld 408576698