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

Unified Diff: remoting/codec/video_encoder_vpx.h

Issue 1846893002: Interface with webrtc through encoded frames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: remoting/codec/video_encoder_vpx.h
diff --git a/remoting/codec/video_encoder_vpx.h b/remoting/codec/video_encoder_vpx.h
index 35d5f670e51513890c15be12ec92d8eb151ba1df..5c53003407ed2b76ec3f31ae6e7ed78e3c2053a2 100644
--- a/remoting/codec/video_encoder_vpx.h
+++ b/remoting/codec/video_encoder_vpx.h
@@ -37,7 +37,8 @@ class VideoEncoderVpx : public VideoEncoder {
// VideoEncoder interface.
void SetLosslessEncode(bool want_lossless) override;
void SetLosslessColor(bool want_lossless) override;
- scoped_ptr<VideoPacket> Encode(const webrtc::DesktopFrame& frame) override;
+ scoped_ptr<VideoPacket> Encode(const webrtc::DesktopFrame& frame,
+ const uint32_t flags = 0) override;
private:
explicit VideoEncoderVpx(bool use_vp9);
@@ -95,4 +96,4 @@ class VideoEncoderVpx : public VideoEncoder {
} // namespace remoting
-#endif // REMOTING_CODEC_VIDEO_ENCODER_VP8_H_
+#endif // REMOTING_CODEC_VIDEO_ENCODER_VPX_H_

Powered by Google App Engine
This is Rietveld 408576698