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

Unified Diff: api/video_codecs/video_encoder.h

Issue 3015663002: [Experiment] Alpha Channel Support
Patch Set: Remove Frame Matching On Sender Side Created 3 years, 3 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 | « api/video_codecs/video_decoder.h ('k') | call/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: api/video_codecs/video_encoder.h
diff --git a/api/video_codecs/video_encoder.h b/api/video_codecs/video_encoder.h
index 505564c1305eaef64a5167ce95519800f65e5705..639e60c4d937f9e8457869a04fcfdb5c7c80febe 100644
--- a/api/video_codecs/video_encoder.h
+++ b/api/video_codecs/video_encoder.h
@@ -179,5 +179,13 @@ class VideoEncoder {
virtual bool SupportsNativeHandle() const;
virtual const char* ImplementationName() const;
};
+
+class VideoEncoderFactoryEx {
+ public:
+ virtual VideoEncoder* Create() = 0;
+ virtual void Destroy(VideoEncoder* encoder) = 0;
+ virtual ~VideoEncoderFactoryEx() {}
+};
+
} // namespace webrtc
#endif // API_VIDEO_CODECS_VIDEO_ENCODER_H_
« no previous file with comments | « api/video_codecs/video_decoder.h ('k') | call/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698