]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/ffmpeg_producer.cpp
2.1.0: -frame_producer: Made "wrap_producer" calls unnecessary and removed them.
[casparcg] / modules / ffmpeg / producer / ffmpeg_producer.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 "ffmpeg_producer.h"\r
25 \r
26 #include "../ffmpeg_error.h"\r
27 \r
28 #include "muxer/frame_muxer.h"\r
29 #include "input/input.h"\r
30 #include "util/util.h"\r
31 #include "audio/audio_decoder.h"\r
32 #include "video/video_decoder.h"\r
33 \r
34 #include <common/env.h>\r
35 #include <common/log.h>\r
36 #include <common/param.h>\r
37 #include <common/diagnostics/graph.h>\r
38 \r
39 #include <core/video_format.h>\r
40 #include <core/producer/frame_producer.h>\r
41 #include <core/frame/frame_factory.h>\r
42 #include <core/frame/draw_frame.h>\r
43 #include <core/frame/frame_transform.h>\r
44 #include <core/monitor/monitor.h>\r
45 \r
46 #include <boost/algorithm/string.hpp>\r
47 #include <common/assert.h>\r
48 #include <boost/assign.hpp>\r
49 #include <boost/timer.hpp>\r
50 #include <boost/foreach.hpp>\r
51 #include <boost/filesystem.hpp>\r
52 #include <boost/range/algorithm/find_if.hpp>\r
53 #include <boost/range/algorithm/find.hpp>\r
54 #include <boost/property_tree/ptree.hpp>\r
55 #include <boost/regex.hpp>\r
56 #include <boost/thread/future.hpp>\r
57 \r
58 #include <tbb/parallel_invoke.h>\r
59 \r
60 #include <limits>\r
61 #include <memory>\r
62 #include <queue>\r
63 \r
64 namespace caspar { namespace ffmpeg {\r
65                                 \r
66 struct ffmpeg_producer : public core::frame_producer\r
67 {\r
68         monitor::basic_subject                                                                          event_subject_;\r
69         const std::wstring                                                                                      filename_;\r
70         \r
71         const spl::shared_ptr<diagnostics::graph>                                       graph_;\r
72                                         \r
73         const spl::shared_ptr<core::frame_factory>                                      frame_factory_;\r
74         const core::video_format_desc                                                           format_desc_;\r
75 \r
76         input                                                                                                           input_; \r
77         std::unique_ptr<video_decoder>                                                          video_decoder_;\r
78         std::unique_ptr<audio_decoder>                                                          audio_decoder_; \r
79         std::unique_ptr<frame_muxer>                                                            muxer_;\r
80 \r
81         const double                                                                                            fps_;\r
82         const uint32_t                                                                                          start_;\r
83         const uint32_t                                                                                          length_;\r
84                 \r
85         int64_t                                                                                                         frame_number_;\r
86 \r
87         core::draw_frame                                                        last_frame_;\r
88         \r
89 public:\r
90         explicit ffmpeg_producer(const spl::shared_ptr<core::frame_factory>& frame_factory, const std::wstring& filename, const std::wstring& filter, bool loop, uint32_t start, uint32_t length) \r
91                 : filename_(filename)\r
92                 , frame_factory_(frame_factory)         \r
93                 , format_desc_(frame_factory->video_format_desc())\r
94                 , input_(graph_, filename_, loop, start, length)\r
95                 , fps_(read_fps(*input_.context(), format_desc_.fps))\r
96                 , start_(start)\r
97                 , length_(length)\r
98                 , frame_number_(0)\r
99                 , last_frame_(core::draw_frame::empty())\r
100         {\r
101                 graph_->set_color("frame-time", diagnostics::color(0.1f, 1.0f, 0.1f));\r
102                 graph_->set_color("underflow", diagnostics::color(0.6f, 0.3f, 0.9f));   \r
103                 diagnostics::register_graph(graph_);\r
104                 \r
105                 try\r
106                 {\r
107                         video_decoder_.reset(new video_decoder(input_.context()));\r
108                         video_decoder_->subscribe(event_subject_);\r
109                         CASPAR_LOG(info) << print() << L" " << video_decoder_->print();\r
110                 }\r
111                 catch(averror_stream_not_found&)\r
112                 {\r
113                         //CASPAR_LOG(warning) << print() << " No video-stream found. Running without video.";   \r
114                 }\r
115                 catch(...)\r
116                 {\r
117                         CASPAR_LOG_CURRENT_EXCEPTION();\r
118                         CASPAR_LOG(warning) << print() << "Failed to open video-stream. Running without video.";        \r
119                 }\r
120 \r
121                 try\r
122                 {\r
123                         audio_decoder_.reset(new audio_decoder(input_.context(), frame_factory->video_format_desc()));\r
124                         audio_decoder_->subscribe(event_subject_);\r
125                         CASPAR_LOG(info) << print() << L" " << audio_decoder_->print();\r
126                 }\r
127                 catch(averror_stream_not_found&)\r
128                 {\r
129                         //CASPAR_LOG(warning) << print() << " No audio-stream found. Running without audio.";   \r
130                 }\r
131                 catch(...)\r
132                 {\r
133                         CASPAR_LOG_CURRENT_EXCEPTION();\r
134                         CASPAR_LOG(warning) << print() << " Failed to open audio-stream. Running without audio.";               \r
135                 }       \r
136 \r
137                 if(!video_decoder_ && !audio_decoder_)\r
138                         BOOST_THROW_EXCEPTION(averror_stream_not_found() << msg_info("No streams found"));\r
139 \r
140                 muxer_.reset(new frame_muxer(fps_, frame_factory, filter));\r
141 \r
142                 CASPAR_LOG(info) << print() << L" Initialized";\r
143         }\r
144 \r
145         // frame_producer\r
146         \r
147         virtual core::draw_frame receive(int flags) override\r
148         {               \r
149                 boost::timer frame_timer;\r
150                                 \r
151                 auto frame = core::draw_frame::late();          \r
152                 if(!try_decode_frame(frame, flags))\r
153                 {\r
154                         if(!input_.eof())               \r
155                                 graph_->set_tag("underflow");   \r
156                 }\r
157                                                         \r
158                 graph_->set_value("frame-time", frame_timer.elapsed()*format_desc_.fps*0.5);\r
159                 \r
160                 event_subject_  << monitor::event("profiler/time")              % frame_timer.elapsed() % (1.0/format_desc_.fps)                                        \r
161                                                 << monitor::event("file/time")                  % monitor::duration(file_frame_number()/fps_) \r
162                                                                                                                                 % monitor::duration(file_nb_frames()/fps_)\r
163                                                 << monitor::event("file/frame")                 % static_cast<int32_t>(file_frame_number())\r
164                                                                                                                                 % static_cast<int32_t>(file_nb_frames())\r
165                                                 << monitor::event("file/fps")                   % fps_\r
166                                                 << monitor::event("filename")                   % u8(filename_)\r
167                                                 << monitor::event("loop")                               % input_.loop();\r
168                                         \r
169                 graph_->set_text(print());\r
170 \r
171                 if(frame != core::draw_frame::late())\r
172                 {\r
173                         ++frame_number_;\r
174                         last_frame_ = frame;\r
175                 }\r
176                                 \r
177                 return frame;\r
178         }\r
179 \r
180         virtual core::draw_frame last_frame() const override\r
181         {\r
182                 return core::draw_frame::still(last_frame_);\r
183         }\r
184         \r
185         virtual uint32_t nb_frames() const override\r
186         {\r
187                 if(input_.loop())\r
188                         return std::numeric_limits<uint32_t>::max();\r
189 \r
190                 uint32_t nb_frames = file_nb_frames();\r
191 \r
192                 nb_frames = std::min(length_, nb_frames);\r
193                 nb_frames = muxer_->calc_nb_frames(nb_frames);\r
194                 \r
195                 return nb_frames > start_ ? nb_frames - start_ : 0;\r
196         }\r
197 \r
198         uint32_t file_nb_frames() const\r
199         {\r
200                 uint32_t file_nb_frames = 0;\r
201                 file_nb_frames = std::max(file_nb_frames, video_decoder_ ? video_decoder_->nb_frames() : 0);\r
202                 file_nb_frames = std::max(file_nb_frames, audio_decoder_ ? audio_decoder_->nb_frames() : 0);\r
203                 return file_nb_frames;\r
204         }\r
205 \r
206         uint32_t file_frame_number() const\r
207         {\r
208                 return video_decoder_ ? video_decoder_->file_frame_number() : 0;\r
209         }\r
210         \r
211         virtual boost::unique_future<std::wstring> call(const std::wstring& param) override\r
212         {\r
213                 boost::promise<std::wstring> promise;\r
214                 promise.set_value(do_call(param));\r
215                 return promise.get_future();\r
216         }\r
217                                 \r
218         virtual std::wstring print() const override\r
219         {\r
220                 return L"ffmpeg[" + boost::filesystem::path(filename_).filename().wstring() + L"|" \r
221                                                   + print_mode() + L"|" \r
222                                                   + boost::lexical_cast<std::wstring>(file_frame_number()) + L"/" + boost::lexical_cast<std::wstring>(file_nb_frames()) + L"]";\r
223         }\r
224 \r
225         virtual std::wstring name() const override\r
226         {\r
227                 return L"ffmpeg";\r
228         }\r
229 \r
230         boost::property_tree::wptree info() const override\r
231         {\r
232                 boost::property_tree::wptree info;\r
233                 info.add(L"type",                               L"ffmpeg");\r
234                 info.add(L"filename",                   filename_);\r
235                 info.add(L"width",                              video_decoder_ ? video_decoder_->width() : 0);\r
236                 info.add(L"height",                             video_decoder_ ? video_decoder_->height() : 0);\r
237                 info.add(L"progressive",                video_decoder_ ? video_decoder_->is_progressive() : false);\r
238                 info.add(L"fps",                                fps_);\r
239                 info.add(L"loop",                               input_.loop());\r
240                 info.add(L"frame-number",               frame_number_);\r
241                 auto nb_frames2 = nb_frames();\r
242                 info.add(L"nb-frames",                  nb_frames2 == std::numeric_limits<int64_t>::max() ? -1 : nb_frames2);\r
243                 info.add(L"file-frame-number",  file_frame_number());\r
244                 info.add(L"file-nb-frames",             file_nb_frames());\r
245                 return info;\r
246         }\r
247         \r
248         virtual void subscribe(const monitor::observable::observer_ptr& o) override\r
249         {\r
250                 event_subject_.subscribe(o);\r
251         }\r
252 \r
253         virtual void unsubscribe(const monitor::observable::observer_ptr& o) override\r
254         {\r
255                 event_subject_.unsubscribe(o);\r
256         }\r
257 \r
258         // ffmpeg_producer\r
259 \r
260         std::wstring print_mode() const\r
261         {\r
262                 return video_decoder_ ? ffmpeg::print_mode(video_decoder_->width(), video_decoder_->height(), fps_, !video_decoder_->is_progressive()) : L"n/a";\r
263         }\r
264                                         \r
265         std::wstring do_call(const std::wstring& param)\r
266         {\r
267                 static const boost::wregex loop_exp(L"LOOP\\s*(?<VALUE>\\d?)?", boost::regex::icase);\r
268                 static const boost::wregex seek_exp(L"SEEK\\s+(?<VALUE>\\d+)", boost::regex::icase);\r
269                 \r
270                 boost::wsmatch what;\r
271                 if(boost::regex_match(param, what, loop_exp))\r
272                 {\r
273                         if(!what["VALUE"].str().empty())\r
274                                 input_.loop(boost::lexical_cast<bool>(what["VALUE"].str()));\r
275                         return boost::lexical_cast<std::wstring>(input_.loop());\r
276                 }\r
277                 if(boost::regex_match(param, what, seek_exp))\r
278                 {\r
279                         input_.seek(boost::lexical_cast<uint32_t>(what["VALUE"].str()));\r
280                         return L"";\r
281                 }\r
282 \r
283                 BOOST_THROW_EXCEPTION(invalid_argument());\r
284         }\r
285 \r
286         bool try_decode_frame(core::draw_frame& result, int flags)\r
287         {\r
288                 for(int n = 0; n < 32; ++n)\r
289                 {\r
290                         if(muxer_->try_pop(result))                     \r
291                                 return true;                    \r
292 \r
293                         std::shared_ptr<AVPacket> pkt;\r
294 \r
295                         for(int n = 0; n < 32 && ((video_decoder_ && !video_decoder_->ready()) || (audio_decoder_ && !audio_decoder_->ready())) && input_.try_pop(pkt); ++n)\r
296                         {\r
297                                 if(video_decoder_)\r
298                                         video_decoder_->push(pkt);\r
299                                 if(audio_decoder_)\r
300                                         audio_decoder_->push(pkt);\r
301                         }\r
302                 \r
303                         std::shared_ptr<AVFrame>                        video;\r
304                         std::shared_ptr<core::audio_buffer> audio;\r
305 \r
306                         tbb::parallel_invoke(\r
307                         [&]\r
308                         {\r
309                                 if(!muxer_->video_ready() && video_decoder_)    \r
310                                         video = video_decoder_->poll(); \r
311                         },\r
312                         [&]\r
313                         {               \r
314                                 if(!muxer_->audio_ready() && audio_decoder_)            \r
315                                         audio = audio_decoder_->poll();         \r
316                         });\r
317                 \r
318                         muxer_->push(video, flags);\r
319                         muxer_->push(audio);\r
320 \r
321                         if(!audio_decoder_)\r
322                         {\r
323                                 if(video == flush_video())\r
324                                         muxer_->push(flush_audio());\r
325                                 else if(!muxer_->audio_ready())\r
326                                         muxer_->push(empty_audio());\r
327                         }\r
328 \r
329                         if(!video_decoder_)\r
330                         {\r
331                                 if(audio == flush_audio())\r
332                                         muxer_->push(flush_video(), 0);\r
333                                 else if(!muxer_->video_ready())\r
334                                         muxer_->push(empty_video(), 0);\r
335                         }\r
336                 }\r
337 \r
338                 return false;\r
339         }\r
340 };\r
341 \r
342 spl::shared_ptr<core::frame_producer> create_producer(const spl::shared_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
343 {               \r
344         auto filename = probe_stem(env::media_folder() + L"\\" + params.at(0));\r
345 \r
346         if(filename.empty())\r
347                 return core::frame_producer::empty();\r
348         \r
349         auto loop               = boost::range::find(params, L"LOOP") != params.end();\r
350         auto start              = get_param(L"SEEK", params, static_cast<uint32_t>(0));\r
351         auto length             = get_param(L"LENGTH", params, std::numeric_limits<uint32_t>::max());\r
352         auto filter_str = get_param(L"FILTER", params, L"");    \r
353                 \r
354         boost::replace_all(filter_str, L"DEINTERLACE", L"YADIF=0:-1");\r
355         boost::replace_all(filter_str, L"DEINTERLACE_BOB", L"YADIF=1:-1");\r
356         \r
357         return spl::make_shared<ffmpeg_producer>(frame_factory, filename, filter_str, loop, start, length);\r
358 }\r
359 \r
360 }}