]> git.sesse.net Git - casparcg/blob - core/mixer/frame_mixer_device.h
2.0.0.2: Merged mixer into core/mixer.
[casparcg] / core / mixer / frame_mixer_device.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 <core/consumer/frame/read_frame.h>\r
23 #include <core/producer/frame/write_frame.h>\r
24 #include <core/producer/frame/frame_factory.h>\r
25 #include <core/producer/frame/pixel_format.h>\r
26 \r
27 #include "image/image_mixer.h"\r
28 #include "audio/audio_mixer.h"\r
29 \r
30 #include <common/memory/safe_ptr.h>\r
31 \r
32 #include <boost/signals2.hpp>\r
33 \r
34 #include <functional>\r
35 \r
36 namespace caspar { namespace mixer {\r
37         \r
38 class frame_mixer_device : public core::frame_factory\r
39 {\r
40 public:\r
41         typedef boost::signals2::signal<void(const safe_ptr<const core::read_frame>&)> output_t;\r
42          \r
43         boost::signals2::connection connect(const output_t::slot_type& subscriber);\r
44         \r
45         frame_mixer_device(const core::video_format_desc& format_desc);\r
46         frame_mixer_device(frame_mixer_device&& other); // nothrow\r
47                 \r
48         void send(const std::map<int, safe_ptr<core::basic_frame>>& frames); // nothrow\r
49                 \r
50         safe_ptr<core::write_frame> create_frame(void* tag, const core::pixel_format_desc& desc);               \r
51         safe_ptr<core::write_frame> create_frame(void* tag, size_t width, size_t height, core::pixel_format::type pix_fmt = core::pixel_format::bgra);                  \r
52         safe_ptr<core::write_frame> create_frame(void* tag, core::pixel_format::type pix_fmt = core::pixel_format::bgra);\r
53         \r
54         const core::video_format_desc& get_video_format_desc() const; // nothrow\r
55 \r
56         void set_image_transform(const core::image_transform& transform, int mix_duration = 0, const std::wstring& tween = L"linear");\r
57         void set_image_transform(int index, const core::image_transform& transform, int mix_duration = 0, const std::wstring& tween = L"linear");\r
58 \r
59         void set_audio_transform(const core::audio_transform& transform, int mix_duration = 0, const std::wstring& tween = L"linear");\r
60         void set_audio_transform(int index, const core::audio_transform& transform, int mix_duration = 0, const std::wstring& tween = L"linear");\r
61         \r
62         void apply_image_transform(const std::function<core::image_transform(core::image_transform)>& transform, int mix_duration = 0, const std::wstring& tween = L"linear");\r
63         void apply_image_transform(int index, const std::function<core::image_transform(core::image_transform)>& transform, int mix_duration = 0, const std::wstring& tween = L"linear");\r
64 \r
65         void apply_audio_transform(const std::function<core::audio_transform(core::audio_transform)>& transform, int mix_duration = 0, const std::wstring& tween = L"linear");\r
66         void apply_audio_transform(int index, const std::function<core::audio_transform(core::audio_transform)>& transform, int mix_duration = 0, const std::wstring& tween = L"linear");\r
67 \r
68         void reset_image_transform(int mix_duration = 0, const std::wstring& tween = L"linear");\r
69         void reset_image_transform(int index, int mix_duration = 0, const std::wstring& tween = L"linear");\r
70         void reset_audio_transform(int mix_duration = 0, const std::wstring& tween = L"linear");\r
71         void reset_audio_transform(int index, int mix_duration = 0, const std::wstring& tween = L"linear");\r
72 \r
73 private:\r
74         struct implementation;\r
75         safe_ptr<implementation> impl_;\r
76 };\r
77 \r
78 }}