]> git.sesse.net Git - casparcg/blob - core/mixer/mixer.h
2.0. image_mixer: Refactored blend-modes.
[casparcg] / core / mixer / mixer.h
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20 #pragma once\r
21 \r
22 #include "image/blend_modes.h"\r
23 \r
24 #include "../producer/frame/frame_factory.h"\r
25 \r
26 #include <common/memory/safe_ptr.h>\r
27 \r
28 #include <map>\r
29 \r
30 namespace caspar { \r
31 \r
32 class executor;\r
33         \r
34 namespace core {\r
35 \r
36 class read_frame;\r
37 class write_frame;\r
38 class basic_frame;\r
39 class audio_transform;\r
40 class image_transform;\r
41 class video_channel_context;;\r
42 struct pixel_format;\r
43 \r
44 class mixer : public core::frame_factory\r
45 {\r
46 public: \r
47 \r
48         explicit mixer(video_channel_context& video_channel);\r
49                 \r
50         safe_ptr<core::read_frame> execute(const std::map<int, safe_ptr<core::basic_frame>>& frames); // nothrow\r
51                 \r
52         safe_ptr<core::write_frame> create_frame(const void* tag, const core::pixel_format_desc& desc);         \r
53         safe_ptr<core::write_frame> create_frame(const void* tag, size_t width, size_t height, core::pixel_format::type pix_fmt = core::pixel_format::bgra);            \r
54         \r
55         core::video_format_desc get_video_format_desc() const; // nothrow\r
56 \r
57         void reset_transforms();\r
58 \r
59         void set_image_transform(int index, const core::image_transform& transform, unsigned int mix_duration = 0, const std::wstring& tween = L"linear");\r
60         void set_audio_transform(int index, const core::audio_transform& transform, unsigned int mix_duration = 0, const std::wstring& tween = L"linear");\r
61         void apply_image_transform(int index, const std::function<core::image_transform(core::image_transform)>& transform, unsigned int mix_duration = 0, const std::wstring& tween = L"linear");\r
62         void apply_audio_transform(int index, const std::function<core::audio_transform(core::audio_transform)>& transform, unsigned int mix_duration = 0, const std::wstring& tween = L"linear");\r
63 \r
64         void set_blend_mode(int index, blend_mode::type value);\r
65 \r
66 private:\r
67         struct implementation;\r
68         safe_ptr<implementation> impl_;\r
69 };\r
70 \r
71 }}