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

Unified Diff: webrtc/audio/audio_receive_stream.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/audio/audio_receive_stream.cc
diff --git a/webrtc/audio/audio_receive_stream.cc b/webrtc/audio/audio_receive_stream.cc
index fb17fccefce638c9ad58f894c2c39b88254acef9..15c63d10aeeed80d82ba62b5d732ff31edfa0553 100644
--- a/webrtc/audio/audio_receive_stream.cc
+++ b/webrtc/audio/audio_receive_stream.cc
@@ -235,7 +235,7 @@ bool AudioReceiveStream::DeliverRtp(const uint8_t* packet,
arrival_time_ms = (packet_time.timestamp + 500) / 1000;
size_t payload_size = length - header.headerLength;
remote_bitrate_estimator_->IncomingPacket(arrival_time_ms, payload_size,
- header, false);
danilchap 2016/05/26 11:22:42 This looks strange (may be this packet is a probe:
+ header, PacketInfo::kNotAProbe);
}
return channel_proxy_->ReceivedRTPPacket(packet, length, packet_time);

Powered by Google App Engine
This is Rietveld 408576698