Chromium Code Reviews| Index: remoting/client/software_video_renderer.cc |
| diff --git a/remoting/client/software_video_renderer.cc b/remoting/client/software_video_renderer.cc |
| index 4d95e13f0b791df42cf201fc4ded498c1d6c50de..94c8600e71c4d0a865b39f1f575a73f9ef0f46c3 100644 |
| --- a/remoting/client/software_video_renderer.cc |
| +++ b/remoting/client/software_video_renderer.cc |
| @@ -16,7 +16,9 @@ |
| #include "remoting/client/frame_consumer.h" |
| #include "remoting/codec/video_decoder.h" |
| #include "remoting/codec/video_decoder_verbatim.h" |
| +#if !defined(MEDIA_DISABLE_LIBVPX) |
| #include "remoting/codec/video_decoder_vpx.h" |
|
Sergey Ulanov
2014/08/26 20:32:41
nit: remove if. It should look as follows
#endif
|
| +#endif // if !defined(MEDIA_DISABLE_LIBVPX) |
| #include "remoting/protocol/session_config.h" |
| #include "third_party/libyuv/include/libyuv/convert_argb.h" |
| #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" |
| @@ -147,11 +149,13 @@ void SoftwareVideoRenderer::Core::Initialize(const SessionConfig& config) { |
| ChannelConfig::Codec codec = config.video_config().codec; |
| if (codec == ChannelConfig::CODEC_VERBATIM) { |
| decoder_.reset(new VideoDecoderVerbatim()); |
| +#if !defined(MEDIA_DISABLE_LIBVPX) |
| } else if (codec == ChannelConfig::CODEC_VP8) { |
| decoder_ = VideoDecoderVpx::CreateForVP8(); |
| } else if (codec == ChannelConfig::CODEC_VP9) { |
| decoder_ = VideoDecoderVpx::CreateForVP9(); |
| } else { |
| +#endif // if !defined(MEDIA_DISABLE_LIBVPX) |
|
Sergey Ulanov
2014/08/26 20:32:41
Same here
|
| NOTREACHED() << "Invalid Encoding found: " << codec; |
| } |