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