]> git.sesse.net Git - casparcg/blob - modules/decklink/consumer/decklink_consumer.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / modules / decklink / consumer / decklink_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 "decklink_consumer.h"\r
24 \r
25 #include "../util/util.h"\r
26 \r
27 #include "../interop/DeckLinkAPI_h.h"\r
28 \r
29 #include <core/video_format.h>\r
30 \r
31 #include <core/consumer/frame/read_frame.h>\r
32 \r
33 #include <common/concurrency/executor.h>\r
34 #include <common/diagnostics/graph.h>\r
35 #include <common/exception/exceptions.h>\r
36 #include <common/utility/timer.h>\r
37 \r
38 #include <tbb/concurrent_queue.h>\r
39 \r
40 #include <boost/circular_buffer.hpp>\r
41 #include <boost/timer.hpp>\r
42 \r
43 #include <array>\r
44 \r
45 #pragma warning(push)\r
46 #pragma warning(disable : 4996)\r
47 \r
48         #include <atlbase.h>\r
49 \r
50         #include <atlcom.h>\r
51         #include <atlhost.h>\r
52 \r
53 #pragma warning(push)\r
54 \r
55 namespace caspar { \r
56         \r
57 struct decklink_output : public IDeckLinkVideoOutputCallback, public IDeckLinkAudioOutputCallback, boost::noncopyable\r
58 {               \r
59         struct co_init\r
60         {\r
61                 co_init(){CoInitialize(nullptr);}\r
62                 ~co_init(){CoUninitialize();}\r
63         } co_;\r
64         \r
65         std::wstring    model_name_;\r
66         const size_t    device_index_;\r
67         tbb::atomic<bool> is_running_;\r
68 \r
69         std::shared_ptr<diagnostics::graph> graph_;\r
70         boost::timer perf_timer_;\r
71 \r
72         std::array<std::pair<void*, CComPtr<IDeckLinkMutableVideoFrame>>, 3> reserved_frames_;\r
73         boost::circular_buffer<std::vector<short>> audio_container_;\r
74         \r
75         const bool              embed_audio_;\r
76         const bool              internal_key;\r
77 \r
78         CComPtr<IDeckLink>                      decklink_;\r
79         CComQIPtr<IDeckLinkOutput>      output_;\r
80         CComQIPtr<IDeckLinkKeyer>       keyer_;\r
81         \r
82         core::video_format_desc format_desc_;\r
83 \r
84         BMDTimeScale frame_time_scale_;\r
85         BMDTimeValue frame_duration_;\r
86         unsigned long frames_scheduled_;\r
87         unsigned long audio_scheduled_;\r
88         \r
89         tbb::concurrent_bounded_queue<std::shared_ptr<const core::read_frame>> video_frame_buffer_;\r
90         tbb::concurrent_bounded_queue<std::shared_ptr<const core::read_frame>> audio_frame_buffer_;\r
91 \r
92 public:\r
93         decklink_output(const core::video_format_desc& format_desc,size_t device_index, bool embed_audio, bool internalKey) \r
94                 :  model_name_(L"DECKLINK")\r
95                 , device_index_(device_index)\r
96                 , audio_container_(5)\r
97                 , embed_audio_(embed_audio)\r
98                 , internal_key(internalKey)\r
99                 , frames_scheduled_(0)\r
100                 , audio_scheduled_(0)\r
101                 , format_desc_(format_desc)\r
102         {\r
103                 is_running_ = true;\r
104                 format_desc_ = format_desc;\r
105                 CComPtr<IDeckLinkIterator> pDecklinkIterator;\r
106                 if(FAILED(pDecklinkIterator.CoCreateInstance(CLSID_CDeckLinkIterator)))\r
107                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " No Decklink drivers installed."));\r
108                 \r
109                 size_t n = 0;\r
110                 while(n < device_index_ && pDecklinkIterator->Next(&decklink_) == S_OK){++n;}   \r
111 \r
112                 if(n != device_index_ || !decklink_)\r
113                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Decklink card not found.") << arg_name_info("device_index") << arg_value_info(boost::lexical_cast<std::string>(device_index_)));\r
114 \r
115                 output_ = decklink_;\r
116                 keyer_ = decklink_;\r
117 \r
118                 BSTR pModelName;\r
119                 decklink_->GetModelName(&pModelName);\r
120                 model_name_ = std::wstring(pModelName);\r
121                                 \r
122                 graph_ = diagnostics::create_graph(narrow(print()));\r
123                 graph_->add_guide("tick-time", 0.5);\r
124                 graph_->set_color("tick-time", diagnostics::color(0.1f, 0.7f, 0.8f));\r
125                 \r
126                 auto display_mode = get_display_mode(output_.p, format_desc_.format);\r
127                 if(display_mode == nullptr) \r
128                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Card does not support requested videoformat."));\r
129                 \r
130                 display_mode->GetFrameRate(&frame_duration_, &frame_time_scale_);\r
131 \r
132                 BMDDisplayModeSupport displayModeSupport;\r
133                 if(FAILED(output_->DoesSupportVideoMode(display_mode->GetDisplayMode(), bmdFormat8BitBGRA, bmdVideoOutputFlagDefault, &displayModeSupport, nullptr)))\r
134                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Card does not support requested videoformat."));\r
135                 \r
136                 if(embed_audio_)\r
137                 {\r
138                         if(FAILED(output_->EnableAudioOutput(bmdAudioSampleRate48kHz, bmdAudioSampleType16bitInteger, 2, bmdAudioOutputStreamTimestamped)))\r
139                                 BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Could not enable audio output."));\r
140                                 \r
141                         if(FAILED(output_->SetAudioCallback(this)))\r
142                                 BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Could not set audio callback."));\r
143 \r
144                         CASPAR_LOG(info) << print() << L" Enabled embedded-audio.";\r
145                 }\r
146 \r
147                 if(FAILED(output_->EnableVideoOutput(display_mode->GetDisplayMode(), bmdVideoOutputFlagDefault))) \r
148                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Could not enable video output."));\r
149 \r
150                 if(FAILED(output_->SetScheduledFrameCompletionCallback(this)))\r
151                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to set playback completion callback."));\r
152                         \r
153                 if(internal_key) \r
154                 {\r
155                         if(FAILED(keyer_->Enable(FALSE)))                       \r
156                                 CASPAR_LOG(error) << print() << L" Failed to enable internal keyer.";                   \r
157                         else if(FAILED(keyer_->SetLevel(255)))                  \r
158                                 CASPAR_LOG(error) << print() << L" Failed to set key-level to max.";\r
159                         else\r
160                                 CASPAR_LOG(info) << print() << L" Successfully configured internal keyer.";             \r
161                 }\r
162                 else\r
163                 {\r
164                         if(FAILED(keyer_->Enable(TRUE)))                        \r
165                                 CASPAR_LOG(error) << print() << L" Failed to enable external keyer.";   \r
166                         else if(FAILED(keyer_->SetLevel(255)))                  \r
167                                 CASPAR_LOG(error) << print() << L" Failed to set key-level to max.";\r
168                         else\r
169                                 CASPAR_LOG(info) << print() << L" Successfully configured external keyer.";                     \r
170                 }\r
171                 \r
172                 for(size_t n = 0; n < reserved_frames_.size(); ++n)\r
173                 {\r
174                         if(FAILED(output_->CreateVideoFrame(format_desc_.width, format_desc_.height, format_desc_.size/format_desc_.height, bmdFormat8BitBGRA, bmdFrameFlagDefault, &reserved_frames_[n].second)))\r
175                                 BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to create frame."));\r
176 \r
177                         if(FAILED(reserved_frames_[n].second->GetBytes(&reserved_frames_[n].first)))\r
178                                 BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to get frame bytes."));\r
179                 }\r
180                                         \r
181                 auto buffer_size = static_cast<size_t>(frame_time_scale_/frame_duration_)/4;\r
182                 for(size_t n = 0; n < buffer_size; ++n)\r
183                         schedule_next_video(core::read_frame::empty());\r
184 \r
185                 video_frame_buffer_.set_capacity(buffer_size);\r
186                 audio_frame_buffer_.set_capacity(buffer_size);\r
187                 for(size_t n = 0; n < std::max<size_t>(2, buffer_size-2); ++n)\r
188                 {\r
189                         video_frame_buffer_.try_push(core::read_frame::empty());\r
190                         if(embed_audio_)\r
191                                 audio_frame_buffer_.try_push(core::read_frame::empty());\r
192                 }\r
193                 \r
194                 if(FAILED(output_->StartScheduledPlayback(0, frame_time_scale_, 1.0))) \r
195                         BOOST_THROW_EXCEPTION(caspar_exception() << msg_info(narrow(print()) + " Failed to schedule playback."));\r
196                 \r
197                 CASPAR_LOG(info) << print() << L" Successfully initialized for " << format_desc_.name;  \r
198         }\r
199 \r
200         ~decklink_output()\r
201         {               \r
202                 is_running_ = false;\r
203                 video_frame_buffer_.try_push(core::read_frame::empty());\r
204                 audio_frame_buffer_.try_push(core::read_frame::empty());\r
205 \r
206                 if(output_ != nullptr) \r
207                 {\r
208                         output_->StopScheduledPlayback(0, nullptr, 0);\r
209                         if(embed_audio_)\r
210                                 output_->DisableAudioOutput();\r
211                         output_->DisableVideoOutput();\r
212                 }\r
213                 CASPAR_LOG(info) << print() << L" Shutting down.";      \r
214         }\r
215                         \r
216         virtual HRESULT STDMETHODCALLTYPE       QueryInterface (REFIID, LPVOID*)        {return E_NOINTERFACE;}\r
217         virtual ULONG STDMETHODCALLTYPE         AddRef ()                                                       {return 1;}\r
218         virtual ULONG STDMETHODCALLTYPE         Release ()                                                      {return 1;}\r
219         \r
220         virtual HRESULT STDMETHODCALLTYPE ScheduledFrameCompleted (IDeckLinkVideoFrame* /*completedFrame*/, BMDOutputFrameCompletionResult /*result*/)\r
221         {\r
222                 if(!is_running_)\r
223                         return S_OK;\r
224 \r
225                 std::shared_ptr<const core::read_frame> frame;  \r
226                 video_frame_buffer_.pop(frame);         \r
227                 schedule_next_video(safe_ptr<const core::read_frame>(frame));\r
228 \r
229                 return S_OK;\r
230         }\r
231 \r
232         virtual HRESULT STDMETHODCALLTYPE ScheduledPlaybackHasStopped (void)\r
233         {\r
234                 return S_OK;\r
235         }\r
236                 \r
237         virtual HRESULT STDMETHODCALLTYPE RenderAudioSamples (BOOL /*preroll*/)\r
238         {\r
239                 if(!is_running_)\r
240                         return S_OK;\r
241 \r
242                 std::shared_ptr<const core::read_frame> frame;\r
243                 audio_frame_buffer_.pop(frame);\r
244                 schedule_next_audio(safe_ptr<const core::read_frame>(frame));\r
245 \r
246                 return S_OK;\r
247         }\r
248 \r
249         void schedule_next_audio(const safe_ptr<const core::read_frame>& frame)\r
250         {\r
251                 static std::vector<short> silence(48000, 0);\r
252 \r
253                 int audio_samples = static_cast<size_t>(48000.0 / format_desc_.fps);\r
254 \r
255                 auto frame_audio_data = frame->audio_data().empty() ? silence.data() : const_cast<short*>(frame->audio_data().begin());\r
256 \r
257                 audio_container_.push_back(std::vector<short>(frame_audio_data, frame_audio_data+audio_samples*2));\r
258 \r
259                 if(FAILED(output_->ScheduleAudioSamples(audio_container_.back().data(), audio_samples, (audio_scheduled_++) * audio_samples, 48000, nullptr)))\r
260                         CASPAR_LOG(error) << print() << L" Failed to schedule audio.";\r
261         }\r
262                         \r
263         void schedule_next_video(const safe_ptr<const core::read_frame>& frame)\r
264         {\r
265                 if(!frame->image_data().empty())\r
266                         std::copy(frame->image_data().begin(), frame->image_data().end(), static_cast<char*>(reserved_frames_.front().first));\r
267                 else\r
268                         std::fill_n(static_cast<int*>(reserved_frames_.front().first), 0, format_desc_.size/4);\r
269 \r
270                 if(FAILED(output_->ScheduleVideoFrame(reserved_frames_.front().second, (frames_scheduled_++) * frame_duration_, frame_duration_, frame_time_scale_)))\r
271                         CASPAR_LOG(error) << print() << L" Failed to schedule video.";\r
272 \r
273                 std::rotate(reserved_frames_.begin(), reserved_frames_.begin() + 1, reserved_frames_.end());\r
274                 graph_->update_value("tick-time", static_cast<float>(perf_timer_.elapsed()/format_desc_.interval*0.5));\r
275                 perf_timer_.restart();\r
276         }\r
277 \r
278         void send(const safe_ptr<const core::read_frame>& frame)\r
279         {\r
280                 video_frame_buffer_.push(frame);\r
281                 if(embed_audio_)\r
282                         audio_frame_buffer_.push(frame);\r
283         }\r
284 \r
285         std::wstring print() const\r
286         {\r
287                 return model_name_ + L" [" + boost::lexical_cast<std::wstring>(device_index_) + L"]";\r
288         }\r
289 };\r
290 \r
291 struct decklink_consumer::implementation\r
292 {\r
293         std::unique_ptr<decklink_output> input_;\r
294         size_t device_index_;\r
295         bool embed_audio_;\r
296         bool internal_key_;\r
297 \r
298         executor executor_;\r
299 public:\r
300 \r
301         implementation(size_t device_index, bool embed_audio, bool internal_key)\r
302                 : device_index_(device_index)\r
303                 , embed_audio_(embed_audio)\r
304                 , internal_key_(internal_key)\r
305                 , executor_(L"DECKLINK[" + boost::lexical_cast<std::wstring>(device_index) + L"]")\r
306         {\r
307                 executor_.start();\r
308         }\r
309 \r
310         ~implementation()\r
311         {\r
312                 executor_.invoke([&]\r
313                 {\r
314                         input_ = nullptr;\r
315                 });\r
316         }\r
317 \r
318         void initialize(const core::video_format_desc& format_desc)\r
319         {\r
320                 executor_.invoke([&]\r
321                 {\r
322                         input_.reset(new decklink_output(format_desc, device_index_, embed_audio_, internal_key_));\r
323                 });\r
324         }\r
325         \r
326         void send(const safe_ptr<const core::read_frame>& frame)\r
327         {\r
328                 input_->send(frame);\r
329         }\r
330 \r
331         size_t buffer_depth() const\r
332         {\r
333                 return 1;\r
334         }\r
335 \r
336         std::wstring print() const\r
337         {\r
338                 return input_->print();\r
339         }\r
340 };\r
341 \r
342 decklink_consumer::decklink_consumer(size_t device_index, bool embed_audio, bool internalKey) : impl_(new implementation(device_index, embed_audio, internalKey)){}\r
343 decklink_consumer::decklink_consumer(decklink_consumer&& other) : impl_(std::move(other.impl_)){}\r
344 void decklink_consumer::initialize(const core::video_format_desc& format_desc){impl_->initialize(format_desc);}\r
345 void decklink_consumer::send(const safe_ptr<const core::read_frame>& frame){impl_->send(frame);}\r
346 size_t decklink_consumer::buffer_depth() const{return impl_->buffer_depth();}\r
347 std::wstring decklink_consumer::print() const{return impl_->print();}\r
348         \r
349 safe_ptr<core::frame_consumer> create_decklink_consumer(const std::vector<std::wstring>& params)\r
350 {\r
351         if(params.size() < 1 || params[0] != L"DECKLINK")\r
352                 return core::frame_consumer::empty();\r
353         \r
354         int device_index = 1;\r
355         bool embed_audio = false;\r
356         bool internal_key = false;\r
357 \r
358         if(params.size() > 1) \r
359                 device_index = lexical_cast_or_default<int>(params[2], device_index);\r
360 \r
361         if(params.size() > 2)\r
362                 embed_audio = lexical_cast_or_default<bool>(params[3], embed_audio);\r
363         \r
364         if(params.size() > 3) \r
365                 internal_key = lexical_cast_or_default<bool>(params[4], internal_key);\r
366 \r
367         return make_safe<decklink_consumer>(device_index, embed_audio, internal_key);\r
368 }\r
369 \r
370 }