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

Unified Diff: webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc

Issue 1598803005: Remove vp8_factory.{cc,h}. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 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/modules/video_coding/codecs/vp8/vp8_factory.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
diff --git a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
index 5a04f6a43dddc350169470478c2657358c56fbed..5263cab902817d7f2fbc33b64ae6e3059cd078ec 100644
--- a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
+++ b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc
@@ -141,6 +141,14 @@ int NumStreamsDisabled(const std::vector<bool>& streams) {
}
} // namespace
+VP8Encoder* VP8Encoder::Create() {
+ return new VP8EncoderImpl();
+}
+
+VP8Decoder* VP8Decoder::Create() {
+ return new VP8DecoderImpl();
+}
+
const float kTl1MaxTimeToDropFrames = 20.0f;
VP8EncoderImpl::VP8EncoderImpl()
« no previous file with comments | « webrtc/modules/video_coding/codecs/vp8/vp8_factory.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698