]> git.sesse.net Git - casparcg/blob - modules/decklink/producer/decklink_producer.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[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 "../../ffmpeg/producer/filter/filter.h"\r
29 #include "../../ffmpeg/producer/util/util.h"\r
30 #include "../../ffmpeg/producer/muxer/frame_muxer.h"\r
31 \r
32 #include <common/log/log.h>\r
33 #include <common/diagnostics/graph.h>\r
34 #include <common/exception/exceptions.h>\r
35 \r
36 #include <core/mixer/write_frame.h>\r
37 #include <core/producer/frame/frame_transform.h>\r
38 #include <core/producer/frame/frame_factory.h>\r
39 \r
40 #include <agents.h>\r
41 #include <agents_extras.h>\r
42 #include <ppl.h>\r
43 \r
44 #include <boost/algorithm/string.hpp>\r
45 #include <boost/timer.hpp>\r
46 \r
47 #if defined(_MSC_VER)\r
48 #pragma warning (push)\r
49 #pragma warning (disable : 4244)\r
50 #endif\r
51 extern "C" \r
52 {\r
53         #define __STDC_CONSTANT_MACROS\r
54         #define __STDC_LIMIT_MACROS\r
55         #include <libavcodec/avcodec.h>\r
56 }\r
57 #if defined(_MSC_VER)\r
58 #pragma warning (pop)\r
59 #endif\r
60 \r
61 #pragma warning(push)\r
62 #pragma warning(disable : 4996)\r
63 \r
64         #include <atlbase.h>\r
65 \r
66         #include <atlcom.h>\r
67         #include <atlhost.h>\r
68 \r
69 #pragma warning(push)\r
70 \r
71 #include <algorithm>\r
72 #include <functional>\r
73 \r
74 namespace caspar { namespace decklink {\r
75                 \r
76 typedef std::pair<CComPtr<IDeckLinkVideoInputFrame>, CComPtr<IDeckLinkAudioInputPacket>> frame_packet;\r
77 \r
78 class decklink_input : boost::noncopyable, public IDeckLinkInputCallback\r
79 {       \r
80         Concurrency::ITarget<frame_packet>&     target_;\r
81 \r
82         CComPtr<IDeckLink>                                      decklink_;\r
83         CComQIPtr<IDeckLinkInput>                       input_;\r
84         \r
85         const std::wstring                                      model_name_;\r
86         const core::video_format_desc           format_desc_;\r
87         const size_t                                            device_index_;\r
88 \r
89         safe_ptr<diagnostics::graph>            graph_;\r
90         boost::timer                                            tick_timer_;\r
91         boost::timer                                            frame_timer_;\r
92 \r
93 public:\r
94         decklink_input(Concurrency::ITarget<frame_packet>& target, const core::video_format_desc& format_desc, size_t device_index)\r
95                 : target_(target)\r
96                 , decklink_(get_device(device_index))\r
97                 , input_(decklink_)\r
98                 , model_name_(get_model_name(decklink_))\r
99                 , format_desc_(format_desc)\r
100                 , device_index_(device_index)\r
101         {               \r
102                 graph_->add_guide("tick-time", 0.5);\r
103                 graph_->set_color("tick-time", diagnostics::color(0.0f, 0.6f, 0.9f));   \r
104                 graph_->set_color("late-frame", diagnostics::color(0.6f, 0.3f, 0.3f));\r
105                 graph_->set_color("frame-time", diagnostics::color(1.0f, 0.0f, 0.0f));\r
106                 graph_->set_color("dropped-frame", diagnostics::color(0.3f, 0.6f, 0.3f));\r
107                 graph_->set_color("output-buffer", diagnostics::color(0.0f, 1.0f, 0.0f));\r
108                 graph_->set_text(narrow(print()));\r
109                 diagnostics::register_graph(graph_);\r
110                 \r
111                 auto display_mode = get_display_mode(input_, format_desc_.format, bmdFormat8BitYUV, bmdVideoInputFlagDefault);\r
112                 \r
113                 Concurrency::scoped_oversubcription_token oversubscribe;\r
114 \r
115                 // NOTE: bmdFormat8BitARGB is currently not supported by any decklink card. (2011-05-08)\r
116                 if(FAILED(input_->EnableVideoInput(display_mode, bmdFormat8BitYUV, 0))) \r
117                         BOOST_THROW_EXCEPTION(caspar_exception() \r
118                                                                         << msg_info(narrow(print()) + " Could not enable video input.")\r
119                                                                         << boost::errinfo_api_function("EnableVideoInput"));\r
120 \r
121                 if(FAILED(input_->EnableAudioInput(bmdAudioSampleRate48kHz, bmdAudioSampleType32bitInteger, format_desc_.audio_channels))) \r
122                         BOOST_THROW_EXCEPTION(caspar_exception() \r
123                                                                         << msg_info(narrow(print()) + " Could not enable audio input.")\r
124                                                                         << boost::errinfo_api_function("EnableAudioInput"));\r
125                         \r
126                 if (FAILED(input_->SetCallback(this)) != S_OK)\r
127                         BOOST_THROW_EXCEPTION(caspar_exception() \r
128                                                                         << msg_info(narrow(print()) + " Failed to set input callback.")\r
129                                                                         << boost::errinfo_api_function("SetCallback"));\r
130                         \r
131                 if(FAILED(input_->StartStreams()))\r
132                         BOOST_THROW_EXCEPTION(caspar_exception() \r
133                                                                         << msg_info(narrow(print()) + " Failed to start input stream.")\r
134                                                                         << boost::errinfo_api_function("StartStreams"));\r
135 \r
136                 CASPAR_LOG(info) << print() << L" Successfully Initialized.";\r
137         }\r
138 \r
139         ~decklink_input()\r
140         {\r
141                 Concurrency::scoped_oversubcription_token oversubscribe;\r
142                 if(input_ != nullptr) \r
143                 {\r
144                         input_->StopStreams();\r
145                         input_->DisableVideoInput();\r
146                 }\r
147                 CASPAR_LOG(info) << print() << L" Successfully Uninitialized.";\r
148         }\r
149 \r
150         virtual HRESULT STDMETHODCALLTYPE       QueryInterface (REFIID, LPVOID*)        {return E_NOINTERFACE;}\r
151         virtual ULONG STDMETHODCALLTYPE         AddRef ()                                                       {return 1;}\r
152         virtual ULONG STDMETHODCALLTYPE         Release ()                                                      {return 1;}\r
153                 \r
154         virtual HRESULT STDMETHODCALLTYPE VideoInputFormatChanged(BMDVideoInputFormatChangedEvents /*notificationEvents*/, IDeckLinkDisplayMode* newDisplayMode, BMDDetectedVideoInputFormatFlags /*detectedSignalFlags*/)\r
155         {\r
156                 return S_OK;\r
157         }\r
158 \r
159         virtual HRESULT STDMETHODCALLTYPE VideoInputFrameArrived(IDeckLinkVideoInputFrame* video, IDeckLinkAudioInputPacket* audio)\r
160         {       \r
161                 if(!Concurrency::asend(target_, frame_packet(CComPtr<IDeckLinkVideoInputFrame>(video), CComPtr<IDeckLinkAudioInputPacket>(audio))))\r
162                         graph_->add_tag("dropped-frame");\r
163                 return S_OK;\r
164         }\r
165                 \r
166         std::wstring print() const\r
167         {\r
168                 return model_name_ + L" [" + boost::lexical_cast<std::wstring>(device_index_) + L"]";\r
169         }\r
170 };\r
171         \r
172 class decklink_producer : public Concurrency::agent, public core::frame_producer\r
173 {               \r
174         safe_ptr<diagnostics::graph>                                                                                            graph_;\r
175 \r
176         Concurrency::overwrite_buffer<ffmpeg::frame_muxer2::video_source_element_t>     video_frames_;\r
177         Concurrency::overwrite_buffer<ffmpeg::frame_muxer2::audio_source_element_t>     audio_buffers_;\r
178         Concurrency::overwrite_buffer<ffmpeg::frame_muxer2::target_element_t>           muxed_frames_;\r
179 \r
180         const core::video_format_desc           format_desc_;\r
181         const size_t                                            device_index_;\r
182 \r
183         safe_ptr<core::basic_frame>                     last_frame_;\r
184         const int64_t                                           length_;\r
185         int64_t                                                         frame_number_;\r
186                         \r
187         ffmpeg::frame_muxer2                            muxer_;\r
188 \r
189         mutable Concurrency::single_assignment<std::wstring> print_;\r
190         \r
191         tbb::atomic<bool> is_running_;\r
192 public:\r
193 \r
194         explicit decklink_producer(const safe_ptr<core::frame_factory>& frame_factory, const core::video_format_desc& format_desc, size_t device_index, const std::wstring& filter_str, int64_t length)\r
195                 : muxed_frames_(1)\r
196                 , format_desc_(format_desc)\r
197                 , device_index_(device_index)\r
198                 , last_frame_(core::basic_frame::empty())\r
199                 , length_(length)\r
200                 , frame_number_(0)\r
201                 , muxer_(&video_frames_, &audio_buffers_, muxed_frames_, format_desc.fps, frame_factory)\r
202         {\r
203                 diagnostics::register_graph(graph_);\r
204                 is_running_ = true;\r
205                 agent::start();\r
206         }\r
207 \r
208         ~decklink_producer()\r
209         {\r
210                 is_running_ = false;\r
211                 agent::wait(this);\r
212         }\r
213                                 \r
214         virtual safe_ptr<core::basic_frame> receive(int)\r
215         {\r
216                 auto frame = core::basic_frame::late();\r
217 \r
218                 try\r
219                 {\r
220                         if(frame_number_ > length_)\r
221                                 return core::basic_frame::eof();\r
222 \r
223                         last_frame_ = frame = Concurrency::receive(muxed_frames_, 10).first;\r
224                         ++frame_number_;\r
225                 }\r
226                 catch(Concurrency::operation_timed_out&)\r
227                 {               \r
228                         graph_->add_tag("underflow");   \r
229                 }\r
230 \r
231                 return frame;\r
232         }\r
233 \r
234         virtual safe_ptr<core::basic_frame> last_frame() const\r
235         {\r
236                 return disable_audio(last_frame_);\r
237         }\r
238         \r
239         virtual int64_t nb_frames() const \r
240         {\r
241                 return length_;\r
242         }\r
243         \r
244         std::wstring print() const\r
245         {\r
246                 return print_.value();\r
247         }\r
248 \r
249         virtual void run()\r
250         {\r
251                 win32_exception::install_handler();\r
252 \r
253                 try\r
254                 {\r
255                         struct co_init\r
256                         {\r
257                                 co_init()  {CoInitialize(NULL);}\r
258                                 ~co_init() {CoUninitialize();}\r
259                         } init;\r
260                         \r
261                         Concurrency::overwrite_buffer<frame_packet> input_buffer;\r
262 \r
263                         decklink_input input(input_buffer, format_desc_, device_index_);\r
264                         \r
265                         Concurrency::send(print_, input.print());\r
266 \r
267                         while(is_running_)\r
268                         {\r
269                                 auto packet = Concurrency::receive(input_buffer);\r
270                                 auto video  = packet.first;\r
271                                 auto audio  = packet.second;                            \r
272                                 void* bytes = nullptr;\r
273 \r
274                                 if(FAILED(video->GetBytes(&bytes)) || !bytes)\r
275                                         continue;\r
276                         \r
277                                 safe_ptr<AVFrame> av_frame(avcodec_alloc_frame(), av_free);     \r
278                                 avcodec_get_frame_defaults(av_frame.get());\r
279                                                 \r
280                                 av_frame->data[0]                       = reinterpret_cast<uint8_t*>(bytes);\r
281                                 av_frame->linesize[0]           = video->GetRowBytes();                 \r
282                                 av_frame->format                        = PIX_FMT_UYVY422;\r
283                                 av_frame->width                         = video->GetWidth();\r
284                                 av_frame->height                        = video->GetHeight();\r
285                                 av_frame->interlaced_frame      = format_desc_.field_mode != core::field_mode::progressive;\r
286                                 av_frame->top_field_first       = format_desc_.field_mode == core::field_mode::upper ? 1 : 0;\r
287                                         \r
288                                 Concurrency::send(video_frames_, av_frame);                                     \r
289                                 \r
290                                 // It is assumed that audio is always equal or ahead of video.\r
291                                 if(audio && SUCCEEDED(audio->GetBytes(&bytes)) && bytes)\r
292                                 {\r
293                                         auto sample_frame_count = audio->GetSampleFrameCount();\r
294                                         auto audio_data = reinterpret_cast<int32_t*>(bytes);\r
295                                         Concurrency::send(audio_buffers_, make_safe<core::audio_buffer>(audio_data, audio_data + sample_frame_count*format_desc_.audio_channels));\r
296                                 }\r
297                                 else\r
298                                         Concurrency::send(audio_buffers_, make_safe<core::audio_buffer>(format_desc_.audio_samples_per_frame, 0));      \r
299                         }\r
300 \r
301                 }\r
302                 catch(...)\r
303                 {\r
304                         CASPAR_LOG_CURRENT_EXCEPTION();\r
305                 }\r
306                 \r
307                 done();\r
308         }\r
309 };\r
310 \r
311 safe_ptr<core::frame_producer> create_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
312 {\r
313         if(params.empty() || !boost::iequals(params[0], "decklink"))\r
314                 return core::frame_producer::empty();\r
315         \r
316         std::vector<std::wstring> params2 = params;\r
317         std::for_each(std::begin(params2), std::end(params2), std::bind(&boost::to_upper<std::wstring>, std::placeholders::_1, std::locale()));\r
318 \r
319         auto device_index       = core::get_param(L"DEVICE", params2, 1);\r
320         auto filter_str         = core::get_param<std::wstring>(L"FILTER", params2, L"");       \r
321         auto length                     = core::get_param(L"LENGTH", params2, std::numeric_limits<int64_t>::max());     \r
322         \r
323         boost::replace_all(filter_str, L"DEINTERLACE", L"YADIF=0:-1");\r
324         boost::replace_all(filter_str, L"DEINTERLACE_BOB", L"YADIF=1:-1");\r
325 \r
326         auto format_desc        = core::video_format_desc::get(core::get_param<std::wstring>(L"FORMAT", params2, L"INVALID"));\r
327 \r
328         if(format_desc.format == core::video_format::invalid)\r
329                 format_desc = frame_factory->get_video_format_desc();\r
330                         \r
331         return make_safe<decklink_producer>(frame_factory, format_desc, device_index, filter_str, length);\r
332 }\r
333 \r
334 }}