]> git.sesse.net Git - casparcg/blob - modules/decklink/producer/decklink_producer.cpp
2.0. Started with deinterlace framework.
[casparcg] / modules / decklink / producer / decklink_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 #include "decklink_producer.h"\r
24 \r
25 #include "../interop/DeckLinkAPI_h.h"\r
26 #include "../util/util.h"\r
27 \r
28 #include <common/diagnostics/graph.h>\r
29 #include <common/concurrency/com_context.h>\r
30 #include <common/exception/exceptions.h>\r
31 #include <common/memory/memclr.h>\r
32 \r
33 #include <core/producer/frame/frame_factory.h>\r
34 #include <core/mixer/write_frame.h>\r
35 \r
36 #include <tbb/concurrent_queue.h>\r
37 #include <tbb/atomic.h>\r
38 \r
39 #include <boost/algorithm/string.hpp>\r
40 #include <boost/timer.hpp>\r
41 \r
42 #pragma warning(push)\r
43 #pragma warning(disable : 4996)\r
44 \r
45         #include <atlbase.h>\r
46 \r
47         #include <atlcom.h>\r
48         #include <atlhost.h>\r
49 \r
50 #pragma warning(push)\r
51 \r
52 #include <functional>\r
53 \r
54 namespace caspar { \r
55 \r
56 class decklink_producer : public IDeckLinkInputCallback\r
57 {       \r
58         CComPtr<IDeckLink>                              decklink_;\r
59         CComQIPtr<IDeckLinkInput>               input_;\r
60         \r
61         const std::wstring model_name_;\r
62         const core::video_format_desc format_desc_;\r
63         const size_t device_index_;\r
64 \r
65         std::shared_ptr<diagnostics::graph> graph_;\r
66         boost::timer perf_timer_;\r
67         \r
68         std::vector<short>                      audio_data_;\r
69 \r
70         std::shared_ptr<core::frame_factory> frame_factory_;\r
71 \r
72         tbb::concurrent_bounded_queue<safe_ptr<core::basic_frame>> frame_buffer_;\r
73         safe_ptr<core::basic_frame> tail_;\r
74 \r
75         std::exception_ptr exception_;\r
76 \r
77 public:\r
78         decklink_producer(const core::video_format_desc& format_desc, size_t device_index, const std::shared_ptr<core::frame_factory>& frame_factory)\r
79                 : decklink_(get_device(device_index))\r
80                 , input_(decklink_)\r
81                 , model_name_(get_model_name(decklink_))\r
82                 , format_desc_(format_desc)\r
83                 , device_index_(device_index)\r
84                 , frame_factory_(frame_factory)\r
85                 , tail_(core::basic_frame::empty())\r
86         {\r
87                 frame_buffer_.set_capacity(2);\r
88                 \r
89                 graph_ = diagnostics::create_graph(boost::bind(&decklink_producer::print, this));\r
90                 graph_->add_guide("tick-time", 0.5);\r
91                 graph_->set_color("tick-time", diagnostics::color(0.1f, 0.7f, 0.8f));\r
92                 graph_->set_color("late-frame", diagnostics::color(0.6f, 0.3f, 0.3f));\r
93                 graph_->set_color("dropped-frame", diagnostics::color(0.3f, 0.6f, 0.3f));\r
94                 graph_->set_color("output-buffer", diagnostics::color(0.0f, 1.0f, 0.0f));\r
95                 \r
96                 auto display_mode = get_display_mode(input_, format_desc_.format, bmdFormat8BitYUV, bmdVideoInputFlagDefault);\r
97                 \r
98                 // NOTE: bmdFormat8BitARGB is currently not supported by any decklink card. (2011-05-08)\r
99                 if(FAILED(input_->EnableVideoInput(display_mode, bmdFormat8BitYUV, 0))) \r
100                         BOOST_THROW_EXCEPTION(caspar_exception() \r
101                                                                         << msg_info(narrow(print()) + " Could not enable video input.")\r
102                                                                         << boost::errinfo_api_function("EnableVideoInput"));\r
103 \r
104                 if(FAILED(input_->EnableAudioInput(bmdAudioSampleRate48kHz, bmdAudioSampleType16bitInteger, 2))) \r
105                         BOOST_THROW_EXCEPTION(caspar_exception() \r
106                                                                         << msg_info(narrow(print()) + " Could not enable audio input.")\r
107                                                                         << boost::errinfo_api_function("EnableAudioInput"));\r
108                         \r
109                 if (FAILED(input_->SetCallback(this)) != S_OK)\r
110                         BOOST_THROW_EXCEPTION(caspar_exception() \r
111                                                                         << msg_info(narrow(print()) + " Failed to set input callback.")\r
112                                                                         << boost::errinfo_api_function("SetCallback"));\r
113                         \r
114                 if(FAILED(input_->StartStreams()))\r
115                         BOOST_THROW_EXCEPTION(caspar_exception() \r
116                                                                         << msg_info(narrow(print()) + " Failed to start input stream.")\r
117                                                                         << boost::errinfo_api_function("StartStreams"));\r
118 \r
119                 CASPAR_LOG(info) << print() << L" Successfully Initialized.";\r
120         }\r
121 \r
122         ~decklink_producer()\r
123         {\r
124                 if(input_ != nullptr) \r
125                 {\r
126                         input_->StopStreams();\r
127                         input_->DisableVideoInput();\r
128                 }\r
129         }\r
130 \r
131         virtual HRESULT STDMETHODCALLTYPE       QueryInterface (REFIID, LPVOID*)        {return E_NOINTERFACE;}\r
132         virtual ULONG STDMETHODCALLTYPE         AddRef ()                                                       {return 1;}\r
133         virtual ULONG STDMETHODCALLTYPE         Release ()                                                      {return 1;}\r
134                 \r
135         virtual HRESULT STDMETHODCALLTYPE VideoInputFormatChanged(BMDVideoInputFormatChangedEvents /*notificationEvents*/, IDeckLinkDisplayMode* newDisplayMode, BMDDetectedVideoInputFormatFlags /*detectedSignalFlags*/)\r
136         {\r
137                 return S_OK;\r
138         }\r
139 \r
140         virtual HRESULT STDMETHODCALLTYPE VideoInputFrameArrived(IDeckLinkVideoInputFrame* video, IDeckLinkAudioInputPacket* audio)\r
141         {       \r
142                 try\r
143                 {\r
144                         graph_->update_value("tick-time", perf_timer_.elapsed()*format_desc_.fps*0.5);\r
145                         perf_timer_.restart();\r
146                                                 \r
147                         core::pixel_format_desc desc;\r
148                         desc.pix_fmt = core::pixel_format::ycbcr;\r
149                         desc.planes.push_back(core::pixel_format_desc::plane(format_desc_.width,   format_desc_.height, 1));\r
150                         desc.planes.push_back(core::pixel_format_desc::plane(format_desc_.width/2, format_desc_.height, 1));\r
151                         desc.planes.push_back(core::pixel_format_desc::plane(format_desc_.width/2, format_desc_.height, 1));                    \r
152                         auto frame = frame_factory_->create_frame(this, desc);\r
153                                                 \r
154                         void* bytes = nullptr;\r
155                         video->GetBytes(&bytes);\r
156                         unsigned char* data = reinterpret_cast<unsigned char*>(bytes);\r
157                         const size_t frame_size = (format_desc_.width * 16 / 8) * format_desc_.height;\r
158 \r
159                         // Convert to planar YUV422\r
160                         unsigned char* y  = frame->image_data(0).begin();\r
161                         unsigned char* cb = frame->image_data(1).begin();\r
162                         unsigned char* cr = frame->image_data(2).begin();\r
163                 \r
164                         tbb::parallel_for(tbb::blocked_range<size_t>(0, frame_size/4), [&](const tbb::blocked_range<size_t>& r)\r
165                         {\r
166                                 for(auto n = r.begin(); n != r.end(); ++n)\r
167                                 {\r
168                                         cb[n]     = data[n*4+0];\r
169                                         y [n*2+0] = data[n*4+1];\r
170                                         cr[n]     = data[n*4+2];\r
171                                         y [n*2+1] = data[n*4+3];\r
172                                 }\r
173                         });\r
174 \r
175                         frame->commit();\r
176 \r
177                         frame->set_is_interlaced(format_desc_.mode != core::video_mode::progressive);\r
178 \r
179                         // It is assumed that audio is always equal or ahead of video.\r
180                         if(audio && SUCCEEDED(audio->GetBytes(&bytes)))\r
181                         {\r
182                                 const size_t audio_samples = static_cast<size_t>(48000.0 / format_desc_.fps);\r
183                                 const size_t audio_nchannels = 2;\r
184 \r
185                                 auto sample_frame_count = audio->GetSampleFrameCount();\r
186                                 auto audio_data = reinterpret_cast<short*>(bytes);\r
187                                 audio_data_.insert(audio_data_.end(), audio_data, audio_data + sample_frame_count*2);\r
188 \r
189                                 if(audio_data_.size() > audio_samples*audio_nchannels)\r
190                                 {\r
191                                         frame->audio_data() = std::vector<short>(audio_data_.begin(), audio_data_.begin() +  audio_samples*audio_nchannels);\r
192                                         audio_data_.erase(audio_data_.begin(), audio_data_.begin() +  audio_samples*audio_nchannels);\r
193                                 }\r
194                         }\r
195 \r
196                         if(!frame_buffer_.try_push(frame))\r
197                                 graph_->add_tag("dropped-frame");\r
198                         graph_->set_value("output-buffer", static_cast<float>(frame_buffer_.size())/static_cast<float>(frame_buffer_.capacity()));      \r
199                 }\r
200                 catch(...)\r
201                 {\r
202                         exception_ = std::current_exception();\r
203                         return E_FAIL;\r
204                 }\r
205 \r
206                 return S_OK;\r
207         }\r
208         \r
209         safe_ptr<core::basic_frame> get_frame()\r
210         {\r
211                 if(exception_ != nullptr)\r
212                         std::rethrow_exception(exception_);\r
213 \r
214                 if(!frame_buffer_.try_pop(tail_))\r
215                         graph_->add_tag("late-frame");\r
216                 graph_->set_value("output-buffer", static_cast<float>(frame_buffer_.size())/static_cast<float>(frame_buffer_.capacity()));      \r
217                 return tail_;\r
218         }\r
219         \r
220         std::wstring print() const\r
221         {\r
222                 return model_name_ + L" [" + boost::lexical_cast<std::wstring>(device_index_) + L"]";\r
223         }\r
224 };\r
225         \r
226 class decklink_producer_proxy : public core::frame_producer\r
227 {               \r
228         com_context<decklink_producer> context_;\r
229 public:\r
230 \r
231         explicit decklink_producer_proxy(const safe_ptr<core::frame_factory>& frame_factory, const core::video_format_desc& format_desc, size_t device_index)\r
232                 : context_(L"decklink_producer[" + boost::lexical_cast<std::wstring>(device_index) + L"]")\r
233         {\r
234                 context_.reset([&]{return new decklink_producer(format_desc, device_index, frame_factory);}); \r
235         }\r
236                                 \r
237         virtual safe_ptr<core::basic_frame> receive()\r
238         {\r
239                 return context_->get_frame();\r
240         }\r
241         \r
242         std::wstring print() const\r
243         {\r
244                 return context_->print();\r
245         }\r
246 };\r
247 \r
248 safe_ptr<core::frame_producer> create_decklink_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
249 {\r
250         if(params.empty() || !boost::iequals(params[0], "decklink"))\r
251                 return core::frame_producer::empty();\r
252 \r
253         size_t device_index = 1;\r
254         if(params.size() > 1)\r
255                 device_index = lexical_cast_or_default(params[1], 1);\r
256 \r
257         core::video_format_desc format_desc = core::video_format_desc::get(L"PAL");\r
258         if(params.size() > 2)\r
259         {\r
260                 auto desc = core::video_format_desc::get(params[2]);\r
261                 if(desc.format != core::video_format::invalid)\r
262                         format_desc = desc;\r
263         }\r
264 \r
265         return make_safe<decklink_producer_proxy>(frame_factory, format_desc, device_index);\r
266 }\r
267 \r
268 }