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

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

Issue 1960073002: New method CreateScaledFrame in the VideoFrameFactory interface. Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rename method to CreateCroppedAndScaledFrame. Comment and format improvements. Created 4 years, 7 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 b00cbfe8e320c3eeaad1bd4734bf0b8ecbed81ef..c68d6e9dbdc5a274855e7bffa976fbf6ca605b78 100644
--- a/webrtc/media/base/videocapturer.cc
+++ b/webrtc/media/base/videocapturer.cc
@@ -238,11 +238,8 @@ void VideoCapturer::OnFrameCaptured(VideoCapturer*,
return;
}
- // TODO(nisse): Reorganize frame factory methods, deleting crop
- // support there too.
- std::unique_ptr<VideoFrame> adapted_frame(frame_factory_->CreateAliasedFrame(
- captured_frame, captured_frame->width, captured_frame->height,
- adapted_width, adapted_height));
+ std::unique_ptr<VideoFrame> adapted_frame = frame_factory_->CreateScaledFrame(
+ captured_frame, adapted_width, adapted_height);
if (!adapted_frame) {
// TODO(fbarchard): LOG more information about captured frame attributes.

Powered by Google App Engine
This is Rietveld 408576698