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

Unified Diff: webrtc/api/video_codecs/video_encoder.h

Issue 2990463002: [EXPERIMENTAL] Generic stereo codec with index header sending merged frames
Patch Set: Created 3 years, 5 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 | « webrtc/api/video_codecs/video_decoder.h ('k') | webrtc/common_types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/video_codecs/video_encoder.h
diff --git a/webrtc/api/video_codecs/video_encoder.h b/webrtc/api/video_codecs/video_encoder.h
index 2e392763459cfefb6e3fa79499c563cc23ff995b..8ce383ffcec9b448e2cd45dcb261caa849dce421 100644
--- a/webrtc/api/video_codecs/video_encoder.h
+++ b/webrtc/api/video_codecs/video_encoder.h
@@ -178,5 +178,12 @@ class VideoEncoder {
virtual const char* ImplementationName() const { return "unknown"; }
};
+class VideoEncoderFactory {
+ public:
+ virtual VideoEncoder* Create() = 0;
+ virtual void Destroy(VideoEncoder* encoder) = 0;
+ virtual ~VideoEncoderFactory() {}
+};
+
} // namespace webrtc
#endif // WEBRTC_API_VIDEO_CODECS_VIDEO_ENCODER_H_
« no previous file with comments | « webrtc/api/video_codecs/video_decoder.h ('k') | webrtc/common_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698