]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/input.cpp
2.0.0.2: Refactoring. Working on re-enabling filter functionality.
[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/atomic.h>\r
37 \r
38 #include <boost/range/algorithm.hpp>\r
39 #include <boost/thread/condition_variable.hpp>\r
40 #include <boost/thread/mutex.hpp>\r
41 #include <boost/range/iterator_range.hpp>\r
42 \r
43 extern "C" \r
44 {\r
45         #define __STDC_CONSTANT_MACROS\r
46         #define __STDC_LIMIT_MACROS\r
47         #include <libavformat/avformat.h>\r
48 }\r
49 \r
50 namespace caspar {\r
51 \r
52 static const size_t MAX_BUFFER_COUNT = 128;\r
53 static const size_t MAX_BUFFER_SIZE  = 32 * 1000000;\r
54         \r
55 struct input::implementation : boost::noncopyable\r
56 {               \r
57         safe_ptr<diagnostics::graph> graph_;\r
58 \r
59         std::shared_ptr<AVFormatContext> format_context_;       // Destroy this last\r
60                 \r
61         const std::wstring                      filename_;\r
62         const bool                                      loop_;\r
63         const int                                       start_;         \r
64 \r
65         size_t                                          buffer_size_limit_;\r
66         tbb::atomic<size_t>                     buffer_size_;\r
67         boost::condition_variable       cond_;\r
68         boost::mutex                            mutex_;\r
69 \r
70         tbb::concurrent_bounded_queue<std::shared_ptr<AVPacket>> buffer_;\r
71                 \r
72         executor executor_;\r
73 public:\r
74         explicit implementation(const safe_ptr<diagnostics::graph>& graph, const std::wstring& filename, bool loop, int start) \r
75                 : graph_(graph)\r
76                 , loop_(loop)\r
77                 , filename_(filename)\r
78                 , executor_(print())\r
79                 , start_(std::max(start, 0))\r
80         {                       \r
81                 int errn;\r
82 \r
83                 buffer_.set_capacity(MAX_BUFFER_COUNT);\r
84 \r
85                 AVFormatContext* weak_format_context_ = nullptr;\r
86                 errn = av_open_input_file(&weak_format_context_, narrow(filename).c_str(), nullptr, 0, nullptr);\r
87                 if(errn < 0 || weak_format_context_ == nullptr)\r
88                 {       \r
89                         BOOST_THROW_EXCEPTION(\r
90                                 file_read_error() << \r
91                                 source_info(narrow(print())) << \r
92                                 msg_info(av_error_str(errn)) <<\r
93                                 boost::errinfo_api_function("av_open_input_file") <<\r
94                                 boost::errinfo_errno(AVUNERROR(errn)) <<\r
95                                 boost::errinfo_file_name(narrow(filename)));\r
96                 }\r
97 \r
98                 format_context_.reset(weak_format_context_, av_close_input_file);\r
99                         \r
100                 errn = av_find_stream_info(format_context_.get());\r
101                 if(errn < 0)\r
102                 {       \r
103                         BOOST_THROW_EXCEPTION(\r
104                                 file_read_error() << \r
105                                 source_info(narrow(print())) << \r
106                                 msg_info(av_error_str(errn)) <<\r
107                                 boost::errinfo_api_function("av_find_stream_info") <<\r
108                                 boost::errinfo_errno(AVUNERROR(errn)));\r
109                 }\r
110                 \r
111                 if(start_ != 0)                 \r
112                         seek_frame(start_);\r
113                                 \r
114                 graph_->set_color("seek", diagnostics::color(0.5f, 1.0f, 0.5f));        \r
115                 graph_->set_color("buffer-count", diagnostics::color(0.2f, 0.8f, 1.0f));\r
116                 graph_->set_color("buffer-size", diagnostics::color(0.2f, 0.4f, 1.0f)); \r
117 \r
118                 executor_.begin_invoke([this]{read_file();});\r
119                 CASPAR_LOG(info) << print() << " Started.";\r
120         }\r
121 \r
122         ~implementation()\r
123         {\r
124                 stop();\r
125                 // Unblock thread.\r
126                 std::shared_ptr<AVPacket> packet;\r
127                 buffer_.try_pop(packet);\r
128                 buffer_size_ = 0;\r
129                 cond_.notify_all();\r
130         }\r
131                 \r
132         bool try_pop(std::shared_ptr<AVPacket>& packet)\r
133         {\r
134                 bool result = buffer_.try_pop(packet);\r
135                 graph_->update_value("buffer-count", MAX_BUFFER_SIZE/static_cast<double>(buffer_.size()));\r
136                 if(packet)\r
137                 {\r
138                         buffer_size_ -= packet->size;\r
139                         graph_->update_value("buffer-size", MAX_BUFFER_SIZE/static_cast<double>(buffer_size_));\r
140                         cond_.notify_all();\r
141                 }\r
142                 return result;\r
143         }\r
144 \r
145 private:\r
146 \r
147         void stop()\r
148         {\r
149                 executor_.stop();\r
150                 \r
151                 CASPAR_LOG(info) << print() << " Stopping.";\r
152         }\r
153 \r
154         void read_file()\r
155         {               \r
156                 read_next_packet();\r
157                 executor_.begin_invoke([this]{read_file();});\r
158         }\r
159                         \r
160         void read_next_packet()\r
161         {               \r
162                 try\r
163                 {\r
164                         std::shared_ptr<AVPacket> read_packet(new AVPacket, [](AVPacket* p)\r
165                         {\r
166                                 av_free_packet(p);\r
167                                 delete p;\r
168                         });\r
169                         av_init_packet(read_packet.get());\r
170 \r
171                         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
172                         if(is_eof(errn))                                                                                                                  // Use av_dup_packet to extend its life.\r
173                         {\r
174                                 if(loop_)\r
175                                 {\r
176                                         seek_frame(start_, AVSEEK_FLAG_BACKWARD);\r
177                                         graph_->add_tag("seek");                \r
178                                         //CASPAR_LOG(info) << print() << " Received EOF. Looping.";                     \r
179                                 }       \r
180                                 else\r
181                                 {\r
182                                         stop();\r
183                                         //CASPAR_LOG(info) << print() << " Received EOF. Stopping.";\r
184                                 }\r
185                         }\r
186                         else if(errn < 0)\r
187                         {\r
188                                 BOOST_THROW_EXCEPTION(\r
189                                         file_read_error() <<\r
190                                         msg_info(av_error_str(errn)) <<\r
191                                         source_info(narrow(print())) << \r
192                                         boost::errinfo_api_function("av_read_frame") <<\r
193                                         boost::errinfo_errno(AVUNERROR(errn)));\r
194                         }\r
195                         else\r
196                         {\r
197                                 av_dup_packet(read_packet.get());\r
198                                 buffer_.push(read_packet);\r
199 \r
200                                 graph_->update_value("buffer-count", MAX_BUFFER_SIZE/static_cast<double>(buffer_.size()));\r
201                                 \r
202                                 boost::unique_lock<boost::mutex> lock(mutex_);\r
203                                 while(buffer_size_ > MAX_BUFFER_SIZE && buffer_.size() > 2)\r
204                                         cond_.wait(lock);\r
205 \r
206                                 buffer_size_ += read_packet->size;\r
207 \r
208                                 graph_->update_value("buffer-size", MAX_BUFFER_SIZE/static_cast<double>(buffer_size_));\r
209                         }                                                       \r
210                 }\r
211                 catch(...)\r
212                 {\r
213                         stop();\r
214                         CASPAR_LOG_CURRENT_EXCEPTION();\r
215                         return;\r
216                 }       \r
217         }\r
218 \r
219         void seek_frame(int64_t frame, int flags = 0)\r
220         {       \r
221                 static const AVRational base_q = {1, AV_TIME_BASE};\r
222 \r
223                 // Convert from frames into seconds.\r
224                 auto seek_target = frame;//*static_cast<int64_t>(AV_TIME_BASE/fps_);\r
225 \r
226                 int stream_index = -1;//video_stream_.index() >= 0 ? video_stream_.index() : audio_stream_.index();\r
227 \r
228                 //if(stream_index >= 0)         \r
229                 //      seek_target = av_rescale_q(seek_target, base_q, format_context_->streams[stream_index]->time_base);\r
230 \r
231                 const int errn = av_seek_frame(format_context_.get(), stream_index, seek_target, flags);\r
232                 if(errn < 0)\r
233                 {       \r
234                         BOOST_THROW_EXCEPTION(\r
235                                 invalid_operation() << \r
236                                 source_info(narrow(print())) << \r
237                                 msg_info(av_error_str(errn)) <<\r
238                                 boost::errinfo_api_function("av_seek_frame") <<\r
239                                 boost::errinfo_errno(AVUNERROR(errn)));\r
240                 }\r
241 \r
242                 buffer_.push(nullptr);\r
243         }               \r
244 \r
245         bool is_eof(int errn)\r
246         {\r
247                 //if(errn == AVERROR(EIO))\r
248                 //      CASPAR_LOG(warning) << print() << " Received EIO, assuming EOF";\r
249 \r
250                 return errn == AVERROR_EOF || errn == AVERROR(EIO); // av_read_frame doesn't always correctly return AVERROR_EOF;\r
251         }\r
252         \r
253         std::wstring print() const\r
254         {\r
255                 return L"ffmpeg_input[" + filename_ + L")]";\r
256         }\r
257 };\r
258 \r
259 input::input(const safe_ptr<diagnostics::graph>& graph, const std::wstring& filename, bool loop, int start, int length) \r
260         : impl_(new implementation(graph, filename, loop, start)){}\r
261 bool input::eof() const {return !impl_->executor_.is_running();}\r
262 bool input::try_pop(std::shared_ptr<AVPacket>& packet){return impl_->try_pop(packet);}\r
263 std::shared_ptr<AVFormatContext> input::context(){return impl_->format_context_;}\r
264 }