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 f9e7e018e517e1c4b1a24f8b59cf87681c27b3d8..50074d50e4477e4bf4be435755b83abda7cd4e81 100644 |
--- a/webrtc/modules/congestion_controller/congestion_controller.cc |
+++ b/webrtc/modules/congestion_controller/congestion_controller.cc |
@@ -53,9 +53,9 @@ |
rbe_->IncomingPacket(arrival_time_ms, payload_size, header, was_paced); |
} |
- void Process() override { |
- CriticalSectionScoped cs(crit_sect_.get()); |
- rbe_->Process(); |
+ int32_t Process() override { |
+ CriticalSectionScoped cs(crit_sect_.get()); |
+ return rbe_->Process(); |
} |
int64_t TimeUntilNextProcess() override { |
@@ -241,9 +241,10 @@ |
remote_bitrate_estimator_->TimeUntilNextProcess()); |
} |
-void CongestionController::Process() { |
+int32_t CongestionController::Process() { |
bitrate_controller_->Process(); |
remote_bitrate_estimator_->Process(); |
+ return 0; |
} |
} // namespace webrtc |