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

Unified Diff: remoting/codec/video_encoder.h

Issue 1846893002: Interface with webrtc through encoded frames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed sergey comment 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
« no previous file with comments | « remoting/codec/codec_test.cc ('k') | remoting/codec/video_encoder_verbatim.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_encoder.h
diff --git a/remoting/codec/video_encoder.h b/remoting/codec/video_encoder.h
index 662951843873be8b68f8fc7d8febb9439fef1ed7..99018f7d4e6c4ad2cde7cd2454722576f1f06351 100644
--- a/remoting/codec/video_encoder.h
+++ b/remoting/codec/video_encoder.h
@@ -5,6 +5,8 @@
#ifndef REMOTING_CODEC_VIDEO_ENCODER_H_
#define REMOTING_CODEC_VIDEO_ENCODER_H_
+#include <stdint.h>
+
#include <memory>
namespace webrtc {
@@ -19,6 +21,7 @@ class VideoPacket;
// interface is asynchronous to enable maximum throughput.
class VideoEncoder {
public:
+ enum Flags { REQUEST_KEY_FRAME = 1 << 0 };
virtual ~VideoEncoder() {}
// Request that the encoder provide lossless encoding, or color, if possible.
@@ -29,8 +32,8 @@ class VideoEncoder {
// then the encoder may return a packet (e.g. to top-off previously-encoded
// portions of the frame to higher quality) or return nullptr to indicate that
// there is no work to do.
- virtual std::unique_ptr<VideoPacket> Encode(
- const webrtc::DesktopFrame& frame) = 0;
+ virtual std::unique_ptr<VideoPacket> Encode(const webrtc::DesktopFrame& frame,
+ uint32_t flags) = 0;
};
} // namespace remoting
« no previous file with comments | « remoting/codec/codec_test.cc ('k') | remoting/codec/video_encoder_verbatim.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698