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

Unified Diff: webrtc/modules/video_coding/codecs/vp8/vp8_factory.h

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
Index: webrtc/modules/video_coding/codecs/vp8/vp8_factory.h
diff --git a/webrtc/modules/video_coding/codecs/vp8/vp8_factory.h b/webrtc/modules/video_coding/codecs/vp8/vp8_factory.h
deleted file mode 100644
index 52f8aa30b810d68af3c5f5fb0b651ff198402c76..0000000000000000000000000000000000000000
--- a/webrtc/modules/video_coding/codecs/vp8/vp8_factory.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- *
- */
-
-#ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_FACTORY_H_
-#define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_FACTORY_H_
-
-namespace webrtc {
-
-// VP8EncoderFactoryConfig is the interface to control the VP8Encoder::Create
-// to create VP8EncoderImpl or SimulcastEncoderAdapter+VP8EncoderImpl.
-// TODO(ronghuawu): Remove when SimulcastEncoderAdapter+VP8EncoderImpl is ready
-// to replace VP8EncoderImpl.
-class VP8EncoderFactoryConfig {
- public:
- static void set_use_simulcast_adapter(bool use_simulcast_adapter) {
- use_simulcast_adapter_ = use_simulcast_adapter;
- }
- static bool use_simulcast_adapter() { return use_simulcast_adapter_; }
-
- private:
- static bool use_simulcast_adapter_;
-};
-
-} // namespace webrtc
-
-#endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_FACTORY_H_
« no previous file with comments | « webrtc/modules/video_coding/codecs/vp8/vp8.gyp ('k') | webrtc/modules/video_coding/codecs/vp8/vp8_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698