]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/ffmpeg_producer.cpp
2.0.2: MAYOR CHANGES => needs testing
[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 #include "muxer/frame_muxer.h"\r
26 #include "input/input.h"\r
27 #include "util/util.h"\r
28 #include "audio/audio_decoder.h"\r
29 #include "video/video_decoder.h"\r
30 \r
31 #include <common/env.h>\r
32 #include <common/utility/assert.h>\r
33 #include <common/diagnostics/graph.h>\r
34 \r
35 #include <core/video_format.h>\r
36 #include <core/producer/frame_producer.h>\r
37 #include <core/producer/frame/frame_factory.h>\r
38 #include <core/producer/frame/basic_frame.h>\r
39 #include <core/producer/frame/frame_transform.h>\r
40 \r
41 #include <boost/algorithm/string.hpp>\r
42 #include <boost/assign.hpp>\r
43 #include <boost/timer.hpp>\r
44 #include <boost/foreach.hpp>\r
45 #include <boost/filesystem.hpp>\r
46 #include <boost/range/algorithm/find_if.hpp>\r
47 #include <boost/range/algorithm/find.hpp>\r
48 \r
49 #include <tbb/parallel_invoke.h>\r
50 \r
51 #include <limits>\r
52 #include <memory>\r
53 #include <queue>\r
54 \r
55 namespace caspar { namespace ffmpeg {\r
56                                 \r
57 struct ffmpeg_producer : public core::frame_producer\r
58 {\r
59         const std::wstring                                                              filename_;\r
60         \r
61         const safe_ptr<diagnostics::graph>                              graph_;\r
62         boost::timer                                                                    frame_timer_;\r
63         boost::timer                                                                    video_timer_;\r
64         boost::timer                                                                    audio_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 int                                                                               start_;\r
75         const bool                                                                              loop_;\r
76         const size_t                                                                    length_;\r
77 \r
78         safe_ptr<core::basic_frame>                                             last_frame_;\r
79         \r
80         std::queue<safe_ptr<core::basic_frame>>                 frame_buffer_;\r
81         \r
82 public:\r
83         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
84                 : filename_(filename)\r
85                 , frame_factory_(frame_factory)         \r
86                 , format_desc_(frame_factory->get_video_format_desc())\r
87                 , input_(graph_, filename_, loop, start, length)\r
88                 , start_(start)\r
89                 , loop_(loop)\r
90                 , length_(length)\r
91                 , last_frame_(core::basic_frame::empty())\r
92         {\r
93                 graph_->add_guide("frame-time", 0.5);\r
94                 graph_->set_color("frame-time", diagnostics::color(0.1f, 1.0f, 0.1f));\r
95                 graph_->set_color("underflow", diagnostics::color(0.6f, 0.3f, 0.9f));   \r
96                 diagnostics::register_graph(graph_);\r
97                 \r
98                 try\r
99                 {\r
100                         video_decoder_.reset(new video_decoder(input_.context()));\r
101                 }\r
102                 catch(averror_stream_not_found&)\r
103                 {\r
104                         CASPAR_LOG(warning) << "No video-stream found. Running without video."; \r
105                 }\r
106                 catch(...)\r
107                 {\r
108                         CASPAR_LOG_CURRENT_EXCEPTION();\r
109                         CASPAR_LOG(warning) << "Failed to open video-stream. Running without video.";   \r
110                 }\r
111 \r
112                 try\r
113                 {\r
114                         audio_decoder_.reset(new audio_decoder(input_.context(), frame_factory->get_video_format_desc()));\r
115                 }\r
116                 catch(averror_stream_not_found&)\r
117                 {\r
118                         CASPAR_LOG(warning) << "No audio-stream found. Running without audio."; \r
119                 }\r
120                 catch(...)\r
121                 {\r
122                         CASPAR_LOG_CURRENT_EXCEPTION();\r
123                         CASPAR_LOG(warning) << "Failed to open audio-stream. Running without audio.";           \r
124                 }       \r
125 \r
126                 muxer_.reset(new frame_muxer(video_decoder_ ? video_decoder_->fps() : frame_factory->get_video_format_desc().fps, frame_factory, filter));\r
127         }\r
128         \r
129         virtual safe_ptr<core::basic_frame> receive(int hints)\r
130         {               \r
131                 frame_timer_.restart();\r
132                 \r
133                 for(int n = 0; n < 32 && frame_buffer_.size() < 2; ++n)\r
134                         try_decode_frame(hints);\r
135                 \r
136                 graph_->update_value("frame-time", frame_timer_.elapsed()*format_desc_.fps*0.5);\r
137                                 \r
138                 if(frame_buffer_.empty() && input_.eof())\r
139                         return core::basic_frame::eof();\r
140 \r
141                 if(frame_buffer_.empty())\r
142                 {\r
143                         graph_->add_tag("underflow");   \r
144                         return core::basic_frame::late();                       \r
145                 }\r
146                 \r
147                 last_frame_ = frame_buffer_.front();    \r
148                 frame_buffer_.pop();\r
149 \r
150                 graph_->set_text(print());\r
151 \r
152                 return last_frame_;\r
153         }\r
154 \r
155         virtual safe_ptr<core::basic_frame> last_frame() const\r
156         {\r
157                 return disable_audio(last_frame_);\r
158         }\r
159         \r
160         void try_decode_frame(int hints)\r
161         {\r
162                 std::shared_ptr<AVPacket> pkt;\r
163 \r
164                 for(int n = 0; n < 32 && ((video_decoder_ && !video_decoder_->ready()) || (audio_decoder_ && !audio_decoder_->ready())) && input_.try_pop(pkt); ++n)\r
165                 {\r
166                         if(video_decoder_)\r
167                                 video_decoder_->push(pkt);\r
168                         if(audio_decoder_)\r
169                                 audio_decoder_->push(pkt);\r
170                 }\r
171                 \r
172                 std::shared_ptr<AVFrame>                        video;\r
173                 std::shared_ptr<core::audio_buffer> audio;\r
174 \r
175                 tbb::parallel_invoke(\r
176                 [&]\r
177                 {\r
178                         if(!muxer_->video_ready() && video_decoder_)                    \r
179                                 video = video_decoder_->poll();                 \r
180                 },\r
181                 [&]\r
182                 {               \r
183                         if(!muxer_->audio_ready() && audio_decoder_)                    \r
184                                 audio = audio_decoder_->poll();                 \r
185                 });\r
186 \r
187                 muxer_->push(video, hints);\r
188                 muxer_->push(audio);\r
189 \r
190                 if(!audio_decoder_)\r
191                 {\r
192                         if(video == flush_video())\r
193                                 muxer_->push(flush_audio());\r
194                         else if(!muxer_->audio_ready())\r
195                                 muxer_->push(empty_audio());\r
196                 }\r
197 \r
198                 if(!video_decoder_)\r
199                 {\r
200                         if(audio == flush_audio())\r
201                                 muxer_->push(flush_video(), 0);\r
202                         else if(!muxer_->video_ready())\r
203                                 muxer_->push(empty_video(), 0);\r
204                 }\r
205                 \r
206                 for(auto frame = muxer_->poll(); frame; frame = muxer_->poll())\r
207                         frame_buffer_.push(make_safe_ptr(frame));\r
208         }\r
209 \r
210         virtual int64_t nb_frames() const \r
211         {\r
212                 if(loop_)\r
213                         return std::numeric_limits<int64_t>::max();\r
214 \r
215                 // This function estimates nb_frames until input has read all packets for one loop, at which point the count should be accurate.\r
216 \r
217                 int64_t nb_frames = input_.nb_frames();\r
218                 if(input_.nb_loops() < 1) // input still hasn't counted all frames\r
219                 {\r
220                         auto video_nb_frames = video_decoder_ ? video_decoder_->nb_frames() : std::numeric_limits<int64_t>::max();\r
221                         auto audio_nb_frames = audio_decoder_ ? audio_decoder_->nb_frames() : std::numeric_limits<int64_t>::max();\r
222 \r
223                         nb_frames = std::min(static_cast<int64_t>(length_), std::max(nb_frames, std::max(video_nb_frames, audio_nb_frames)));\r
224                 }\r
225 \r
226                 nb_frames = muxer_->calc_nb_frames(nb_frames);\r
227 \r
228                 // TODO: Might need to scale nb_frames av frame_muxer transformations.\r
229 \r
230                 return nb_frames - start_;\r
231         }\r
232                                 \r
233         virtual std::wstring print() const\r
234         {\r
235                 if(video_decoder_)\r
236                 {\r
237                         return L"ffmpeg[" + boost::filesystem::wpath(filename_).filename() + L"|" \r
238                                                           + boost::lexical_cast<std::wstring>(video_decoder_->width()) + L"x" + boost::lexical_cast<std::wstring>(video_decoder_->height())\r
239                                                           + (video_decoder_->is_progressive() ? L"p" : L"i")  + boost::lexical_cast<std::wstring>(video_decoder_->is_progressive() ? video_decoder_->fps() : 2.0 * video_decoder_->fps())\r
240                                                           + L"]";\r
241                 }\r
242                 \r
243                 return L"ffmpeg[" + boost::filesystem::wpath(filename_).filename() + L"]";\r
244         }\r
245 };\r
246 \r
247 safe_ptr<core::frame_producer> create_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
248 {               \r
249         static const std::vector<std::wstring> extensions = boost::assign::list_of\r
250                 (L"mpg")(L"mpeg")(L"m2v")(L"m4v")(L"mp3")(L"mp4")(L"mpga")\r
251                 (L"avi")\r
252                 (L"mov")\r
253                 (L"qt")\r
254                 (L"webm")\r
255                 (L"dv")         \r
256                 (L"f4v")(L"flv")\r
257                 (L"mkv")(L"mka")\r
258                 (L"wmv")(L"wma")(L"wav")\r
259                 (L"rm")(L"ram")\r
260                 (L"ogg")(L"ogv")(L"oga")(L"ogx")\r
261                 (L"divx")(L"xvid");\r
262 \r
263         std::wstring filename = env::media_folder() + L"\\" + params[0];\r
264         \r
265         auto ext = boost::find_if(extensions, [&](const std::wstring& ex)\r
266         {                                       \r
267                 return boost::filesystem::is_regular_file(boost::filesystem::wpath(filename + L"." + ex));\r
268         });\r
269 \r
270         if(ext == extensions.end())\r
271                 return core::frame_producer::empty();\r
272 \r
273         auto path               = filename + L"." + *ext;\r
274         auto loop               = boost::range::find(params, L"LOOP") != params.end();\r
275         auto start              = core::get_param(L"SEEK", params, 0);\r
276         auto length             = core::get_param(L"LENGTH", params, std::numeric_limits<size_t>::max());\r
277         auto filter_str = core::get_param<std::wstring>(L"FILTER", params, L"");        \r
278                 \r
279         boost::replace_all(filter_str, L"DEINTERLACE", L"YADIF=0:-1");\r
280         boost::replace_all(filter_str, L"DEINTERLACE_BOB", L"YADIF=1:-1");\r
281         \r
282         return create_destroy_proxy(make_safe<ffmpeg_producer>(frame_factory, path, filter_str, loop, start, length));\r
283 }\r
284 \r
285 }}