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

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

Issue 1836043004: Cleanup the VideoAdapter (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Removed scale size 0. Created 4 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/videocapturer.cc
diff --git a/webrtc/media/base/videocapturer.cc b/webrtc/media/base/videocapturer.cc
index 6b182b35332db9b1f9141ad0e805ad47a8fb0518..99d270471f3973d436f510d527784324a5257bc8 100644
--- a/webrtc/media/base/videocapturer.cc
+++ b/webrtc/media/base/videocapturer.cc
@@ -207,8 +207,8 @@ void VideoCapturer::OnSinkWantsChanged(const rtc::VideoSinkWants& wants) {
}
if (video_adapter()) {
- video_adapter()->OnCpuResolutionRequest(wants.max_pixel_count,
- wants.max_pixel_count_step_up);
+ video_adapter()->OnResolutionRequest(wants.max_pixel_count,
+ wants.max_pixel_count_step_up);
}
}

Powered by Google App Engine
This is Rietveld 408576698