| Index: remoting/host/chromoting_host.cc
|
| diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
|
| index 1d42059425fd92743d49edec0e46b872983a5221..1aeaae73c5127ae35539a6135680dc22a5a1918b 100644
|
| --- a/remoting/host/chromoting_host.cc
|
| +++ b/remoting/host/chromoting_host.cc
|
| @@ -415,13 +415,9 @@ Encoder* ChromotingHost::CreateEncoder(const protocol::SessionConfig* config) {
|
| return EncoderRowBased::CreateVerbatimEncoder();
|
| } else if (video_config.codec == protocol::ChannelConfig::CODEC_ZIP) {
|
| return EncoderRowBased::CreateZlibEncoder();
|
| - }
|
| - // TODO(sergeyu): Enable VP8 on ARM builds.
|
| -#if !defined(ARCH_CPU_ARM_FAMILY)
|
| - else if (video_config.codec == protocol::ChannelConfig::CODEC_VP8) {
|
| + } else if (video_config.codec == protocol::ChannelConfig::CODEC_VP8) {
|
| return new remoting::EncoderVp8();
|
| }
|
| -#endif
|
|
|
| return NULL;
|
| }
|
|
|