]> 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) 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 #include "../ffmpeg_error.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 \r
40 #include <boost/algorithm/string.hpp>\r
41 #include <boost/assign.hpp>\r
42 #include <boost/timer.hpp>\r
43 #include <boost/foreach.hpp>\r
44 #include <boost/filesystem.hpp>\r
45 #include <boost/range/algorithm/find_if.hpp>\r
46 #include <boost/range/algorithm/find.hpp>\r
47 \r
48 #include <agents.h>\r
49 #include <agents_extras.h>\r
50 #include <connect.h>\r
51 #include <concrt.h>\r
52 #include <ppl.h>\r
53 \r
54 using namespace Concurrency;\r
55 \r
56 namespace caspar { namespace ffmpeg {\r
57                 \r
58 struct ffmpeg_producer : public core::frame_producer\r
59 {       \r
60         const std::wstring                                                              filename_;\r
61         const int                                                                               start_;\r
62         const bool                                                                              loop_;\r
63         const size_t                                                                    length_;\r
64         \r
65         call<safe_ptr<AVPacket>>                                                throw_away_;\r
66         unbounded_buffer<safe_ptr<AVPacket>>                    packets_;\r
67         unbounded_buffer<safe_ptr<AVFrame>>                             video_;\r
68         unbounded_buffer<safe_ptr<core::audio_buffer>>  audio_;\r
69         bounded_buffer<safe_ptr<core::basic_frame>>             frames_;\r
70                 \r
71         const safe_ptr<diagnostics::graph>                              graph_;\r
72                                         \r
73         input                                                                                   input_; \r
74         std::shared_ptr<video_decoder>                                  video_decoder_;\r
75         std::shared_ptr<audio_decoder>                                  audio_decoder_; \r
76         std::unique_ptr<frame_muxer2>                                   muxer_;\r
77 \r
78         safe_ptr<core::basic_frame>                                             last_frame_;\r
79         \r
80 public:\r
81         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
82                 : filename_(filename)\r
83                 , start_(start)\r
84                 , loop_(loop)\r
85                 , length_(length)\r
86                 , throw_away_([](const safe_ptr<AVPacket>&){})\r
87                 , frames_(2)\r
88                 , graph_(diagnostics::create_graph("", false))\r
89                 , input_(packets_, graph_, filename_, loop, start, length)\r
90                 , last_frame_(core::basic_frame::empty())\r
91         {\r
92                 frame_muxer2::video_source_t* video_source = nullptr;\r
93                 frame_muxer2::audio_source_t* audio_source = nullptr;\r
94 \r
95                 try\r
96                 {\r
97                         video_decoder_.reset(new video_decoder(packets_, video_, *input_.context()));\r
98                         video_source = &video_;\r
99                 }\r
100                 catch(ffmpeg_stream_not_found&)\r
101                 {\r
102                         CASPAR_LOG(warning) << "No video-stream found. Running without video."; \r
103                 }\r
104                 catch(...)\r
105                 {\r
106                         CASPAR_LOG_CURRENT_EXCEPTION();\r
107                         CASPAR_LOG(warning) << "Failed to open video-stream. Running without video.";   \r
108                 }\r
109 \r
110                 try\r
111                 {\r
112                         audio_decoder_.reset(new audio_decoder(packets_, audio_, *input_.context(), frame_factory->get_video_format_desc()));\r
113                         audio_source = &audio_;\r
114                 }\r
115                 catch(ffmpeg_stream_not_found&)\r
116                 {\r
117                         CASPAR_LOG(warning) << "No audio-stream found. Running without video."; \r
118                 }\r
119                 catch(...)\r
120                 {\r
121                         CASPAR_LOG_CURRENT_EXCEPTION();\r
122                         CASPAR_LOG(warning) << "Failed to open audio-stream. Running without audio.";           \r
123                 }\r
124                 \r
125                 Concurrency::connect(packets_, throw_away_);\r
126 \r
127                 CASPAR_VERIFY(video_decoder_ || audio_decoder_, ffmpeg_error());\r
128 \r
129                 muxer_.reset(new frame_muxer2(video_source, audio_source, frames_, video_decoder_ ? video_decoder_->fps() : frame_factory->get_video_format_desc().fps, frame_factory));\r
130                                 \r
131                 graph_->set_color("underflow", diagnostics::color(0.6f, 0.3f, 0.9f));   \r
132                 graph_->start();\r
133 \r
134                 input_.start();\r
135         }\r
136 \r
137         ~ffmpeg_producer()\r
138         {\r
139                 input_.stop();                  \r
140                 while(Concurrency::receive(frames_) != core::basic_frame::eof())\r
141                 {\r
142                 }\r
143         }\r
144                                                 \r
145         virtual safe_ptr<core::basic_frame> receive(int hints)\r
146         {\r
147                 auto frame = core::basic_frame::late();\r
148                 \r
149                 try\r
150                 {               \r
151                         frame = last_frame_ = Concurrency::receive(frames_, 10);\r
152                         graph_->update_text(narrow(print()));\r
153                 }\r
154                 catch(operation_timed_out&)\r
155                 {               \r
156                         graph_->add_tag("underflow");   \r
157                 }\r
158 \r
159                 return frame;\r
160         }\r
161 \r
162         virtual safe_ptr<core::basic_frame> last_frame() const\r
163         {\r
164                 return disable_audio(last_frame_);\r
165         }\r
166         \r
167         virtual int64_t nb_frames() const\r
168         {\r
169                 if(loop_)\r
170                         return std::numeric_limits<int64_t>::max();\r
171 \r
172                 // This function estimates nb_frames until input has read all packets for one loop, at which point the count should be accurate.\r
173 \r
174                 int64_t nb_frames = input_.nb_frames();\r
175                 if(input_.nb_loops() < 1) // input still hasn't counted all frames\r
176                 {\r
177                         int64_t video_nb_frames = video_decoder_->nb_frames();\r
178                         int64_t audio_nb_frames = audio_decoder_->nb_frames();\r
179 \r
180                         nb_frames = std::min(static_cast<int64_t>(length_), std::max(nb_frames, std::max(video_nb_frames, audio_nb_frames)));\r
181                 }\r
182 \r
183                 nb_frames = muxer_->calc_nb_frames(nb_frames);\r
184 \r
185                 // TODO: Might need to scale nb_frames av frame_muxer transformations.\r
186 \r
187                 return nb_frames - start_;\r
188         }\r
189                                 \r
190         virtual std::wstring print() const\r
191         {\r
192                 if(video_decoder_)\r
193                 {\r
194                         return L"ffmpeg[" + boost::filesystem::wpath(filename_).filename() + L"|" \r
195                                                           + boost::lexical_cast<std::wstring>(video_decoder_->width()) + L"x" + boost::lexical_cast<std::wstring>(video_decoder_->height())\r
196                                                           + (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
197                                                           + L"]";\r
198                 }\r
199                 \r
200                 return L"ffmpeg[" + boost::filesystem::wpath(filename_).filename() + L"]";\r
201         }\r
202 };\r
203 \r
204 safe_ptr<core::frame_producer> create_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"m2v")(L"m4v")(L"mp3")(L"mp4")(L"mpga")\r
208                 (L"avi")\r
209                 (L"mov")\r
210                 (L"qt")\r
211                 (L"webm")\r
212                 (L"dv")         \r
213                 (L"f4v")(L"flv")\r
214                 (L"mkv")(L"mka")\r
215                 (L"wmv")(L"wma")(L"wav")\r
216                 (L"rm")(L"ram")\r
217                 (L"ogg")(L"ogv")(L"oga")(L"ogx")\r
218                 (L"divx")(L"xvid");\r
219 \r
220         std::wstring filename = env::media_folder() + L"\\" + params[0];\r
221         \r
222         auto ext = boost::find_if(extensions, [&](const std::wstring& ex)\r
223         {                                       \r
224                 return boost::filesystem::is_regular_file(boost::filesystem::wpath(filename + L"." + ex));\r
225         });\r
226 \r
227         if(ext == extensions.end())\r
228                 return core::frame_producer::empty();\r
229 \r
230         auto path               = filename + L"." + *ext;\r
231         auto loop               = boost::range::find(params, L"LOOP") != params.end();\r
232         auto start              = core::get_param(L"SEEK", params, 0);\r
233         auto length             = core::get_param(L"LENGTH", params, std::numeric_limits<size_t>::max());\r
234         auto filter_str = core::get_param<std::wstring>(L"FILTER", params, L"");        \r
235                 \r
236         boost::replace_all(filter_str, L"DEINTERLACE", L"YADIF=0:-1");\r
237         boost::replace_all(filter_str, L"DEINTERLACE_BOB", L"YADIF=1:-1");\r
238         \r
239         return make_safe<ffmpeg_producer>(frame_factory, path, filter_str, loop, start, length);\r
240 }\r
241 \r
242 }}