]> git.sesse.net Git - casparcg/blob - core/mixer/mixer.h
set svn:eol-style native on .h and .cpp files
[casparcg] / core / mixer / mixer.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 "image/blend_modes.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 <core/video_format.h>
32
33 #include <boost/property_tree/ptree_fwd.hpp>
34
35 #include <map>
36
37 FORWARD2(caspar, diagnostics, class graph);
38
39 namespace caspar { namespace core {
40         
41 class mixer sealed
42 {
43         mixer(const mixer&);
44         mixer& operator=(const mixer&);
45 public:
46         
47         // Static Members
48                                         
49         // Constructors
50         
51         explicit mixer(spl::shared_ptr<diagnostics::graph> graph, spl::shared_ptr<class image_mixer> image_mixer);
52
53         // Methods
54                 
55         class const_frame operator()(std::map<int, class draw_frame> frames, const struct video_format_desc& format_desc);
56         
57         void set_blend_mode(int index, blend_mode value);
58
59         class mutable_frame create_frame(const void* tag, const struct pixel_format_desc& desc);
60
61         // Properties
62
63         boost::unique_future<boost::property_tree::wptree> info() const;
64
65 private:
66         struct impl;
67         spl::shared_ptr<impl> impl_;
68 };
69
70 }}