]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/input.cpp
2.0.0.2: -ffmpeg_producer: Implemented slice based multithreading.
[casparcg] / modules / ffmpeg / producer / input.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 #if defined(_MSC_VER)\r
21 #pragma warning (disable : 4244)\r
22 #endif\r
23 \r
24 #include "..\stdafx.h"\r
25 \r
26 #include "input.h"\r
27 #include "../ffmpeg_error.h"\r
28 #include "../tbb_avcodec.h"\r
29 \r
30 #include <core/video_format.h>\r
31 \r
32 #include <common/concurrency/executor.h>\r
33 #include <common/diagnostics/graph.h>\r
34 \r
35 #include <tbb/concurrent_queue.h>\r
36 #include <tbb/mutex.h>\r
37 \r
38 #include <boost/range/iterator_range.hpp>\r
39 #include <boost/range/algorithm.hpp>\r
40 \r
41 extern "C" \r
42 {\r
43         #define __STDC_CONSTANT_MACROS\r
44         #define __STDC_LIMIT_MACROS\r
45         #include <libavformat/avformat.h>\r
46 }\r
47 \r
48 namespace caspar {\r
49                 \r
50 struct input::implementation : boost::noncopyable\r
51 {               \r
52         static const size_t PACKET_BUFFER_COUNT = 50;\r
53 \r
54         safe_ptr<diagnostics::graph> graph_;\r
55 \r
56         std::shared_ptr<AVFormatContext> format_context_;       // Destroy this last\r
57 \r
58         std::shared_ptr<AVCodecContext> video_codec_context_;\r
59         std::shared_ptr<AVCodecContext> audio_codex_context_;\r
60         \r
61         const std::wstring      filename_;\r
62         const bool                      loop_;\r
63         int                                     video_s_index_;\r
64         int                                     audio_s_index_;\r
65         const int                       start_;\r
66         const int                       length_;\r
67         int                                     eof_count_;\r
68                 \r
69         tbb::concurrent_bounded_queue<packet> video_packet_buffer_;\r
70         tbb::concurrent_bounded_queue<packet> audio_packet_buffer_;\r
71 \r
72         boost::condition_variable       cond_;\r
73         boost::mutex                            mutex_;\r
74         \r
75         std::exception_ptr exception_;\r
76         executor executor_;\r
77 public:\r
78         explicit implementation(const safe_ptr<diagnostics::graph>& graph, const std::wstring& filename, bool loop, int start, int length) \r
79                 : graph_(graph)\r
80                 , loop_(loop)\r
81                 , video_s_index_(-1)\r
82                 , audio_s_index_(-1)\r
83                 , filename_(filename)\r
84                 , executor_(print())\r
85                 , start_(std::max(start, 0))\r
86                 , length_(length)\r
87                 , eof_count_(length)\r
88         {                       \r
89                 graph_->set_color("input-buffer", diagnostics::color(1.0f, 1.0f, 0.0f));\r
90                 graph_->set_color("seek", diagnostics::color(0.5f, 1.0f, 0.5f));        \r
91 \r
92                 int errn;\r
93                 AVFormatContext* weak_format_context_ = nullptr;\r
94                 if((errn = av_open_input_file(&weak_format_context_, narrow(filename).c_str(), nullptr, 0, nullptr)) < 0 || weak_format_context_ == nullptr)\r
95                         BOOST_THROW_EXCEPTION(\r
96                                 file_read_error() << \r
97                                 source_info(narrow(print())) << \r
98                                 msg_info(av_error_str(errn)) <<\r
99                                 boost::errinfo_api_function("av_open_input_file") <<\r
100                                 boost::errinfo_errno(AVUNERROR(errn)) <<\r
101                                 boost::errinfo_file_name(narrow(filename)));\r
102 \r
103                 format_context_.reset(weak_format_context_, av_close_input_file);\r
104                         \r
105                 if((errn = av_find_stream_info(format_context_.get())) < 0)\r
106                 {       \r
107                         BOOST_THROW_EXCEPTION(\r
108                                 file_read_error() << \r
109                                 source_info(narrow(print())) << \r
110                                 msg_info(av_error_str(errn)) <<\r
111                                 boost::errinfo_api_function("av_find_stream_info") <<\r
112                                 boost::errinfo_errno(AVUNERROR(errn)));\r
113                 }\r
114                 \r
115                 video_codec_context_ = open_stream(AVMEDIA_TYPE_VIDEO, video_s_index_, true);\r
116                 if(!video_codec_context_)\r
117                         CASPAR_LOG(warning) << print() << " Could not open any video stream.";\r
118                 else\r
119                         fix_time_base(video_codec_context_.get());\r
120                 \r
121                 audio_codex_context_ = open_stream(AVMEDIA_TYPE_AUDIO, audio_s_index_);\r
122                 if(!audio_codex_context_)\r
123                         CASPAR_LOG(warning) << print() << " Could not open any audio stream.";\r
124                 else\r
125                         fix_time_base(audio_codex_context_.get());\r
126                 \r
127                 if(!video_codec_context_ && !audio_codex_context_)\r
128                 {       \r
129                         BOOST_THROW_EXCEPTION(\r
130                                 file_read_error() << \r
131                                 msg_info(av_error_str(errn)) <<\r
132                                 source_info(narrow(print())) << \r
133                                 msg_info("No video or audio codec context found."));    \r
134                 }\r
135                 \r
136                 if(start_ != 0)                 \r
137                         seek_frame(start_);\r
138                                         \r
139                 executor_.start();\r
140                 executor_.begin_invoke([this]{read_file();});\r
141                 CASPAR_LOG(info) << print() << " Started.";\r
142         }\r
143 \r
144         ~implementation()\r
145         {\r
146                 executor_.clear();\r
147                 executor_.stop();\r
148                 cond_.notify_all();\r
149         }\r
150                 \r
151         packet get_video_packet()\r
152         {\r
153                 return get_packet(video_packet_buffer_);\r
154         }\r
155 \r
156         packet get_audio_packet()\r
157         {\r
158                 return get_packet(audio_packet_buffer_);\r
159         }\r
160 \r
161         bool has_packet() const\r
162         {\r
163                 return !video_packet_buffer_.empty() || !audio_packet_buffer_.empty();\r
164         }\r
165                                 \r
166         double fps()\r
167         {\r
168                 return static_cast<double>(get_default_context()->time_base.den) / static_cast<double>(get_default_context()->time_base.num);\r
169         }\r
170 \r
171 private:\r
172 \r
173         void stop()\r
174         {\r
175                 executor_.stop();\r
176                 CASPAR_LOG(info) << print() << " Stopped.";\r
177         }\r
178                         \r
179         void fix_time_base(AVCodecContext* context) const // Some files give an invalid numerator, try to fix it.\r
180         {\r
181                 if(context && context->time_base.num == 1)\r
182                         context->time_base.num = static_cast<int>(std::pow(10.0, static_cast<int>(std::log10(static_cast<float>(context->time_base.den)))-1));\r
183         }\r
184 \r
185         std::shared_ptr<AVCodecContext> open_stream(int codec_type, int& s_index, bool tbb = false) const\r
186         {               \r
187                 const auto streams = boost::iterator_range<AVStream**>(format_context_->streams, format_context_->streams+format_context_->nb_streams);\r
188                 const auto stream = boost::find_if(streams, [&](AVStream* stream) \r
189                 {\r
190                         return stream != nullptr && stream->codec->codec_type == codec_type;\r
191                 });\r
192                 \r
193                 if(stream == streams.end()) \r
194                         return nullptr;\r
195                 \r
196                 auto codec = avcodec_find_decoder((*stream)->codec->codec_id);                  \r
197                 if(codec == nullptr)\r
198                         return nullptr;\r
199                         \r
200                 s_index = (*stream)->index;\r
201 \r
202                 if(!tbb)\r
203                 {\r
204                         if(avcodec_open((*stream)->codec, codec) < 0)           \r
205                                 return nullptr;\r
206                         return std::shared_ptr<AVCodecContext>((*stream)->codec, avcodec_close);\r
207                 }\r
208                 else\r
209                 {\r
210                         if(tbb_avcodec_open((*stream)->codec, codec) < 0)               \r
211                                 return nullptr;\r
212                         return std::shared_ptr<AVCodecContext>((*stream)->codec, tbb_avcodec_close);\r
213                 }               \r
214 \r
215         }\r
216         \r
217         std::shared_ptr<AVCodecContext>& get_default_context()\r
218         {\r
219                 return video_codec_context_ ? video_codec_context_ : audio_codex_context_;\r
220         }\r
221                 \r
222         void read_file()\r
223         {               \r
224                 if(audio_packet_buffer_.size() > 4 && video_packet_buffer_.size() > 4)\r
225                         boost::this_thread::yield(); // There is enough packets, no hurry.\r
226 \r
227                 try\r
228                 {\r
229                         std::shared_ptr<AVPacket> read_packet(new AVPacket(), [](AVPacket* p)\r
230                         {\r
231                                 av_free_packet(p);\r
232                                 delete p;\r
233                         });\r
234 \r
235                         const int errn = av_read_frame(format_context_.get(), read_packet.get()); // read_packet is only valid until next call of av_read_frame.\r
236                         if(is_eof(errn))                                                                                                                  // Use av_dup_packet to extend its life.\r
237                         {\r
238                                 if(loop_)\r
239                                 {\r
240                                         seek_frame(start_, AVSEEK_FLAG_BACKWARD);\r
241                                         eof_count_ += length_; // AVCodecContext.frame_number is not reset. Increase the target frame_number.\r
242                                         graph_->add_tag("seek");                \r
243                                         CASPAR_LOG(info) << print() << " Received EOF. Looping.";                       \r
244                                 }       \r
245                                 else\r
246                                 {\r
247                                         stop();\r
248                                         CASPAR_LOG(info) << print() << " Received EOF. Stopping.";\r
249                                 }\r
250                         }\r
251                         else if(errn < 0)\r
252                         {\r
253                                 BOOST_THROW_EXCEPTION(\r
254                                         file_read_error() <<\r
255                                         msg_info(av_error_str(errn)) <<\r
256                                         source_info(narrow(print())) << \r
257                                         boost::errinfo_api_function("av_read_frame") <<\r
258                                         boost::errinfo_errno(AVUNERROR(errn)));\r
259                         }\r
260                         else\r
261                         {\r
262                                 if(read_packet->stream_index == video_s_index_)                 \r
263                                 {                                       \r
264                                         av_dup_packet(read_packet.get());\r
265                                         video_packet_buffer_.try_push(packet(read_packet));     \r
266                                 }\r
267                                 else if(read_packet->stream_index)      \r
268                                 {                                       \r
269                                         av_dup_packet(read_packet.get());\r
270                                         audio_packet_buffer_.try_push(packet(read_packet));     \r
271                                 }\r
272                         }\r
273                                                 \r
274                         graph_->update_value("input-buffer", static_cast<float>(video_packet_buffer_.size())/static_cast<float>(PACKET_BUFFER_COUNT));          \r
275                 }\r
276                 catch(...)\r
277                 {\r
278                         stop();\r
279                         CASPAR_LOG_CURRENT_EXCEPTION();\r
280                         return;\r
281                 }\r
282                                 \r
283                 executor_.begin_invoke([this]{read_file();});           \r
284                 boost::unique_lock<boost::mutex> lock(mutex_);\r
285                 while(executor_.is_running() && audio_packet_buffer_.size() > PACKET_BUFFER_COUNT && video_packet_buffer_.size() > PACKET_BUFFER_COUNT)\r
286                         cond_.wait(lock);               \r
287         }\r
288 \r
289         void seek_frame(int64_t frame, int flags = 0)\r
290         {       \r
291                 // Convert from frames into seconds.\r
292                 const auto ts = frame*static_cast<int64_t>((AV_TIME_BASE*get_default_context()->time_base.num) / get_default_context()->time_base.den);\r
293 \r
294                 const int errn = av_seek_frame(format_context_.get(), -1, ts, flags | AVSEEK_FLAG_FRAME);\r
295 \r
296                 if(errn < 0)\r
297                 {       \r
298                         BOOST_THROW_EXCEPTION(\r
299                                 invalid_operation() << \r
300                                 source_info(narrow(print())) << \r
301                                 msg_info(av_error_str(errn)) <<\r
302                                 boost::errinfo_api_function("seek_frame") <<\r
303                                 boost::errinfo_errno(AVUNERROR(errn)));\r
304                 }\r
305 \r
306                 // Notify decoders to flush buffers.\r
307                 video_packet_buffer_.try_push(flush_packet);    \r
308                 audio_packet_buffer_.try_push(flush_packet);\r
309         }               \r
310 \r
311         bool is_eof(int errn)\r
312         {\r
313                 if(length_ != -1)\r
314                         return get_default_context()->frame_number > eof_count_;                \r
315 \r
316                 if(-errn == EIO)\r
317                         CASPAR_LOG(warning) << print() << " Received EIO, assuming EOF";\r
318 \r
319                 return errn == AVERROR_EOF || -errn == EIO; // av_read_frame doesn't always correctly return AVERROR_EOF;\r
320         }\r
321                 \r
322         packet get_packet(tbb::concurrent_bounded_queue<packet>& buffer)\r
323         {\r
324                 packet packet;\r
325                 if(buffer.try_pop(packet))\r
326                         cond_.notify_all();\r
327                 return packet;\r
328         }\r
329 \r
330         std::wstring print() const\r
331         {\r
332                 return L"ffmpeg_input[" + filename_ + L"]";\r
333         }\r
334 };\r
335 \r
336 input::input(const safe_ptr<diagnostics::graph>& graph, const std::wstring& filename, bool loop, int start, int length) \r
337         : impl_(new implementation(graph, filename, loop, start, length)){}\r
338 const std::shared_ptr<AVCodecContext>& input::get_video_codec_context() const{return impl_->video_codec_context_;}\r
339 const std::shared_ptr<AVCodecContext>& input::get_audio_codec_context() const{return impl_->audio_codex_context_;}\r
340 bool input::has_packet() const{return impl_->has_packet();}\r
341 bool input::is_running() const {return impl_->executor_.is_running();}\r
342 packet input::get_video_packet(){return impl_->get_video_packet();}\r
343 packet input::get_audio_packet(){return impl_->get_audio_packet();}\r
344 double input::fps() const { return impl_->fps(); }\r
345 }