Index: remoting/protocol/video_writer.cc |
diff --git a/remoting/protocol/video_writer.cc b/remoting/protocol/video_writer.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c45101011da84917c46b2ea13f9fa938a884582e |
--- /dev/null |
+++ b/remoting/protocol/video_writer.cc |
@@ -0,0 +1,26 @@ |
+// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "remoting/protocol/video_writer.h" |
+ |
+#include "remoting/protocol/chromotocol_config.h" |
+#include "remoting/protocol/protobuf_video_writer.h" |
+#include "remoting/protocol/rtp_video_writer.h" |
+ |
+namespace remoting { |
+ |
+VideoWriter::~VideoWriter() { } |
+ |
+// static |
+VideoWriter* VideoWriter::Create(const ChromotocolConfig* config) { |
+ const ChannelConfig& video_config = config->video_config(); |
+ if (video_config.transport == ChannelConfig::TRANSPORT_SRTP) { |
+ return new RtpVideoWriter(); |
+ } else if (video_config.transport == ChannelConfig::TRANSPORT_STREAM) { |
+ return new ProtobufVideoWriter(); |
+ } |
+ return NULL; |
+} |
+ |
+} // namespace remoting |