]> git.sesse.net Git - casparcg/blob - modules/flash/producer/flash_producer.cpp
2.0.0.2: Some flash optimizations.
[casparcg] / modules / flash / producer / flash_producer.cpp
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  \r
21 #include "../stdafx.h"\r
22 \r
23 #if defined(_MSC_VER)\r
24 #pragma warning (disable : 4146)\r
25 #pragma warning (disable : 4244)\r
26 #endif\r
27 \r
28 #include "flash_producer.h"\r
29 #include "FlashAxContainer.h"\r
30 \r
31 #include <core/video_format.h>\r
32 \r
33 #include <core/producer/frame/basic_frame.h>\r
34 #include <core/producer/frame/frame_factory.h>\r
35 #include <core/producer/frame/write_frame.h>\r
36 \r
37 #include <common/env.h>\r
38 #include <common/concurrency/executor.h>\r
39 #include <common/diagnostics/graph.h>\r
40 #include <common/memory/memcpy.h>\r
41 #include <common/memory/memclr.h>\r
42 #include <common/utility/timer.h>\r
43 \r
44 #include <boost/filesystem.hpp>\r
45 #include <boost/thread.hpp>\r
46 #include <boost/timer.hpp>\r
47 \r
48 #include <functional>\r
49 \r
50 namespace caspar {\r
51                 \r
52 class flash_renderer\r
53 {\r
54         struct co_init\r
55         {\r
56                 co_init(){CoInitialize(nullptr);}\r
57                 ~co_init(){CoUninitialize();}\r
58         } co_;\r
59         \r
60         const std::wstring filename_;\r
61         const core::video_format_desc format_desc_;\r
62 \r
63         std::shared_ptr<core::frame_factory> frame_factory_;\r
64         \r
65         BYTE* bmp_data_;        \r
66         std::shared_ptr<void> hdc_;\r
67         std::shared_ptr<void> bmp_;\r
68 \r
69         CComObject<caspar::flash::FlashAxContainer>* ax_;\r
70         safe_ptr<core::basic_frame> head_;\r
71         \r
72         safe_ptr<diagnostics::graph> graph_;\r
73         boost::timer perf_timer_;\r
74 \r
75         high_prec_timer timer_;\r
76         \r
77 public:\r
78         flash_renderer(const safe_ptr<diagnostics::graph>& graph, const std::shared_ptr<core::frame_factory>& frame_factory, const std::wstring& filename) \r
79                 : graph_(graph)\r
80                 , filename_(filename)\r
81                 , format_desc_(frame_factory->get_video_format_desc())\r
82                 , frame_factory_(frame_factory)\r
83                 , bmp_data_(nullptr)\r
84                 , hdc_(CreateCompatibleDC(0), DeleteDC)\r
85                 , ax_(nullptr)\r
86                 , head_(core::basic_frame::empty())\r
87         {\r
88                 graph_->add_guide("frame-time", 0.5f);\r
89                 graph_->set_color("frame-time", diagnostics::color(1.0f, 0.0f, 0.0f));  \r
90                 graph_->set_color("param", diagnostics::color(1.0f, 0.5f, 0.0f));       \r
91                 graph_->set_color("underflow", diagnostics::color(0.6f, 0.3f, 0.9f));                   \r
92                 \r
93                 if(FAILED(CComObject<caspar::flash::FlashAxContainer>::CreateInstance(&ax_)))\r
94                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to create FlashAxContainer"));\r
95                 \r
96                 ax_->set_print([this]{return L"";});\r
97 \r
98                 if(FAILED(ax_->CreateAxControl()))\r
99                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to Create FlashAxControl"));\r
100                 \r
101                 CComPtr<IShockwaveFlash> spFlash;\r
102                 if(FAILED(ax_->QueryControl(&spFlash)))\r
103                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to Query FlashAxControl"));\r
104                                                                                                 \r
105                 if(FAILED(spFlash->put_Playing(true)) )\r
106                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to start playing Flash"));\r
107 \r
108                 if(FAILED(spFlash->put_Movie(CComBSTR(filename.c_str()))))\r
109                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to Load Template Host"));\r
110                                                                                 \r
111                 if(FAILED(spFlash->put_ScaleMode(2)))  //Exact fit. Scale without respect to the aspect ratio.\r
112                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to Set Scale Mode"));\r
113                                                 \r
114                 ax_->SetFormat(format_desc_);\r
115                 \r
116                 BITMAPINFO info;\r
117                 memset(&info, 0, sizeof(BITMAPINFO));\r
118                 info.bmiHeader.biBitCount = 32;\r
119                 info.bmiHeader.biCompression = BI_RGB;\r
120                 info.bmiHeader.biHeight = -format_desc_.height;\r
121                 info.bmiHeader.biPlanes = 1;\r
122                 info.bmiHeader.biSize = sizeof(BITMAPINFO);\r
123                 info.bmiHeader.biWidth = format_desc_.width;\r
124 \r
125                 bmp_.reset(CreateDIBSection(static_cast<HDC>(hdc_.get()), &info, DIB_RGB_COLORS, reinterpret_cast<void**>(&bmp_data_), 0, 0), DeleteObject);\r
126                 SelectObject(static_cast<HDC>(hdc_.get()), bmp_.get()); \r
127                 CASPAR_LOG(info) << print() << L" Thread started.";\r
128         }\r
129 \r
130         ~flash_renderer()\r
131         {               \r
132                 if(ax_)\r
133                 {\r
134                         ax_->DestroyAxControl();\r
135                         ax_->Release();\r
136                 }\r
137                 CASPAR_LOG(info) << print() << L" Thread ended.";\r
138         }\r
139         \r
140         void param(const std::wstring& param)\r
141         {               \r
142                 if(!ax_->FlashCall(param))\r
143                         CASPAR_LOG(warning) << print() << " Flash function call failed. Param: " << param << ".";\r
144                 graph_->add_tag("param");\r
145 \r
146                 if(abs(ax_->GetFPS() - format_desc_.fps) > 0.001 && abs(ax_->GetFPS()/2.0 - format_desc_.fps) > 0.001)\r
147                         CASPAR_LOG(warning) << print() << " Invalid frame-rate: " << ax_->GetFPS() << L". Should be either " << format_desc_.fps << L" or " << format_desc_.fps*2.0 << L".";\r
148         }\r
149         \r
150         safe_ptr<core::basic_frame> render_frame(bool has_underflow)\r
151         {\r
152                 if(ax_->IsEmpty())\r
153                         return core::basic_frame::empty();\r
154 \r
155                 double frame_time = 1.0/ax_->GetFPS();\r
156                 \r
157                 perf_timer_.restart();\r
158                 ax_->Tick();\r
159                 if(has_underflow)\r
160                 {\r
161                         graph_->add_tag("underflow");\r
162                 }\r
163                 else\r
164                 {\r
165                         timer_.tick(frame_time);                \r
166                         if(ax_->InvalidRect())\r
167                         {                       \r
168                                 fast_memclr(bmp_data_,  format_desc_.size);\r
169                                 ax_->DrawControl(static_cast<HDC>(hdc_.get()));\r
170                 \r
171                                 auto frame = frame_factory_->create_frame(this);\r
172                                 fast_memcpy(frame->image_data().begin(), bmp_data_, format_desc_.size);\r
173                                 head_ = frame;\r
174                         }               \r
175                 }\r
176                 \r
177                 graph_->update_value("frame-time", static_cast<float>(perf_timer_.elapsed()/frame_time));\r
178                 return head_;\r
179         }\r
180 \r
181         double fps() const\r
182         {\r
183                 return ax_->GetFPS();   \r
184         }\r
185         \r
186         std::wstring print()\r
187         {\r
188                 return L"flash[" + boost::filesystem::wpath(filename_).filename() + L"]";               \r
189         }\r
190 };\r
191 \r
192 struct flash_producer : public core::frame_producer\r
193 {       \r
194         const std::wstring filename_;   \r
195         tbb::atomic<int> fps_;\r
196 \r
197         std::shared_ptr<diagnostics::graph> graph_;\r
198 \r
199         safe_ptr<core::basic_frame> tail_;\r
200         tbb::concurrent_bounded_queue<safe_ptr<core::basic_frame>> frame_buffer_;\r
201 \r
202         std::shared_ptr<flash_renderer> renderer_;\r
203         safe_ptr<core::frame_factory> frame_factory_;\r
204         const core::video_format_desc format_desc_;\r
205                         \r
206         executor executor_;\r
207                 \r
208 public:\r
209         flash_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& filename) \r
210                 : filename_(filename)           \r
211                 , tail_(core::basic_frame::empty())             \r
212                 , frame_factory_(frame_factory)\r
213                 , format_desc_(frame_factory->get_video_format_desc())\r
214                 , executor_(L"flash_producer", true)\r
215         {       \r
216                 if(!boost::filesystem::exists(filename))\r
217                         BOOST_THROW_EXCEPTION(file_not_found() << boost::errinfo_file_name(narrow(filename)));  \r
218                  \r
219                 frame_buffer_.set_capacity(5);\r
220                 graph_ = diagnostics::create_graph([this]{return print();});\r
221                 graph_->set_color("output-buffer", diagnostics::color(0.0f, 1.0f, 0.0f));\r
222                 \r
223                 executor_.begin_invoke([=]\r
224                 {\r
225                         init_renderer();\r
226                 });\r
227                                 \r
228                 executor_.begin_invoke([=]\r
229                 {\r
230                         render();\r
231                 });             \r
232 \r
233                 fps_ = 0;\r
234         }\r
235 \r
236         ~flash_producer()\r
237         {\r
238                 executor_.clear();\r
239                 CASPAR_ASSERT(executor_.is_running());\r
240                 frame_buffer_.clear();\r
241                 executor_.invoke([=]\r
242                 {\r
243                         renderer_ = nullptr;\r
244                 });             \r
245         }\r
246 \r
247         // frame_producer\r
248                 \r
249         virtual safe_ptr<core::basic_frame> receive()\r
250         {                               \r
251                 graph_->set_value("output-buffer", static_cast<float>(frame_buffer_.size())/static_cast<float>(frame_buffer_.capacity()));\r
252                 if(!frame_buffer_.try_pop(tail_))\r
253                         return tail_;\r
254                 \r
255                 return tail_;\r
256         }\r
257         \r
258         virtual void param(const std::wstring& param) \r
259         {       \r
260                 executor_.begin_invoke([=]\r
261                 {\r
262                         if(!renderer_)\r
263                                 init_renderer();\r
264 \r
265                         try\r
266                         {\r
267                                 renderer_->param(param);        \r
268                         }\r
269                         catch(...)\r
270                         {\r
271                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
272                                 renderer_ = nullptr;\r
273                         }\r
274                 });\r
275         }\r
276                 \r
277         virtual std::wstring print() const\r
278         { \r
279                 return L"flash[" + boost::filesystem::wpath(filename_).filename() + L", " + \r
280                                         boost::lexical_cast<std::wstring>(fps_) + L"]";         \r
281         }       \r
282 \r
283         // flash_producer\r
284 \r
285         void init_renderer()\r
286         {\r
287                 renderer_.reset(new flash_renderer(safe_ptr<diagnostics::graph>(graph_), frame_factory_, filename_));\r
288                 while(frame_buffer_.try_push(core::basic_frame::empty())){}             \r
289         }\r
290 \r
291         void render()\r
292         {\r
293                 if(!renderer_)\r
294                 {\r
295                         frame_buffer_.push(core::basic_frame::empty());\r
296                         return;\r
297                 }\r
298 \r
299                 try\r
300                 {               \r
301                         auto frame = core::basic_frame::empty();\r
302                         if(abs(renderer_->fps()/2.0 - format_desc_.fps) < 0.1) //flash 50, format 50i\r
303                         {\r
304                                 auto frame1 = renderer_->render_frame(frame_buffer_.size() < frame_buffer_.capacity()-2);\r
305                                 auto frame2 = renderer_->render_frame(frame_buffer_.size() < frame_buffer_.capacity()-2);\r
306                                 frame_buffer_.push(core::basic_frame::interlace(frame1, frame2, format_desc_.mode));\r
307                                 frame = frame2;\r
308                         }\r
309                         else if(abs(renderer_->fps()- format_desc_.fps/2.0 ) < 0.1) //flash 25, format 50p\r
310                         {\r
311                                 frame = renderer_->render_frame(frame_buffer_.size() < frame_buffer_.capacity()-2);\r
312                                 frame_buffer_.push(frame);\r
313                                 frame_buffer_.push(frame);\r
314                         }\r
315                         else //if(abs(renderer_->fps() - format_desc_.fps) < 0.1) // flash 25, format 50i or flash 50, format 50p\r
316                         {\r
317                                 frame = renderer_->render_frame(frame_buffer_.size() < frame_buffer_.capacity()-2);\r
318                                 frame_buffer_.push(frame);\r
319                         }\r
320 \r
321                         graph_->set_value("output-buffer", static_cast<float>(frame_buffer_.size())/static_cast<float>(frame_buffer_.capacity()));      \r
322                         fps_.fetch_and_store(static_cast<int>(renderer_->fps()*100.0));\r
323 \r
324                         executor_.begin_invoke([=]\r
325                         {\r
326                                 render();\r
327                         });                     \r
328                 }\r
329                 catch(...)\r
330                 {\r
331                         CASPAR_LOG_CURRENT_EXCEPTION();\r
332                         renderer_ = nullptr;\r
333                 }\r
334         }\r
335 };\r
336 \r
337 safe_ptr<core::frame_producer> create_flash_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
338 {\r
339         std::wstring filename = env::template_folder() + L"\\" + params[0];\r
340         \r
341         return make_safe<flash_producer>(frame_factory, filename);\r
342 }\r
343 \r
344 std::wstring find_flash_template(const std::wstring& template_name)\r
345 {\r
346         if(boost::filesystem::exists(template_name + L".ft")) \r
347                 return template_name + L".ft";\r
348         \r
349         if(boost::filesystem::exists(template_name + L".ct"))\r
350                 return template_name + L".ct";\r
351 \r
352         return L"";\r
353 }\r
354 \r
355 }