diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-12 10:35:33 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-12 10:35:33 +0000 |
commit | 34a0d6d0a29eb88151596d491f1ac541e6d255c0 (patch) | |
tree | 6c1248996eb14f3bef97abe9b73964b71feb0a51 /remoting/client | |
parent | 3c14b6f742687edae55cef63c3578d85f20e4161 (diff) | |
download | chromium_src-34a0d6d0a29eb88151596d491f1ac541e6d255c0.zip chromium_src-34a0d6d0a29eb88151596d491f1ac541e6d255c0.tar.gz chromium_src-34a0d6d0a29eb88151596d491f1ac541e6d255c0.tar.bz2 |
Build remoting with libvpx in all platforms
Now that libvpx is building on ARM remoting should use it on all
platforms.
BUG=47285
TEST=chromoting runs on ARM
Review URL: http://codereview.chromium.org/7623020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96543 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client')
-rw-r--r-- | remoting/client/rectangle_update_decoder.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/remoting/client/rectangle_update_decoder.cc b/remoting/client/rectangle_update_decoder.cc index 5476011..aabbecf 100644 --- a/remoting/client/rectangle_update_decoder.cc +++ b/remoting/client/rectangle_update_decoder.cc @@ -64,12 +64,9 @@ void RectangleUpdateDecoder::Initialize(const SessionConfig* config) { } else if (codec == ChannelConfig::CODEC_ZIP) { TraceContext::tracer()->PrintString("Creating Zlib decoder"); decoder_.reset(DecoderRowBased::CreateZlibDecoder()); - // TODO(sergeyu): Enable VP8 on ARM builds. -#if !defined(ARCH_CPU_ARM_FAMILY) } else if (codec == ChannelConfig::CODEC_VP8) { - TraceContext::tracer()->PrintString("Creating VP8 decoder"); - decoder_.reset(new DecoderVp8()); -#endif + TraceContext::tracer()->PrintString("Creating VP8 decoder"); + decoder_.reset(new DecoderVp8()); } else { NOTREACHED() << "Invalid Encoding found: " << codec; } |