]> git.sesse.net Git - casparcg/blob - core/mixer/mixer.h
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[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 #include <common/concurrency/target.h>\r
28 #include <common/diagnostics/graph.h>\r
29 \r
30 #include <map>\r
31 \r
32 namespace caspar { \r
33 \r
34 class executor;\r
35         \r
36 namespace core {\r
37 \r
38 class read_frame;\r
39 class write_frame;\r
40 class basic_frame;\r
41 class ogl_device;\r
42 struct frame_transform;\r
43 struct pixel_format;\r
44 \r
45 class mixer : public target<std::pair<std::map<int, safe_ptr<core::basic_frame>>, std::shared_ptr<void>>>, public core::frame_factory\r
46 {\r
47 public: \r
48         typedef target<std::pair<safe_ptr<read_frame>, std::shared_ptr<void>>> target_t;\r
49 \r
50         explicit mixer(const safe_ptr<diagnostics::graph>& graph, const safe_ptr<target_t>& target, const video_format_desc& format_desc, const safe_ptr<ogl_device>& ogl);\r
51                 \r
52         // target\r
53 \r
54         virtual void send(const std::pair<std::map<int, safe_ptr<basic_frame>>, std::shared_ptr<void>>& frames) override; \r
55                 \r
56         // mixer\r
57 \r
58         safe_ptr<core::write_frame> create_frame(const void* tag, const core::pixel_format_desc& desc);         \r
59         safe_ptr<core::write_frame> create_frame(const void* tag, size_t width, size_t height, pixel_format::type pix_fmt = pixel_format::bgra);                \r
60         \r
61         core::video_format_desc get_video_format_desc() const; // nothrow\r
62         void set_video_format_desc(const video_format_desc& format_desc);\r
63 \r
64         void set_frame_transform(int index, const core::frame_transform& transform, unsigned int mix_duration = 0, const std::wstring& tween = L"linear");\r
65         void apply_frame_transform(int index, const std::function<frame_transform(frame_transform)>& transform, unsigned int mix_duration = 0, const std::wstring& tween = L"linear");\r
66         void clear_transforms(int index);\r
67         void clear_transforms();\r
68 \r
69         void set_blend_mode(int index, blend_mode::type value);\r
70         \r
71 private:\r
72         struct implementation;\r
73         safe_ptr<implementation> impl_;\r
74 };\r
75 \r
76 }}