| 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 2fae264156fd3efc4d3b5ed10bf3789f202bb23d..dc2af21b542aad4f0c27c75dad350868d006b742 100644
|
| --- a/webrtc/modules/congestion_controller/congestion_controller.cc
|
| +++ b/webrtc/modules/congestion_controller/congestion_controller.cc
|
| @@ -306,6 +306,12 @@ void CongestionController::SignalNetworkState(NetworkState state) {
|
| MaybeTriggerOnNetworkChanged();
|
| }
|
|
|
| +void CongestionController::SetTransportOverhead(
|
| + int transport_overhead_bytes_per_packet) {
|
| + transport_feedback_adapter_.SetTransportOverhead(
|
| + transport_overhead_bytes_per_packet);
|
| +}
|
| +
|
| void CongestionController::OnSentPacket(const rtc::SentPacket& sent_packet) {
|
| // We're not interested in packets without an id, which may be stun packets,
|
| // etc, sent on the same transport.
|
|
|