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