]> git.sesse.net Git - casparcg/blob - core/producer/frame_producer.cpp
2.1.0: -ffmpeg_producer: Always de-interlace interlaced content. Fixed PAUSE with...
[casparcg] / core / producer / frame_producer.cpp
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 #include "../StdAfx.h"\r
23 \r
24 #include "frame_producer.h"\r
25 \r
26 #include "../frame/draw_frame.h"\r
27 #include "../frame/frame_transform.h"\r
28 \r
29 #include "color/color_producer.h"\r
30 #include "separated/separated_producer.h"\r
31 \r
32 #include <common/assert.h>\r
33 #include <common/except.h>\r
34 #include <common/executor.h>\r
35 #include <common/future.h>\r
36 #include <common/memory.h>\r
37 \r
38 #include <boost/thread.hpp>\r
39 \r
40 namespace caspar { namespace core {\r
41         \r
42 std::vector<const producer_factory_t> g_factories;\r
43 \r
44 void register_producer_factory(const producer_factory_t& factory)\r
45 {\r
46         g_factories.push_back(factory);\r
47 }\r
48 \r
49 struct frame_producer_impl::impl\r
50 {\r
51         tbb::atomic<uint32_t>   frame_number_;\r
52         tbb::atomic<bool>               paused_;\r
53         frame_producer_impl&    self_;\r
54         draw_frame                              last_frame_;\r
55 \r
56         impl(frame_producer_impl& self)\r
57                 : self_(self)\r
58                 , last_frame_(draw_frame::empty())\r
59         {\r
60                 frame_number_ = 0;\r
61                 paused_ = false;\r
62         }\r
63         \r
64         draw_frame receive()\r
65         {\r
66                 if(paused_)\r
67                         return self_.last_frame();\r
68 \r
69                 auto frame = draw_frame::push(self_.receive_impl());\r
70                 if(frame != draw_frame::late())\r
71                         ++frame_number_;\r
72 \r
73                 return last_frame_ = frame;\r
74         }\r
75 \r
76         void paused(bool value)\r
77         {\r
78                 paused_ = value;\r
79         }\r
80 \r
81         draw_frame last_frame() const\r
82         {\r
83                 return draw_frame::still(last_frame_);\r
84         }\r
85 };\r
86 \r
87 frame_producer_impl::frame_producer_impl() : impl_(new impl(*this))\r
88 {\r
89 }\r
90 \r
91 draw_frame frame_producer_impl::receive()\r
92 {\r
93         return impl_->receive();\r
94 }\r
95 \r
96 void frame_producer_impl::paused(bool value)\r
97 {\r
98         impl_->paused(value);\r
99 }\r
100 \r
101 draw_frame frame_producer_impl::last_frame() const\r
102 {\r
103         return impl_->last_frame();\r
104 }\r
105 \r
106 boost::unique_future<std::wstring> frame_producer_impl::call(const std::wstring&) \r
107 {\r
108         BOOST_THROW_EXCEPTION(not_supported());\r
109 }\r
110 \r
111 uint32_t frame_producer_impl::nb_frames() const\r
112 {\r
113         return std::numeric_limits<uint32_t>::max();\r
114 }\r
115 \r
116 uint32_t frame_producer_impl::frame_number() const\r
117 {\r
118         return impl_->frame_number_;\r
119 }\r
120 \r
121 const spl::shared_ptr<frame_producer>& frame_producer::empty() \r
122 {\r
123         class empty_frame_producer : public frame_producer\r
124         {\r
125         public:\r
126                 empty_frame_producer(){}\r
127                 draw_frame receive() override{return draw_frame::empty();}\r
128                 void paused(bool value) override{}\r
129                 uint32_t nb_frames() const override {return 0;}\r
130                 std::wstring print() const override { return L"empty";}\r
131                 void subscribe(const monitor::observable::observer_ptr& o) override{}\r
132                 void unsubscribe(const monitor::observable::observer_ptr& o) override{} \r
133                 std::wstring name() const override {return L"empty";}\r
134                 uint32_t frame_number() const override {return 0;}\r
135                 boost::unique_future<std::wstring> call(const std::wstring& params) override{BOOST_THROW_EXCEPTION(not_supported());}\r
136                 draw_frame last_frame() const {return draw_frame::empty();}\r
137         \r
138                 boost::property_tree::wptree info() const override\r
139                 {\r
140                         boost::property_tree::wptree info;\r
141                         info.add(L"type", L"empty-producer");\r
142                         return info;\r
143                 }\r
144         };\r
145 \r
146         static spl::shared_ptr<frame_producer> producer = spl::make_shared<empty_frame_producer>();\r
147         return producer;\r
148 }       \r
149 \r
150 class destroy_producer_proxy : public frame_producer\r
151 {       \r
152         std::shared_ptr<frame_producer> producer_;\r
153 public:\r
154         destroy_producer_proxy(spl::shared_ptr<frame_producer>&& producer) \r
155                 : producer_(std::move(producer))\r
156         {\r
157         }\r
158 \r
159         virtual ~destroy_producer_proxy()\r
160         {               \r
161                 static tbb::atomic<int> counter = tbb::atomic<int>();\r
162                 \r
163                 if(producer_ == core::frame_producer::empty())\r
164                         return;\r
165 \r
166                 ++counter;\r
167                 CASPAR_VERIFY(counter < 8);\r
168                 \r
169                 auto producer = new spl::shared_ptr<frame_producer>(std::move(producer_));\r
170                 boost::thread([=]\r
171                 {\r
172                         std::unique_ptr<spl::shared_ptr<frame_producer>> pointer_guard(producer);\r
173                         auto str = (*producer)->print();\r
174                         try\r
175                         {\r
176                                 if(!producer->unique())\r
177                                         CASPAR_LOG(trace) << str << L" Not destroyed on asynchronous destruction thread: " << producer->use_count();\r
178                                 else\r
179                                         CASPAR_LOG(trace) << str << L" Destroying on asynchronous destruction thread.";\r
180                         }\r
181                         catch(...){}\r
182                         \r
183                         pointer_guard.reset();\r
184                         CASPAR_LOG(info) << str << L" Destroyed.";\r
185 \r
186                         --counter;\r
187                 }).detach(); \r
188         }\r
189         \r
190         draw_frame      receive() override                                                                                                                                                                                                              {return producer_->receive();}\r
191         std::wstring                                                                            print() const override                                                                                                                  {return producer_->print();}\r
192         void                                                                                            paused(bool value) override                                                                                                             {producer_->paused(value);}\r
193         std::wstring                                                                            name() const override                                                                                                                   {return producer_->name();}\r
194         void                                                                                            puased(bool value)                                                                                                                              {producer_->paused(value);}\r
195         uint32_t                                                                                        frame_number() const override                                                                                                   {return producer_->frame_number();}\r
196         boost::property_tree::wptree                                            info() const override                                                                                                                   {return producer_->info();}\r
197         boost::unique_future<std::wstring>                                      call(const std::wstring& str) override                                                                                  {return producer_->call(str);}\r
198         void                                                                                            leading_producer(const spl::shared_ptr<frame_producer>& producer) override              {return producer_->leading_producer(producer);}\r
199         uint32_t                                                                                        nb_frames() const override                                                                                                              {return producer_->nb_frames();}\r
200         class draw_frame                                                                        last_frame() const                                                                                                                              {return producer_->last_frame();}\r
201         void                                                                                            subscribe(const monitor::observable::observer_ptr& o)                                                   {return producer_->subscribe(o);}\r
202         void                                                                                            unsubscribe(const monitor::observable::observer_ptr& o)                                                 {return producer_->unsubscribe(o);}\r
203 };\r
204 \r
205 spl::shared_ptr<core::frame_producer> create_destroy_proxy(spl::shared_ptr<core::frame_producer> producer)\r
206 {\r
207         return spl::make_shared<destroy_producer_proxy>(std::move(producer));\r
208 }\r
209 \r
210 spl::shared_ptr<core::frame_producer> do_create_producer(const spl::shared_ptr<frame_factory>& my_frame_factory, const video_format_desc& format_desc, const std::vector<std::wstring>& params)\r
211 {\r
212         if(params.empty())\r
213                 BOOST_THROW_EXCEPTION(invalid_argument() << arg_name_info("params") << arg_value_info(""));\r
214         \r
215         auto producer = frame_producer::empty();\r
216         std::any_of(g_factories.begin(), g_factories.end(), [&](const producer_factory_t& factory) -> bool\r
217                 {\r
218                         try\r
219                         {\r
220                                 producer = factory(my_frame_factory, format_desc, params);\r
221                         }\r
222                         catch(...)\r
223                         {\r
224                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
225                         }\r
226                         return producer != frame_producer::empty();\r
227                 });\r
228 \r
229         if(producer == frame_producer::empty())\r
230                 producer = create_color_producer(my_frame_factory, params);\r
231 \r
232         if(producer == frame_producer::empty())\r
233                 return producer;\r
234                 \r
235         return create_destroy_proxy(producer);\r
236 }\r
237 \r
238 spl::shared_ptr<core::frame_producer> create_producer(const spl::shared_ptr<frame_factory>& my_frame_factory, const video_format_desc& format_desc, const std::vector<std::wstring>& params)\r
239 {       \r
240         auto producer = do_create_producer(my_frame_factory, format_desc, params);\r
241         auto key_producer = frame_producer::empty();\r
242         \r
243         try // to find a key file.\r
244         {\r
245                 auto params_copy = params;\r
246                 if(params_copy.size() > 0)\r
247                 {\r
248                         params_copy[0] += L"_A";\r
249                         key_producer = do_create_producer(my_frame_factory, format_desc, params_copy);                  \r
250                         if(key_producer == frame_producer::empty())\r
251                         {\r
252                                 params_copy[0] += L"LPHA";\r
253                                 key_producer = do_create_producer(my_frame_factory, format_desc, params_copy);  \r
254                         }\r
255                 }\r
256         }\r
257         catch(...){}\r
258 \r
259         if(producer != frame_producer::empty() && key_producer != frame_producer::empty())\r
260                 return create_separated_producer(producer, key_producer);\r
261         \r
262         if(producer == frame_producer::empty())\r
263         {\r
264                 std::wstring str;\r
265                 BOOST_FOREACH(auto& param, params)\r
266                         str += param + L" ";\r
267                 BOOST_THROW_EXCEPTION(file_not_found() << msg_info("No match found for supplied commands. Check syntax.") << arg_value_info(u8(str)));\r
268         }\r
269 \r
270         return producer;\r
271 }\r
272 \r
273 \r
274 spl::shared_ptr<core::frame_producer> create_producer(const spl::shared_ptr<frame_factory>& factory, const video_format_desc& format_desc, const std::wstring& params)\r
275 {\r
276         std::wstringstream iss(params);\r
277         std::vector<std::wstring> tokens;\r
278         typedef std::istream_iterator<std::wstring, wchar_t, std::char_traits<wchar_t> > iterator;\r
279         std::copy(iterator(iss),  iterator(), std::back_inserter(tokens));\r
280         return create_producer(factory, format_desc, tokens);\r
281 }\r
282 \r
283 }}