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

Unified Diff: remoting/host/chromoting_host.cc

Issue 5382008: Refactor ZLib and Verbatim encoders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month 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: remoting/host/chromoting_host.cc
diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
index c713384b7db01b2b19c55db01eec653bddad9901..5b1328c20b8c80f3dad0dbf30acce1c7c04fa3a6 100644
--- a/remoting/host/chromoting_host.cc
+++ b/remoting/host/chromoting_host.cc
@@ -9,9 +9,8 @@
#include "build/build_config.h"
#include "remoting/base/constants.h"
#include "remoting/base/encoder.h"
-#include "remoting/base/encoder_verbatim.h"
+#include "remoting/base/encoder_row_based.h"
#include "remoting/base/encoder_vp8.h"
-#include "remoting/base/encoder_zlib.h"
#include "remoting/host/capturer.h"
#include "remoting/host/chromoting_host_context.h"
#include "remoting/host/event_executor.h"
@@ -315,9 +314,9 @@ Encoder* ChromotingHost::CreateEncoder(const protocol::SessionConfig* config) {
const protocol::ChannelConfig& video_config = config->video_config();
if (video_config.codec == protocol::ChannelConfig::CODEC_VERBATIM) {
- return new remoting::EncoderVerbatim();
+ return EncoderRowBased::CreateVerbatimEncoder();
} else if (video_config.codec == protocol::ChannelConfig::CODEC_ZIP) {
- return new remoting::EncoderZlib();
+ return EncoderRowBased::CreateZlibEncoder();
}
// TODO(sergeyu): Enable VP8 on ARM builds.
#if !defined(ARCH_CPU_ARM_FAMILY)

Powered by Google App Engine
This is Rietveld 408576698