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