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

Unified Diff: webrtc/video/video_send_stream.h

Issue 2117493002: Auto pause video streams based on encoder target bitrate. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 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/video/video_send_stream.h
diff --git a/webrtc/video/video_send_stream.h b/webrtc/video/video_send_stream.h
index 1c66c1fe332ad9540343b2e01abc82668c4459a4..f9c6cdc0d64d0ca652ee8d16dd45f2c0b755d267 100644
--- a/webrtc/video/video_send_stream.h
+++ b/webrtc/video/video_send_stream.h
@@ -87,9 +87,9 @@ class VideoSendStream : public webrtc::VideoSendStream,
int GetPaddingNeededBps() const;
// Implements BitrateAllocatorObserver.
- void OnBitrateUpdated(uint32_t bitrate_bps,
- uint8_t fraction_loss,
- int64_t rtt) override;
+ uint32_t OnBitrateUpdated(uint32_t bitrate_bps,
stefan-webrtc 2016/06/30 16:17:38 Comment on what this returns. Should we have a tes
mflodman 2016/07/01 09:40:15 I adde a comment in BitrateAllocatorObserver::OnBi
stefan-webrtc 2016/07/01 10:42:49 Ok, I was thinking a simple unittest, but I won't
+ uint8_t fraction_loss,
+ int64_t rtt) override;
protected:
// Implements webrtc::VCMProtectionCallback.

Powered by Google App Engine
This is Rietveld 408576698