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

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

Issue 2716643002: Add framerate to VideoSinkWants and ability to signal on overuse (Closed)
Patch Set: windows warning Created 3 years, 9 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..1177e98cd422c2fd918fe2d0d4858c728f962ac8 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