]> git.sesse.net Git - casparcg/blob - core/producer/frame/basic_frame.h
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/trunk@2711...
[casparcg] / core / producer / frame / basic_frame.h
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\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 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #include "frame_visitor.h"\r
25 \r
26 #include <core/video_format.h>\r
27 \r
28 #include <common/memory/safe_ptr.h>\r
29 \r
30 #include <boost/range/iterator_range.hpp>\r
31 \r
32 #include <vector>\r
33 \r
34 namespace caspar { namespace core {\r
35 \r
36 struct frame_transform;\r
37 \r
38 class basic_frame\r
39 {\r
40 public:\r
41         basic_frame();  \r
42         basic_frame(const basic_frame& other);\r
43         basic_frame(basic_frame&& other);\r
44         virtual ~basic_frame(){}\r
45 \r
46         basic_frame(const safe_ptr<basic_frame>& frame);\r
47         basic_frame(safe_ptr<basic_frame>&& frame);\r
48         basic_frame(const std::vector<safe_ptr<basic_frame>>& frames);\r
49         basic_frame(std::vector<safe_ptr<basic_frame>>&& frames);\r
50 \r
51         basic_frame& operator=(const basic_frame& other);\r
52         basic_frame& operator=(basic_frame&& other);\r
53         \r
54         void swap(basic_frame& other);\r
55 \r
56         const frame_transform& get_frame_transform() const;\r
57         frame_transform& get_frame_transform();\r
58                                 \r
59         static safe_ptr<basic_frame> interlace(const safe_ptr<basic_frame>& frame1, const safe_ptr<basic_frame>& frame2, field_mode::type mode);\r
60         static safe_ptr<basic_frame> combine(const safe_ptr<basic_frame>& frame1, const safe_ptr<basic_frame>& frame2);\r
61         static safe_ptr<basic_frame> fill_and_key(const safe_ptr<basic_frame>& fill, const safe_ptr<basic_frame>& key);\r
62                 \r
63         static const safe_ptr<basic_frame>& eof()\r
64         {\r
65                 static safe_ptr<basic_frame> frame = make_safe<basic_frame>();\r
66                 return frame;\r
67         }\r
68 \r
69         static const safe_ptr<basic_frame>& empty()\r
70         {\r
71                 static safe_ptr<basic_frame> frame = make_safe<basic_frame>();\r
72                 return frame;\r
73         }\r
74 \r
75         static const safe_ptr<basic_frame>& late()\r
76         {\r
77                 static safe_ptr<basic_frame> frame = make_safe<basic_frame>();\r
78                 return frame;\r
79         }\r
80         \r
81         virtual void accept(frame_visitor& visitor);\r
82 private:\r
83         struct implementation;\r
84         safe_ptr<implementation> impl_;\r
85 };\r
86 \r
87 safe_ptr<basic_frame> disable_audio(const safe_ptr<basic_frame>& frame);\r
88 \r
89 inline bool is_concrete_frame(const safe_ptr<basic_frame>& frame)\r
90 {\r
91         return frame != basic_frame::empty() && frame != basic_frame::eof() && frame != basic_frame::late();\r
92 }\r
93 \r
94 inline bool is_concrete_frame(const std::shared_ptr<basic_frame>& frame)\r
95 {\r
96         return frame != nullptr && frame.get() != basic_frame::empty().get() && frame.get() != basic_frame::eof().get() && frame.get() != basic_frame::late().get();\r
97 }\r
98 \r
99 }}