summaryrefslogtreecommitdiffstats
path: root/remoting/protocol/video_writer.cc
blob: 04f03f3fd1c907650b69d1e3e50dbb5de03860f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) 2012 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/session_config.h"
#include "remoting/protocol/protobuf_video_writer.h"

namespace remoting {
namespace protocol {

VideoWriter::~VideoWriter() { }

// static
scoped_ptr<VideoWriter> VideoWriter::Create(const SessionConfig& config) {
  const ChannelConfig& video_config = config.video_config();
  if (video_config.transport == ChannelConfig::TRANSPORT_STREAM) {
    return scoped_ptr<VideoWriter>(new ProtobufVideoWriter());
  }
  return scoped_ptr<VideoWriter>(NULL);
}

}  // namespace protocol
}  // namespace remoting