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