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

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: Addressed pbos comments Created 4 years, 8 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 57dc79f7b1148c6366cc43122a875522972d1ca0..94f65143531479ab5c9344034a030c8f7edcb501 100644
--- a/webrtc/media/base/videocapturer.cc
+++ b/webrtc/media/base/videocapturer.cc
@@ -213,8 +213,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