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

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

Powered by Google App Engine
This is Rietveld 408576698