]> git.sesse.net Git - casparcg/blob - core/producer/frame/basic_frame.h
2.0. mixer: Refactored transforms, merged image and audio transform.
[casparcg] / core / producer / frame / basic_frame.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 "frame_visitor.h"\r
23 \r
24 #include <core/video_format.h>\r
25 \r
26 #include <common/memory/safe_ptr.h>\r
27 \r
28 #include <boost/range/iterator_range.hpp>\r
29 \r
30 #include <vector>\r
31 \r
32 namespace caspar { namespace core {\r
33 \r
34 struct frame_transform;\r
35 \r
36 class basic_frame\r
37 {\r
38         basic_frame(std::vector<safe_ptr<basic_frame>>&& frames);\r
39 public:\r
40         basic_frame();  \r
41         basic_frame(const safe_ptr<basic_frame>& frame);\r
42         basic_frame(safe_ptr<basic_frame>&& frame);\r
43         basic_frame(const std::vector<safe_ptr<basic_frame>>& frames);\r
44         basic_frame(const basic_frame& other);\r
45         basic_frame(basic_frame&& other);\r
46 \r
47         basic_frame& operator=(const basic_frame& other);\r
48         basic_frame& operator=(basic_frame&& other);\r
49         \r
50         void swap(basic_frame& other);\r
51 \r
52         const frame_transform& get_frame_transform() const;\r
53         frame_transform& get_frame_transform();\r
54                                 \r
55         static safe_ptr<basic_frame> interlace(const safe_ptr<basic_frame>& frame1, const safe_ptr<basic_frame>& frame2, field_mode::type mode);\r
56         static safe_ptr<basic_frame> combine(const safe_ptr<basic_frame>& frame1, const safe_ptr<basic_frame>& frame2);\r
57         static safe_ptr<basic_frame> fill_and_key(const safe_ptr<basic_frame>& fill, const safe_ptr<basic_frame>& key);\r
58                 \r
59         static const safe_ptr<basic_frame>& eof()\r
60         {\r
61                 static safe_ptr<basic_frame> frame = make_safe<basic_frame>();\r
62                 return frame;\r
63         }\r
64 \r
65         static const safe_ptr<basic_frame>& empty()\r
66         {\r
67                 static safe_ptr<basic_frame> frame = make_safe<basic_frame>();\r
68                 return frame;\r
69         }\r
70 \r
71         static const safe_ptr<basic_frame>& late()\r
72         {\r
73                 static safe_ptr<basic_frame> frame = make_safe<basic_frame>();\r
74                 return frame;\r
75         }\r
76         \r
77         virtual void accept(frame_visitor& visitor);\r
78 \r
79         virtual std::wstring print() const;\r
80 private:\r
81         struct implementation;\r
82         safe_ptr<implementation> impl_;\r
83 };\r
84 \r
85 safe_ptr<basic_frame> disable_audio(const safe_ptr<basic_frame>& frame);\r
86 \r
87 inline bool is_concrete_frame(const safe_ptr<basic_frame>& frame)\r
88 {\r
89         return frame != basic_frame::empty() && frame != basic_frame::eof() && frame != basic_frame::late();\r
90 }\r
91 \r
92 inline bool is_concrete_frame(const std::shared_ptr<basic_frame>& frame)\r
93 {\r
94         return frame != nullptr && frame.get() != basic_frame::empty().get() && frame.get() != basic_frame::eof().get() && frame.get() != basic_frame::late().get();\r
95 }\r
96 \r
97 }}