Index: webrtc/modules/congestion_controller/congestion_controller.cc |
diff --git a/webrtc/modules/congestion_controller/congestion_controller.cc b/webrtc/modules/congestion_controller/congestion_controller.cc |
index 9b836be34835d90400a5389bafe765dd40d1f7c3..62772b7f131d986c80885e2da67db7ae43dcdf84 100644 |
--- a/webrtc/modules/congestion_controller/congestion_controller.cc |
+++ b/webrtc/modules/congestion_controller/congestion_controller.cc |
@@ -106,10 +106,11 @@ void CongestionController::Process() { |
receive_side_cc_.Process(); |
} |
-void CongestionController::AddPacket(uint16_t sequence_number, |
+void CongestionController::AddPacket(uint32_t ssrc, |
terelius
2017/03/22 16:03:32
If we're changing this method signature, could we
elad.alon_webrtc.org
2017/03/22 16:05:16
+1, though I'd prefer doing it in a separate CL. W
|
+ uint16_t sequence_number, |
size_t length, |
const PacedPacketInfo& pacing_info) { |
- send_side_cc_.AddPacket(sequence_number, length, pacing_info); |
+ send_side_cc_.AddPacket(ssrc, sequence_number, length, pacing_info); |
} |
void CongestionController::OnTransportFeedback( |