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

Unified Diff: webrtc/media/engine/webrtcvideoframefactory.h

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/engine/webrtcvideoframefactory.h
diff --git a/webrtc/media/engine/webrtcvideoframefactory.h b/webrtc/media/engine/webrtcvideoframefactory.h
index c1569969fb2fb677352755a8fb10eeba8c844b4a..01fac799478ba386e0fded1218dd46e059415ede 100644
--- a/webrtc/media/engine/webrtcvideoframefactory.h
+++ b/webrtc/media/engine/webrtcvideoframefactory.h
@@ -20,6 +20,15 @@ struct CapturedFrame;
// Creates instances of cricket::WebRtcVideoFrame.
class WebRtcVideoFrameFactory : public VideoFrameFactory {
public:
+ std::unique_ptr<VideoFrame> CreateCroppedAndScaledFrame(
+ const CapturedFrame* input_frame,
+ int crop_x,
+ int crop_y,
+ int crop_width,
+ int crop_height,
+ int dst_width,
+ int dst_height) const override;
+
VideoFrame* CreateAliasedFrame(const CapturedFrame* aliased_frame,
int width,
int height) const override;

Powered by Google App Engine
This is Rietveld 408576698