]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/input/input.cpp
2.0.2: ffmpeg/input: Use avformat_seek_file for seeking instead of av_seek_frame.
[casparcg] / modules / ffmpeg / producer / input / 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 \r
28 #include "../util/util.h"\r
29 #include "../../ffmpeg_error.h"\r
30 \r
31 #include <core/video_format.h>\r
32 \r
33 #include <common/diagnostics/graph.h>\r
34 #include <common/exception/exceptions.h>\r
35 #include <common/exception/win32_exception.h>\r
36 \r
37 #include <tbb/concurrent_queue.h>\r
38 #include <tbb/atomic.h>\r
39 \r
40 #include <boost/range/algorithm.hpp>\r
41 #include <boost/thread/condition_variable.hpp>\r
42 #include <boost/thread/mutex.hpp>\r
43 #include <boost/thread/thread.hpp>\r
44 \r
45 #if defined(_MSC_VER)\r
46 #pragma warning (push)\r
47 #pragma warning (disable : 4244)\r
48 #endif\r
49 extern "C" \r
50 {\r
51         #define __STDC_CONSTANT_MACROS\r
52         #define __STDC_LIMIT_MACROS\r
53         #include <libavformat/avformat.h>\r
54 }\r
55 #if defined(_MSC_VER)\r
56 #pragma warning (pop)\r
57 #endif\r
58 \r
59 namespace caspar { namespace ffmpeg {\r
60 \r
61 static const size_t MAX_BUFFER_COUNT = 100;\r
62 static const size_t MIN_BUFFER_COUNT = 4;\r
63 static const size_t MAX_BUFFER_SIZE  = 16 * 1000000;\r
64         \r
65 struct input::implementation : boost::noncopyable\r
66 {               \r
67         safe_ptr<diagnostics::graph>                                                            graph_;\r
68 \r
69         const safe_ptr<AVFormatContext>                                                         format_context_; // Destroy this last\r
70         const int                                                                                                       default_stream_index_;\r
71                         \r
72         const std::wstring                                                                                      filename_;\r
73         const bool                                                                                                      loop_;\r
74         const size_t                                                                                            start_;         \r
75         const size_t                                                                                            length_;\r
76         size_t                                                                                                          frame_number_;\r
77         \r
78         tbb::concurrent_bounded_queue<std::shared_ptr<AVPacket>>        buffer_;\r
79         tbb::atomic<size_t>                                                                                     buffer_size_;\r
80         boost::condition_variable                                                                       buffer_cond_;\r
81         boost::mutex                                                                                            buffer_mutex_;\r
82                 \r
83         tbb::atomic<size_t>                                                                                     nb_frames_;\r
84         tbb::atomic<size_t>                                                                                     nb_loops_;\r
85 \r
86         boost::thread                                                                                           thread_;\r
87         tbb::atomic<bool>                                                                                       is_running_;\r
88 \r
89 public:\r
90         explicit implementation(const safe_ptr<diagnostics::graph>& graph, const std::wstring& filename, bool loop, size_t start, size_t length) \r
91                 : graph_(graph)\r
92                 , format_context_(open_input(filename))         \r
93                 , default_stream_index_(av_find_default_stream_index(format_context_.get()))\r
94                 , loop_(loop)\r
95                 , filename_(filename)\r
96                 , start_(start)\r
97                 , length_(length)\r
98                 , frame_number_(0)\r
99         {                               \r
100                 buffer_size_    = 0;\r
101                 nb_frames_              = 0;\r
102                 nb_loops_               = 0;\r
103 \r
104                 buffer_size_    = 0;\r
105                 nb_frames_              = 0;\r
106                 nb_loops_               = 0;\r
107 \r
108                 if(start_ > 0)                  \r
109                         seek_frame(start_);\r
110                                                                 \r
111                 graph_->set_color("seek", diagnostics::color(1.0f, 0.5f, 0.0f));        \r
112                 graph_->set_color("buffer-count", diagnostics::color(0.7f, 0.4f, 0.4f));\r
113                 graph_->set_color("buffer-size", diagnostics::color(1.0f, 1.0f, 0.0f)); \r
114                 \r
115                 is_running_ = true;\r
116                 thread_ = boost::thread([this]{run();});\r
117 \r
118                 CASPAR_LOG(info) << print() << L" Initialized.";\r
119         }\r
120 \r
121         ~implementation()\r
122         {\r
123                 is_running_ = false;\r
124                 buffer_cond_.notify_all();\r
125                 thread_.join();\r
126         }\r
127                 \r
128         bool try_pop(std::shared_ptr<AVPacket>& packet)\r
129         {\r
130                 const bool result = buffer_.try_pop(packet);\r
131 \r
132                 if(result)\r
133                 {\r
134                         if(packet)\r
135                                 buffer_size_ -= packet->size;\r
136                         buffer_cond_.notify_all();\r
137                 }\r
138 \r
139                 graph_->update_value("buffer-size", (static_cast<double>(buffer_size_)+0.001)/MAX_BUFFER_SIZE);\r
140                 graph_->update_value("buffer-count", (static_cast<double>(buffer_.size()+0.001)/MAX_BUFFER_COUNT));\r
141 \r
142                 return result;\r
143         }\r
144 \r
145         size_t nb_frames() const\r
146         {\r
147                 return nb_frames_;\r
148         }\r
149 \r
150         size_t nb_loops() const\r
151         {\r
152                 return nb_loops_;\r
153         }\r
154 \r
155 private:\r
156         \r
157         void run()\r
158         {               \r
159                 caspar::win32_exception::install_handler();\r
160 \r
161                 try\r
162                 {\r
163                         CASPAR_LOG(info) << print() << " Thread Started.";\r
164                         \r
165                         CASPAR_ASSERT(nb_frames_ < 1000);\r
166 \r
167                         while(is_running_)\r
168                         {\r
169                                 {\r
170                                         boost::unique_lock<boost::mutex> lock(buffer_mutex_);\r
171                                         while(full())\r
172                                                 buffer_cond_.timed_wait(lock, boost::posix_time::millisec(20));\r
173                                 }\r
174                                 read_next_packet();                     \r
175                         }\r
176 \r
177                         CASPAR_LOG(info) << print() << " Thread Stopped.";\r
178                 }\r
179                 catch(...)\r
180                 {\r
181                         CASPAR_LOG_CURRENT_EXCEPTION();\r
182                         is_running_ = false;\r
183                 }\r
184         }\r
185                         \r
186         void read_next_packet()\r
187         {               \r
188                 auto packet = create_packet();\r
189                 auto ret        = av_read_frame(format_context_.get(), packet.get()); // packet is only valid until next call of av_read_frame. Use av_dup_packet to extend its life.   \r
190                 \r
191                 if(is_eof(ret))                                                                                                              \r
192                 {\r
193                         ++nb_loops_;\r
194                         frame_number_ = 0;\r
195 \r
196                         if(loop_)\r
197                         {\r
198                                 int flags = AVSEEK_FLAG_BACKWARD;\r
199 \r
200                                 int vid_stream_index = av_find_best_stream(format_context_.get(), AVMEDIA_TYPE_VIDEO, -1, -1, 0, 0);\r
201                                 if(vid_stream_index >= 0)\r
202                                 {\r
203                                         auto codec_id = format_context_->streams[vid_stream_index]->codec->codec_id;\r
204                                         if(codec_id == CODEC_ID_VP6A || codec_id == CODEC_ID_VP6F || codec_id == CODEC_ID_VP6)\r
205                                                 flags |= AVSEEK_FLAG_BYTE;\r
206                                 }\r
207 \r
208                                 seek_frame(start_, flags);\r
209                                 graph_->add_tag("seek");                \r
210                                 CASPAR_LOG(debug) << print() << " Looping.";                    \r
211                         }       \r
212                         else\r
213                         {\r
214                                 is_running_ = false;\r
215                                 CASPAR_LOG(debug) << print() << " Stopping.";\r
216                         }\r
217                 }\r
218                 else\r
219                 {               \r
220                         THROW_ON_ERROR(ret, "av_read_frame", print());\r
221 \r
222                         if(packet->stream_index == default_stream_index_)\r
223                         {\r
224                                 if(nb_loops_ == 0)\r
225                                         ++nb_frames_;\r
226                                 ++frame_number_;\r
227                         }\r
228 \r
229                         THROW_ON_ERROR2(av_dup_packet(packet.get()), print());\r
230                                 \r
231                         // Make sure that the packet is correctly deallocated even if size and data is modified during decoding.\r
232                         auto size = packet->size;\r
233                         auto data = packet->data;\r
234 \r
235                         packet = safe_ptr<AVPacket>(packet.get(), [packet, size, data](AVPacket*)\r
236                         {\r
237                                 packet->size = size;\r
238                                 packet->data = data;\r
239                         });\r
240 \r
241                         buffer_.try_push(packet);\r
242                         buffer_size_ += packet->size;\r
243                                 \r
244                         graph_->update_value("buffer-size", (static_cast<double>(buffer_size_)+0.001)/MAX_BUFFER_SIZE);\r
245                         graph_->update_value("buffer-count", (static_cast<double>(buffer_.size()+0.001)/MAX_BUFFER_COUNT));\r
246                 }                       \r
247         }\r
248 \r
249         bool full() const\r
250         {\r
251                 return is_running_ && (buffer_size_ > MAX_BUFFER_SIZE || buffer_.size() > MAX_BUFFER_COUNT) && buffer_.size() > MIN_BUFFER_COUNT;\r
252         }\r
253 \r
254         void seek_frame(int64_t frame, int flags = 0)\r
255         {                       \r
256                 CASPAR_LOG(debug) << print() << " Seeking: " << frame;\r
257 \r
258                 flags |= AVSEEK_FLAG_FRAME;\r
259                 //if(flags == AVSEEK_FLAG_BACKWARD)\r
260                 //{\r
261                 //      // Fix VP6 seeking\r
262                 //      int vid_stream_index = av_find_best_stream(format_context_.get(), AVMEDIA_TYPE_VIDEO, -1, -1, 0, 0);\r
263                 //      if(vid_stream_index >= 0)\r
264                 //      {\r
265                 //              auto codec_id = format_context_->streams[vid_stream_index]->codec->codec_id;\r
266                 //              if(codec_id == CODEC_ID_VP6A || codec_id == CODEC_ID_VP6F || codec_id == CODEC_ID_VP6)\r
267                 //                      flags |= AVSEEK_FLAG_BYTE;\r
268                 //      }\r
269                 //}\r
270                 \r
271                 THROW_ON_ERROR2(avformat_seek_file(format_context_.get(), default_stream_index_, std::max<int64_t>(0, frame-50), frame, frame+50, flags), print());             \r
272 \r
273                 buffer_.push(flush_packet());\r
274         }               \r
275 \r
276         bool is_eof(int ret)\r
277         {\r
278                 if(ret == AVERROR(EIO))\r
279                         CASPAR_LOG(trace) << print() << " Received EIO, assuming EOF. " << nb_frames_;\r
280                 if(ret == AVERROR_EOF)\r
281                         CASPAR_LOG(debug) << print() << " Received EOF. " << nb_frames_;\r
282 \r
283                 return ret == AVERROR_EOF || ret == AVERROR(EIO) || frame_number_ >= length_; // av_read_frame doesn't always correctly return AVERROR_EOF;\r
284         }\r
285         \r
286         std::wstring print() const\r
287         {\r
288                 return L"ffmpeg_input[" + filename_ + L")]";\r
289         }\r
290 };\r
291 \r
292 input::input(const safe_ptr<diagnostics::graph>& graph, const std::wstring& filename, bool loop, size_t start, size_t length) \r
293         : impl_(new implementation(graph, filename, loop, start, length)){}\r
294 bool input::eof() const {return !impl_->is_running_;}\r
295 bool input::try_pop(std::shared_ptr<AVPacket>& packet){return impl_->try_pop(packet);}\r
296 safe_ptr<AVFormatContext> input::context(){return impl_->format_context_;}\r
297 size_t input::nb_frames() const {return impl_->nb_frames();}\r
298 size_t input::nb_loops() const {return impl_->nb_loops();}\r
299 }}\r