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