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

Unified Diff: remoting/protocol/video_reader.cc

Issue 26921005: Add VP9 decode support to the remoting client. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update libvpx/webm comment. Created 7 years, 2 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
« no previous file with comments | « remoting/protocol/session_config.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/video_reader.cc
diff --git a/remoting/protocol/video_reader.cc b/remoting/protocol/video_reader.cc
index 8fd3afe5eb53dccd5deab9ebdc0d07b16b3b41b3..0dfa10ac02157f73661d5af103456fd40d224360 100644
--- a/remoting/protocol/video_reader.cc
+++ b/remoting/protocol/video_reader.cc
@@ -19,6 +19,9 @@ scoped_ptr<VideoReader> VideoReader::Create(const SessionConfig& config) {
if (video_config.codec == ChannelConfig::CODEC_VP8) {
return scoped_ptr<VideoReader>(
new ProtobufVideoReader(VideoPacketFormat::ENCODING_VP8));
+ } else if (video_config.codec == ChannelConfig::CODEC_VP9) {
+ return scoped_ptr<VideoReader>(
+ new ProtobufVideoReader(VideoPacketFormat::ENCODING_VP9));
} else if (video_config.codec == ChannelConfig::CODEC_ZIP) {
return scoped_ptr<VideoReader>(
new ProtobufVideoReader(VideoPacketFormat::ENCODING_ZLIB));
« no previous file with comments | « remoting/protocol/session_config.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698