]> git.sesse.net Git - casparcg/blob - mixer/frame_mixer_device.h
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / 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 "fwd.h"\r
23 \r
24 #include "frame_factory.h"\r
25 \r
26 #include "image/image_mixer.h"\r
27 #include "audio/audio_mixer.h"\r
28 \r
29 #include "frame/write_frame.h"\r
30 #include "frame/pixel_format.h"\r
31 \r
32 #include <common/memory/safe_ptr.h>\r
33 #include <common/utility/printer.h>\r
34 \r
35 #include <functional>\r
36 \r
37 namespace caspar { namespace core {\r
38         \r
39 struct video_format;\r
40 \r
41 class frame_mixer_device : public frame_factory\r
42 {\r
43 public:\r
44         typedef std::function<void(const safe_ptr<const read_frame>&)> output_func;\r
45 \r
46         frame_mixer_device(const printer& parent_printer, const video_format_desc& format_desc, const output_func& output);\r
47         frame_mixer_device(frame_mixer_device&& other); // nothrow\r
48                 \r
49         void send(const std::vector<safe_ptr<draw_frame>>& frames); // nothrow\r
50                 \r
51         safe_ptr<write_frame> create_frame(const pixel_format_desc& desc);              \r
52         safe_ptr<write_frame> create_frame(size_t width, size_t height, pixel_format::type pix_fmt = pixel_format::bgra);                       \r
53         safe_ptr<write_frame> create_frame(pixel_format::type pix_fmt = pixel_format::bgra);\r
54         \r
55         const video_format_desc& get_video_format_desc() const; // nothrow\r
56 \r
57         void set_image_transform(const image_transform& transform, int mix_duration = 0);\r
58         void set_image_transform(int index, const image_transform& transform, int mix_duration = 0);\r
59 \r
60         void set_audio_transform(const audio_transform& transform, int mix_duration = 0);\r
61         void set_audio_transform(int index, const audio_transform& transform, int mix_duration = 0);\r
62         \r
63         void apply_image_transform(const std::function<image_transform(image_transform)>& transform, int mix_duration = 0);\r
64         void apply_image_transform(int index, const std::function<image_transform(image_transform)>& transform, int mix_duration = 0);\r
65 \r
66         void apply_audio_transform(const std::function<audio_transform(audio_transform)>& transform, int mix_duration = 0);\r
67         void apply_audio_transform(int index, const std::function<audio_transform(audio_transform)>& transform, int mix_duration = 0);\r
68 \r
69 private:\r
70         struct implementation;\r
71         safe_ptr<implementation> impl_;\r
72 };\r
73 \r
74 }}