]> git.sesse.net Git - casparcg/blob - core/mixer/mixer.h
[CHANGELOG] Updated historical releases in CHANGELOG.
[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
30 #include <core/fwd.h>
31 #include <core/monitor/monitor.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 final
42 {
43         mixer(const mixer&);
44         mixer& operator=(const mixer&);
45 public:
46         
47         // Static Members
48                                         
49         // Constructors
50         
51         explicit mixer(int channel_index, spl::shared_ptr<caspar::diagnostics::graph> graph, spl::shared_ptr<image_mixer> image_mixer);
52
53         // Methods
54                 
55         const_frame operator()(std::map<int, draw_frame> frames, const video_format_desc& format_desc, const core::audio_channel_layout& channel_layout);
56
57         void set_master_volume(float volume);
58         float get_master_volume();
59         void set_straight_alpha_output(bool value);
60         bool get_straight_alpha_output();
61
62         mutable_frame create_frame(const void* tag, const pixel_format_desc& desc, const core::audio_channel_layout& channel_layout);
63
64         // Properties
65
66         std::future<boost::property_tree::wptree> info() const;
67         std::future<boost::property_tree::wptree> delay_info() const;
68
69         monitor::subject& monitor_output();
70
71 private:
72         struct impl;
73         spl::shared_ptr<impl> impl_;
74 };
75
76 }}