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

Unified Diff: api/video_codecs/video_decoder.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/video_frame_buffer.cc ('k') | api/video_codecs/video_encoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: api/video_codecs/video_decoder.h
diff --git a/api/video_codecs/video_decoder.h b/api/video_codecs/video_decoder.h
index 5897901346ce93a73d1144a3fb6542ec36b512e1..49947543c16450a377b702ddf0c90af97395f0a5 100644
--- a/api/video_codecs/video_decoder.h
+++ b/api/video_codecs/video_decoder.h
@@ -82,6 +82,13 @@ class VideoDecoder {
virtual const char* ImplementationName() const { return "unknown"; }
};
+class VideoDecoderFactoryEx {
+ public:
+ virtual VideoDecoder* Create() = 0;
+ virtual void Destroy(VideoDecoder* decoder) = 0;
+ virtual ~VideoDecoderFactoryEx() {}
+};
+
} // namespace webrtc
#endif // API_VIDEO_CODECS_VIDEO_DECODER_H_
« no previous file with comments | « api/video/video_frame_buffer.cc ('k') | api/video_codecs/video_encoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698