]> git.sesse.net Git - casparcg/blob - modules/bluefish/consumer/bluefish_consumer.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / modules / bluefish / consumer / bluefish_consumer.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 #include "bluefish_consumer.h"\r
24 #include "../util/blue_velvet.h"\r
25 #include "../util/memory.h"\r
26 \r
27 #include <core/mixer/read_frame.h>\r
28 \r
29 #include <common/concurrency/executor.h>\r
30 #include <common/diagnostics/graph.h>\r
31 #include <common/memory/memclr.h>\r
32 #include <common/memory/memcpy.h>\r
33 #include <common/memory/memshfl.h>\r
34 #include <common/utility/timer.h>\r
35 \r
36 #include <core/consumer/frame_consumer.h>\r
37 #include <core/mixer/audio/audio_util.h>\r
38 \r
39 #include <tbb/concurrent_queue.h>\r
40 \r
41 #include <boost/timer.hpp>\r
42 \r
43 #include <memory>\r
44 #include <array>\r
45 \r
46 namespace caspar { namespace bluefish { \r
47                         \r
48 struct bluefish_consumer : boost::noncopyable\r
49 {\r
50         safe_ptr<CBlueVelvet4>                          blue_;\r
51         const unsigned int                                      device_index_;\r
52         const core::video_format_desc           format_desc_;\r
53 \r
54         const std::wstring                                      model_name_;\r
55 \r
56         safe_ptr<diagnostics::graph>            graph_;\r
57         boost::timer                                            frame_timer_;\r
58         boost::timer                                            tick_timer_;\r
59         boost::timer                                            sync_timer_;    \r
60                         \r
61         unsigned int                                            vid_fmt_;\r
62 \r
63         std::array<blue_dma_buffer_ptr, 4>      reserved_frames_;       \r
64         tbb::concurrent_bounded_queue<std::shared_ptr<core::read_frame>> frame_buffer_;\r
65 \r
66         int                                                                     preroll_count_;\r
67 \r
68         const bool                                                      embedded_audio_;\r
69         const bool                                                      key_only_;\r
70         \r
71         executor                                                        executor_;\r
72 public:\r
73         bluefish_consumer(const core::video_format_desc& format_desc, unsigned int device_index, bool embedded_audio, bool key_only) \r
74                 : blue_(create_blue(device_index))\r
75                 , device_index_(device_index)\r
76                 , format_desc_(format_desc) \r
77                 , model_name_(get_card_desc(*blue_))\r
78                 , vid_fmt_(get_video_mode(*blue_, format_desc))\r
79                 , preroll_count_(0)\r
80                 , embedded_audio_(embedded_audio)\r
81                 , key_only_(key_only)\r
82                 , executor_(print())\r
83         {\r
84                 executor_.set_capacity(core::consumer_buffer_depth());\r
85 \r
86                 graph_->add_guide("tick-time", 0.5);\r
87                 graph_->set_color("tick-time", diagnostics::color(0.0f, 0.6f, 0.9f));   \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("sync-time", diagnostics::color(0.5f, 1.0f, 0.2f));\r
91                 graph_->set_color("input-buffer", diagnostics::color(1.0f, 1.0f, 0.0f));\r
92                 graph_->set_text(print());\r
93                 diagnostics::register_graph(graph_);\r
94                         \r
95                 //Setting output Video mode\r
96                 if(BLUE_FAIL(set_card_property(blue_, VIDEO_MODE, vid_fmt_))) \r
97                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to set videomode."));\r
98 \r
99                 //Select Update Mode for output\r
100                 if(BLUE_FAIL(set_card_property(blue_, VIDEO_UPDATE_TYPE, UPD_FMT_FRAME))) \r
101                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to set update type."));\r
102         \r
103                 disable_video_output();\r
104 \r
105                 //Enable dual link output\r
106                 if(BLUE_FAIL(set_card_property(blue_, VIDEO_DUAL_LINK_OUTPUT, 1)))\r
107                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to enable dual link."));\r
108 \r
109                 if(BLUE_FAIL(set_card_property(blue_, VIDEO_DUAL_LINK_OUTPUT_SIGNAL_FORMAT_TYPE, Signal_FormatType_4224)))\r
110                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to set dual link format type to 4:2:2:4."));\r
111                         \r
112                 //Select output memory format\r
113                 if(BLUE_FAIL(set_card_property(blue_, VIDEO_MEMORY_FORMAT, MEM_FMT_ARGB_PC))) \r
114                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to set memory format."));\r
115                 \r
116                 //Select image orientation\r
117                 if(BLUE_FAIL(set_card_property(blue_, VIDEO_IMAGE_ORIENTATION, ImageOrientation_Normal)))\r
118                         CASPAR_LOG(warning) << print() << TEXT(" Failed to set image orientation to normal.");  \r
119 \r
120                 // Select data range\r
121                 if(BLUE_FAIL(set_card_property(blue_, VIDEO_RGB_DATA_RANGE, CGR_RANGE))) \r
122                         CASPAR_LOG(warning) << print() << TEXT(" Failed to set RGB data range to CGR.");        \r
123                 \r
124                 if(BLUE_FAIL(set_card_property(blue_, VIDEO_PREDEFINED_COLOR_MATRIX, vid_fmt_ == VID_FMT_PAL ? MATRIX_601_CGR : MATRIX_709_CGR)))\r
125                         CASPAR_LOG(warning) << print() << TEXT(" Failed to set colormatrix to ") << (vid_fmt_ == VID_FMT_PAL ? TEXT("601 CGR") : TEXT("709 CGR")) << TEXT(".");\r
126 \r
127                 if(!embedded_audio_)\r
128                 {\r
129                         if(BLUE_FAIL(set_card_property(blue_, EMBEDEDDED_AUDIO_OUTPUT, 0))) \r
130                                 CASPAR_LOG(warning) << TEXT("BLUECARD ERROR: Failed to disable embedded audio.");                       \r
131                         CASPAR_LOG(info) << print() << TEXT(" Disabled embedded-audio.");\r
132                 }\r
133                 else\r
134                 {\r
135                         if(BLUE_FAIL(set_card_property(blue_, EMBEDEDDED_AUDIO_OUTPUT, blue_emb_audio_enable | blue_emb_audio_group1_enable))) \r
136                                 CASPAR_LOG(warning) << print() << TEXT(" Failed to enable embedded audio.");                    \r
137                         CASPAR_LOG(info) << print() << TEXT(" Enabled embedded-audio.");\r
138                 }\r
139                 \r
140                 if (blue_->has_output_key()) \r
141                 {\r
142                         int dummy = TRUE; int v4444 = FALSE; int invert = FALSE; int white = FALSE;\r
143                         blue_->set_output_key(dummy, v4444, invert, white);\r
144                 }\r
145 \r
146                 if(blue_->GetHDCardType(device_index_) != CRD_HD_INVALID) \r
147                         blue_->Set_DownConverterSignalType(vid_fmt_ == VID_FMT_PAL ? SD_SDI : HD_SDI);  \r
148         \r
149                 unsigned long engine_mode = VIDEO_ENGINE_FRAMESTORE;\r
150                 if(BLUE_FAIL(blue_->set_video_engine(engine_mode)))\r
151                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to set video engine."));\r
152 \r
153                 enable_video_output();\r
154                                                 \r
155                 int n = 0;\r
156                 std::generate(reserved_frames_.begin(), reserved_frames_.end(), [&]\r
157                 {\r
158                         return std::make_shared<blue_dma_buffer>(format_desc_.size, n++);\r
159                 });\r
160                                                                 \r
161                 CASPAR_LOG(info) << print() << L" Successfully Initialized.";\r
162         }\r
163 \r
164         ~bluefish_consumer()\r
165         {\r
166                 try\r
167                 {\r
168                         executor_.invoke([&]\r
169                         {\r
170                                 disable_video_output();\r
171                                 blue_->device_detach();         \r
172                         });\r
173                 }\r
174                 catch(...)\r
175                 {\r
176                         CASPAR_LOG_CURRENT_EXCEPTION();\r
177                 }\r
178                 \r
179                 CASPAR_LOG(info) << print() << L" Shutting down.";      \r
180         }\r
181         \r
182         const core::video_format_desc& get_video_format_desc() const\r
183         {\r
184                 return format_desc_;\r
185         }\r
186 \r
187         void enable_video_output()\r
188         {\r
189                 if(!BLUE_PASS(set_card_property(blue_, VIDEO_BLACKGENERATOR, 0)))\r
190                         CASPAR_LOG(error) << print() << TEXT(" Failed to disable video output.");       \r
191         }\r
192 \r
193         void disable_video_output()\r
194         {\r
195                 if(!BLUE_PASS(set_card_property(blue_, VIDEO_BLACKGENERATOR, 1)))\r
196                         CASPAR_LOG(error)<< print() << TEXT(" Failed to disable video output.");                \r
197         }\r
198         \r
199         void send(const safe_ptr<core::read_frame>& frame)\r
200         {       \r
201                 if(preroll_count_ < executor_.capacity())\r
202                 {\r
203                         while(preroll_count_++ < executor_.capacity())\r
204                                 schedule_next_video(make_safe<core::read_frame>());\r
205                 }\r
206                 \r
207                 schedule_next_video(frame);                     \r
208         }\r
209         \r
210         void schedule_next_video(const safe_ptr<core::read_frame>& frame)\r
211         {               \r
212                 executor_.begin_invoke([=]\r
213                 {\r
214                         try\r
215                         {\r
216                                 const size_t audio_nchannels = format_desc_.audio_channels;\r
217 \r
218                                 frame_timer_.restart();\r
219                                 \r
220                                 // Copy to local buffers\r
221 \r
222                                 if(!frame->image_data().empty())\r
223                                 {\r
224                                         if(key_only_)                                           \r
225                                                 fast_memshfl(reserved_frames_.front()->image_data(), frame->image_data().begin(), frame->image_data().size(), 0x0F0F0F0F, 0x0B0B0B0B, 0x07070707, 0x03030303);\r
226                                         else\r
227                                                 fast_memcpy(reserved_frames_.front()->image_data(), frame->image_data().begin(), frame->image_data().size());\r
228                                 }\r
229                                 else\r
230                                         fast_memclr(reserved_frames_.front()->image_data(), reserved_frames_.front()->image_size());\r
231                                                                 \r
232                                 // Sync\r
233 \r
234                                 sync_timer_.restart();\r
235                                 unsigned long n_field = 0;\r
236                                 blue_->wait_output_video_synch(UPD_FMT_FRAME, n_field);\r
237                                 graph_->update_value("sync-time", static_cast<float>(sync_timer_.elapsed()*format_desc_.fps*0.5));\r
238 \r
239                                 // Send and display\r
240 \r
241                                 if(embedded_audio_)\r
242                                 {               \r
243                                         auto frame_audio          = core::audio_32_to_16_sse(frame->audio_data());\r
244 \r
245                                         encode_hanc(reinterpret_cast<BLUE_UINT32*>(reserved_frames_.front()->hanc_data()), frame_audio.data(), frame_audio.size(), audio_nchannels);\r
246                                                                 \r
247                                         blue_->system_buffer_write_async(const_cast<uint8_t*>(reserved_frames_.front()->image_data()), \r
248                                                                                                         reserved_frames_.front()->image_size(), \r
249                                                                                                         nullptr, \r
250                                                                                                         BlueImage_HANC_DMABuffer(reserved_frames_.front()->id(), BLUE_DATA_IMAGE));\r
251 \r
252                                         blue_->system_buffer_write_async(reserved_frames_.front()->hanc_data(),\r
253                                                                                                         reserved_frames_.front()->hanc_size(), \r
254                                                                                                         nullptr,                 \r
255                                                                                                         BlueImage_HANC_DMABuffer(reserved_frames_.front()->id(), BLUE_DATA_HANC));\r
256 \r
257                                         if(BLUE_FAIL(blue_->render_buffer_update(BlueBuffer_Image_HANC(reserved_frames_.front()->id()))))\r
258                                                 CASPAR_LOG(warning) << print() << TEXT(" render_buffer_update failed.");\r
259                                 }\r
260                                 else\r
261                                 {\r
262                                         blue_->system_buffer_write_async(const_cast<uint8_t*>(reserved_frames_.front()->image_data()),\r
263                                                                                                         reserved_frames_.front()->image_size(), \r
264                                                                                                         nullptr,                 \r
265                                                                                                         BlueImage_DMABuffer(reserved_frames_.front()->id(), BLUE_DATA_IMAGE));\r
266                         \r
267                                         if(BLUE_FAIL(blue_->render_buffer_update(BlueBuffer_Image(reserved_frames_.front()->id()))))\r
268                                                 CASPAR_LOG(warning) << print() << TEXT(" render_buffer_update failed.");\r
269                                 }\r
270 \r
271                                 std::rotate(reserved_frames_.begin(), reserved_frames_.begin() + 1, reserved_frames_.end());\r
272                                 \r
273                                 graph_->update_value("frame-time", static_cast<float>(frame_timer_.elapsed()*format_desc_.fps*0.5));\r
274 \r
275                                 graph_->update_value("tick-time", static_cast<float>(tick_timer_.elapsed()*format_desc_.fps*0.5));\r
276                                 tick_timer_.restart();\r
277                         }\r
278                         catch(...)\r
279                         {\r
280                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
281                         }\r
282                         graph_->set_value("input-buffer", static_cast<double>(executor_.size())/static_cast<double>(executor_.capacity()));\r
283                 });\r
284                 graph_->set_value("input-buffer", static_cast<double>(executor_.size())/static_cast<double>(executor_.capacity()));\r
285         }\r
286 \r
287         void encode_hanc(BLUE_UINT32* hanc_data, void* audio_data, size_t audio_samples, size_t audio_nchannels)\r
288         {       \r
289                 const auto sample_type = AUDIO_CHANNEL_16BIT | AUDIO_CHANNEL_LITTLEENDIAN;\r
290                 const auto emb_audio_flag = blue_emb_audio_enable | blue_emb_audio_group1_enable;\r
291                 \r
292                 hanc_stream_info_struct hanc_stream_info;\r
293                 memset(&hanc_stream_info, 0, sizeof(hanc_stream_info));\r
294                 \r
295                 hanc_stream_info.AudioDBNArray[0] = -1;\r
296                 hanc_stream_info.AudioDBNArray[1] = -1;\r
297                 hanc_stream_info.AudioDBNArray[2] = -1;\r
298                 hanc_stream_info.AudioDBNArray[3] = -1;\r
299                 hanc_stream_info.hanc_data_ptr    = hanc_data;\r
300                 hanc_stream_info.video_mode               = vid_fmt_;           \r
301                 \r
302                 if (!is_epoch_card(*blue_))\r
303                         encode_hanc_frame(&hanc_stream_info, audio_data, audio_nchannels, audio_samples, sample_type, emb_audio_flag);  \r
304                 else\r
305                         encode_hanc_frame_ex(blue_->has_video_cardtype(), &hanc_stream_info, audio_data, audio_nchannels, audio_samples, sample_type, emb_audio_flag);\r
306         }\r
307         \r
308         std::wstring print() const\r
309         {\r
310                 return model_name_ + L" [" + boost::lexical_cast<std::wstring>(device_index_) + L"|" +  format_desc_.name + L"]";\r
311         }\r
312 };\r
313 \r
314 struct bluefish_consumer_proxy : public core::frame_consumer\r
315 {\r
316         std::unique_ptr<bluefish_consumer>      consumer_;\r
317         const size_t                                            device_index_;\r
318         const bool                                                      embedded_audio_;\r
319         const bool                                                      key_only_;\r
320         core::video_format_desc                         format_desc_;\r
321 public:\r
322 \r
323         bluefish_consumer_proxy(size_t device_index, bool embedded_audio, bool key_only)\r
324                 : device_index_(device_index)\r
325                 , embedded_audio_(embedded_audio)\r
326                 , key_only_(key_only)\r
327         {\r
328         }\r
329         \r
330         virtual void initialize(const core::video_format_desc& format_desc)\r
331         {\r
332                 format_desc_ = format_desc;\r
333                 consumer_.reset(new bluefish_consumer(format_desc, device_index_, embedded_audio_, key_only_));\r
334         }\r
335         \r
336         virtual bool send(const safe_ptr<core::read_frame>& frame)\r
337         {\r
338                 consumer_->send(frame);\r
339                 return true;\r
340         }\r
341 \r
342         virtual const core::video_format_desc& get_video_format_desc() const\r
343         {\r
344                 return consumer_->get_video_format_desc();\r
345         }\r
346         \r
347         virtual std::wstring print() const\r
348         {\r
349                 if(consumer_)\r
350                         consumer_->print();\r
351 \r
352                 return L"bluefish [" + boost::lexical_cast<std::wstring>(device_index_) + L"]";\r
353         }\r
354 };      \r
355 \r
356 safe_ptr<core::frame_consumer> create_consumer(const std::vector<std::wstring>& params)\r
357 {\r
358         if(params.size() < 1 || params[0] != L"BLUEFISH")\r
359                 return core::frame_consumer::empty();\r
360                 \r
361         const auto device_index = params.size() > 1 ? lexical_cast_or_default<int>(params[1], 1) : 1;\r
362 \r
363         const auto embedded_audio = std::find(params.begin(), params.end(), L"EMBEDDED_AUDIO") != params.end();\r
364         const auto key_only               = std::find(params.begin(), params.end(), L"KEY_ONLY")           != params.end();\r
365 \r
366         return make_safe<bluefish_consumer_proxy>(device_index, embedded_audio, key_only);\r
367 }\r
368 \r
369 safe_ptr<core::frame_consumer> create_consumer(const boost::property_tree::ptree& ptree) \r
370 {       \r
371         const auto device_index         = ptree.get("device",             1);\r
372         const auto embedded_audio       = ptree.get("embedded-audio", false);\r
373         const auto key_only                     = ptree.get("key-only",           false);\r
374 \r
375         return make_safe<bluefish_consumer_proxy>(device_index, embedded_audio, key_only);\r
376 }\r
377 \r
378 }}