]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/ffmpeg_producer.cpp
2.0. layer: Fixed potential arethmetic overflows.
[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 "frame_muxer.h"\r
25 #include "input.h"\r
26 #include "util.h"\r
27 #include "audio/audio_decoder.h"\r
28 #include "video/video_decoder.h"\r
29 \r
30 #include <common/env.h>\r
31 #include <common/utility/assert.h>\r
32 #include <common/diagnostics/graph.h>\r
33 \r
34 #include <core/video_format.h>\r
35 #include <core/producer/frame_producer.h>\r
36 #include <core/producer/frame/frame_factory.h>\r
37 #include <core/producer/frame/basic_frame.h>\r
38 \r
39 #include <boost/assign.hpp>\r
40 #include <boost/timer.hpp>\r
41 #include <boost/foreach.hpp>\r
42 #include <boost/filesystem.hpp>\r
43 #include <boost/range/algorithm/find_if.hpp>\r
44 #include <boost/range/algorithm/find.hpp>\r
45 \r
46 #include <tbb/parallel_invoke.h>\r
47 \r
48 namespace caspar {\r
49                                 \r
50 struct ffmpeg_producer : public core::frame_producer\r
51 {\r
52         const std::wstring                                                              filename_;\r
53         \r
54         const safe_ptr<diagnostics::graph>                              graph_;\r
55         boost::timer                                                                    frame_timer_;\r
56         boost::timer                                                                    video_timer_;\r
57         boost::timer                                                                    audio_timer_;\r
58                                         \r
59         const safe_ptr<core::frame_factory>                             frame_factory_;\r
60         const core::video_format_desc                                   format_desc_;\r
61 \r
62         input                                                                                   input_; \r
63         video_decoder                                                                   video_decoder_;\r
64         audio_decoder                                                                   audio_decoder_; \r
65         double                                                                                  fps_;\r
66         frame_muxer                                                                             muxer_;\r
67 \r
68         const int                                                                               start_;\r
69         const bool                                                                              loop_;\r
70         const size_t                                                                    length_;\r
71 \r
72         safe_ptr<core::basic_frame>                                             last_frame_;\r
73 \r
74         const size_t                                                                    width_;\r
75         const size_t                                                                    height_;\r
76         bool                                                                                    is_progressive_;\r
77         \r
78 public:\r
79         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
80                 : filename_(filename)\r
81                 , graph_(diagnostics::create_graph([this]{return print();}))\r
82                 , frame_factory_(frame_factory)         \r
83                 , format_desc_(frame_factory->get_video_format_desc())\r
84                 , input_(graph_, filename_, loop, start, length)\r
85                 , video_decoder_(input_.context(), frame_factory, filter)\r
86                 , audio_decoder_(input_.context(), frame_factory->get_video_format_desc())\r
87                 , fps_(video_decoder_.fps())\r
88                 , muxer_(fps_, frame_factory)\r
89                 , start_(start)\r
90                 , loop_(loop)\r
91                 , length_(length)\r
92                 , last_frame_(core::basic_frame::empty())\r
93                 , width_(video_decoder_.width())\r
94                 , height_(video_decoder_.height())\r
95                 , is_progressive_(true)\r
96         {\r
97                 graph_->add_guide("frame-time", 0.5);\r
98                 graph_->set_color("frame-time", diagnostics::color(0.1f, 1.0f, 0.1f));\r
99                 graph_->set_color("underflow", diagnostics::color(0.6f, 0.3f, 0.9f));   \r
100                 \r
101                 for(int n = 0; n < 32 && muxer_.empty(); ++n)\r
102                         decode_frame(0);\r
103         }\r
104                         \r
105         virtual safe_ptr<core::basic_frame> receive(int hints)\r
106         {\r
107                 auto frame = core::basic_frame::late();\r
108                 \r
109                 frame_timer_.restart();\r
110                 \r
111                 for(int n = 0; n < 64 && muxer_.empty(); ++n)\r
112                         decode_frame(hints);\r
113                 \r
114                 graph_->update_value("frame-time", static_cast<float>(frame_timer_.elapsed()*format_desc_.fps*0.5));\r
115 \r
116                 if(!muxer_.empty())\r
117                         frame = last_frame_ = muxer_.pop();     \r
118                 else\r
119                 {\r
120                         if(input_.eof())\r
121                                 return core::basic_frame::eof();\r
122                         else                    \r
123                                 graph_->add_tag("underflow");   \r
124                 }\r
125                 \r
126                 return frame;\r
127         }\r
128 \r
129         virtual safe_ptr<core::basic_frame> last_frame() const\r
130         {\r
131                 return disable_audio(last_frame_);\r
132         }\r
133 \r
134         void decode_frame(int hints)\r
135         {\r
136                 for(int n = 0; n < 16 && ((!muxer_.video_ready() && !video_decoder_.ready()) || (!muxer_.audio_ready() && !audio_decoder_.ready())); ++n) \r
137                 {\r
138                         std::shared_ptr<AVPacket> pkt;\r
139                         if(input_.try_pop(pkt))\r
140                         {\r
141                                 video_decoder_.push(pkt);\r
142                                 audio_decoder_.push(pkt);\r
143                         }\r
144                 }\r
145                 \r
146                 tbb::parallel_invoke(\r
147                 [&]\r
148                 {\r
149                         if(muxer_.video_ready())\r
150                                 return;\r
151 \r
152                         auto video_frames = video_decoder_.poll();\r
153                         BOOST_FOREACH(auto& video, video_frames)        \r
154                         {\r
155                                 is_progressive_ = video ? video->interlaced_frame == 0 : is_progressive_;\r
156                                 muxer_.push(video, hints);      \r
157                         }\r
158                 },\r
159                 [&]\r
160                 {\r
161                         if(muxer_.audio_ready())\r
162                                 return;\r
163                                         \r
164                         auto audio_samples = audio_decoder_.poll();\r
165                         BOOST_FOREACH(auto& audio, audio_samples)\r
166                                 muxer_.push(audio);                             \r
167                 });\r
168 \r
169                 muxer_.commit();\r
170         }\r
171 \r
172         virtual int64_t nb_frames() const \r
173         {\r
174                 if(loop_)\r
175                         return std::numeric_limits<int64_t>::max();\r
176 \r
177                 // This function estimates nb_frames until input has read all packets for one loop, at which point the count should be accurate.\r
178 \r
179                 int64_t nb_frames = input_.nb_frames();\r
180                 if(input_.nb_loops() < 1) // input still hasn't counted all frames\r
181                 {\r
182                         int64_t video_nb_frames = video_decoder_.nb_frames();\r
183                         int64_t audio_nb_frames = audio_decoder_.nb_frames();\r
184 \r
185                         nb_frames = std::min(static_cast<int64_t>(length_), std::max(nb_frames, std::max(video_nb_frames, audio_nb_frames)));\r
186                 }\r
187 \r
188                 nb_frames = muxer_.calc_nb_frames(nb_frames);\r
189 \r
190                 // TODO: Might need to scale nb_frames av frame_muxer transformations.\r
191 \r
192                 return nb_frames - start_;\r
193         }\r
194                                 \r
195         virtual std::wstring print() const\r
196         {\r
197                 return L"ffmpeg[" + boost::filesystem::wpath(filename_).filename() + L"|" \r
198                                                   + boost::lexical_cast<std::wstring>(width_) + L"x" + boost::lexical_cast<std::wstring>(height_)\r
199                                                   + (is_progressive_ ? L"p" : L"i")  + boost::lexical_cast<std::wstring>(fps_)\r
200                                                   + L"]";\r
201         }\r
202 };\r
203 \r
204 safe_ptr<core::frame_producer> create_ffmpeg_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
205 {               \r
206         static const std::vector<std::wstring> extensions = boost::assign::list_of\r
207                 (L"mpg")(L"mpeg")(L"avi")(L"mov")(L"qt")(L"webm")(L"dv")(L"mp4")(L"f4v")(L"flv")(L"mkv")(L"mka")(L"wmv")(L"wma")(L"ogg")(L"divx")(L"xvid")(L"wav")(L"mp3")(L"m2v");\r
208         std::wstring filename = env::media_folder() + L"\\" + params[0];\r
209         \r
210         auto ext = boost::find_if(extensions, [&](const std::wstring& ex)\r
211         {                                       \r
212                 return boost::filesystem::is_regular_file(boost::filesystem::wpath(filename + L"." + ex));\r
213         });\r
214 \r
215         if(ext == extensions.end())\r
216                 return core::frame_producer::empty();\r
217 \r
218         std::wstring path = filename + L"." + *ext;\r
219         bool loop = boost::find(params, L"LOOP") != params.end();\r
220 \r
221         size_t start = 0;\r
222         size_t length = std::numeric_limits<size_t>::max();\r
223         \r
224         auto seek_it = boost::find(params, L"SEEK");\r
225         if(seek_it != params.end())\r
226         {\r
227                 if(++seek_it != params.end())\r
228                         start = boost::lexical_cast<size_t>(*seek_it);\r
229         }\r
230         \r
231         auto length_it = boost::find(params, L"LENGTH");\r
232         if(length_it != params.end())\r
233         {\r
234                 if(++length_it != params.end())\r
235                         length = boost::lexical_cast<size_t>(*length_it);\r
236         }\r
237 \r
238         std::wstring filter = L"";\r
239         auto filter_it = boost::find(params, L"FILTER");\r
240         if(filter_it != params.end())\r
241         {\r
242                 if(++filter_it != params.end())\r
243                         filter = *filter_it;\r
244         }\r
245 \r
246         return make_safe<ffmpeg_producer>(frame_factory, path, filter, loop, start, length);\r
247 }\r
248 \r
249 }