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

Unified Diff: webrtc/media/base/videobroadcaster.cc

Issue 2716643002: Add framerate to VideoSinkWants and ability to signal on overuse (Closed)
Patch Set: Fix wireup, keep scale state per degradation pref Created 3 years, 10 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/media/base/videobroadcaster.cc
diff --git a/webrtc/media/base/videobroadcaster.cc b/webrtc/media/base/videobroadcaster.cc
index 5d0edeb6dfe4f9dc3129ba19231716f8caea03f5..8986de15bc8708b5a3dcccb0039e90d56681df33 100644
--- a/webrtc/media/base/videobroadcaster.cc
+++ b/webrtc/media/base/videobroadcaster.cc
@@ -98,6 +98,12 @@ void VideoBroadcaster::UpdateWants() {
(*sink.wants.target_pixel_count < *wants.target_pixel_count))) {
wants.target_pixel_count = sink.wants.target_pixel_count;
}
+ // Select the minimum for the requested max framerates.
+ if (sink.wants.max_framerate_fps_ &&
+ (!wants.max_framerate_fps_ ||
+ (*sink.wants.max_framerate_fps_ < *wants.max_framerate_fps_))) {
+ wants.max_framerate_fps_ = sink.wants.max_framerate_fps_;
+ }
}
if (wants.max_pixel_count && wants.target_pixel_count &&

Powered by Google App Engine
This is Rietveld 408576698