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

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: 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..8425cab29b4b43fda265355d3af530ca6fdfc432 100644
--- a/webrtc/media/engine/webrtcvideoframefactory.h
+++ b/webrtc/media/engine/webrtcvideoframefactory.h
@@ -20,6 +20,11 @@ struct CapturedFrame;
// Creates instances of cricket::WebRtcVideoFrame.
class WebRtcVideoFrameFactory : public VideoFrameFactory {
public:
+ std::unique_ptr<VideoFrame> CreateScaledFrame(
+ const CapturedFrame* input_frame,
+ int width,
+ int height) const override;
+
VideoFrame* CreateAliasedFrame(const CapturedFrame* aliased_frame,
int width,
int height) const override;

Powered by Google App Engine
This is Rietveld 408576698