]> git.sesse.net Git - casparcg/blob - core/consumer/output.h
* Upgraded to Visual Studio 2013
[casparcg] / core / consumer / output.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: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #include "../monitor/monitor.h"
25
26 #include <common/forward.h>
27 #include <common/future_fwd.h>
28 #include <common/memory.h>
29 #include <common/reactive.h>
30
31 #include <boost/property_tree/ptree_fwd.hpp>
32
33 FORWARD2(caspar, diagnostics, class graph);
34
35 namespace caspar { namespace core {
36         
37 class output sealed
38 {
39         output(const output&);
40         output& operator=(const output&);
41 public:
42
43         // Static Members
44
45         // Constructors
46
47         explicit output(spl::shared_ptr<diagnostics::graph> graph, const struct video_format_desc& format_desc, int channel_index);
48         
49         // Methods
50
51         void operator()(class const_frame frame, const struct video_format_desc& format_desc);
52         
53         void add(const spl::shared_ptr<class frame_consumer>& consumer);
54         void add(int index, const spl::shared_ptr<class frame_consumer>& consumer);
55         void remove(const spl::shared_ptr<class frame_consumer>& consumer);
56         void remove(int index);
57         
58         monitor::subject& monitor_output();
59
60         // Properties
61
62         std::future<boost::property_tree::wptree> info() const;
63
64 private:
65         struct impl;
66         spl::shared_ptr<impl> impl_;
67 };
68
69 }}