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

Unified Diff: webrtc/modules/bitrate_controller/bitrate_controller_impl.h

Issue 2999073002: Tweaked version of BBR for WebRTC. (Closed)
Patch Set: Fixed compilation errors. Created 3 years, 4 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/modules/bitrate_controller/bitrate_controller_impl.h
diff --git a/webrtc/modules/bitrate_controller/bitrate_controller_impl.h b/webrtc/modules/bitrate_controller/bitrate_controller_impl.h
index 11a58507739eb9b4c875a054ec2e3a73b8371976..a5fc333567f989287d1cd10a1dc8d11814172b94 100644
--- a/webrtc/modules/bitrate_controller/bitrate_controller_impl.h
+++ b/webrtc/modules/bitrate_controller/bitrate_controller_impl.h
@@ -72,11 +72,11 @@ class BitrateControllerImpl : public BitrateController {
// Called by BitrateObserver's direct from the RTCP module.
// Implements RtcpBandwidthObserver.
- void OnReceivedEstimatedBitrate(uint32_t bitrate) override;
+ void OnReceivedEstimatedBitrate(uint32_t bitrate);
void OnReceivedRtcpReceiverReport(const ReportBlockList& report_blocks,
int64_t rtt,
- int64_t now_ms) override;
+ int64_t now_ms);
// Deprecated
void MaybeTriggerOnNetworkChanged();

Powered by Google App Engine
This is Rietveld 408576698