]> git.sesse.net Git - casparcg/blob - protocol/amcp/AMCPProtocolStrategy.h
[psd] Fixed wrong animation pace when interlaced video formats are used.
[casparcg] / protocol / amcp / AMCPProtocolStrategy.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Nicklas P Andersson
20 */
21
22 #pragma once
23
24 #include "../util/ProtocolStrategy.h"
25
26 #include <core/video_channel.h>
27 #include <core/thumbnail_generator.h>
28 #include <core/producer/media_info/media_info_repository.h>
29 #include <core/producer/cg_proxy.h>
30 #include <core/system_info_provider.h>
31
32 #include <common/memory.h>
33
34 #include <boost/noncopyable.hpp>
35
36 #include <string>
37 #include <future>
38
39 namespace caspar { namespace protocol { namespace amcp {
40
41 class AMCPProtocolStrategy : public IO::IProtocolStrategy, boost::noncopyable
42 {
43 public:
44         AMCPProtocolStrategy(const std::wstring& name, const spl::shared_ptr<class amcp_command_repository>& repo);
45
46         virtual ~AMCPProtocolStrategy();
47
48         virtual void Parse(const std::wstring& msg, IO::ClientInfoPtr pClientInfo);
49         virtual std::string GetCodepage() const { return "UTF-8"; }
50
51 private:
52         struct impl;
53         spl::unique_ptr<impl> impl_;
54 };
55
56 }}}