]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/input/input.cpp
2.1.0: -ffmpeg_producer: seek while paused.
[casparcg] / modules / ffmpeg / producer / input / input.cpp
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\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 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #include "../../stdafx.h"\r
23 \r
24 #include "input.h"\r
25 \r
26 #include "../util/util.h"\r
27 #include "../../ffmpeg_error.h"\r
28 \r
29 #include <common/diagnostics/graph.h>\r
30 #include <common/executor.h>\r
31 #include <common/except.h>\r
32 #include <common/log.h>\r
33 \r
34 #include <core/video_format.h>\r
35 \r
36 #include <tbb/concurrent_queue.h>\r
37 #include <tbb/atomic.h>\r
38 #include <tbb/recursive_mutex.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 static const size_t MAX_BUFFER_COUNT = 100;\r
60 static const size_t MIN_BUFFER_COUNT = 32;\r
61 static const size_t MAX_BUFFER_SIZE  = 32 * 1000000;\r
62 \r
63 namespace caspar { namespace ffmpeg {\r
64                 \r
65 struct input::impl : boost::noncopyable\r
66 {               \r
67         const spl::shared_ptr<diagnostics::graph>                                                       graph_;\r
68 \r
69         const spl::shared_ptr<AVFormatContext>                                                          format_context_; // Destroy this last\r
70         const int                                                                                                       default_stream_index_;\r
71                         \r
72         const std::wstring                                                                                      filename_;\r
73         tbb::atomic<uint32_t>                                                                           start_;         \r
74         tbb::atomic<uint32_t>                                                                           length_;\r
75         tbb::atomic<bool>                                                                                       loop_;\r
76         tbb::atomic<bool>                                                                                       eof_;\r
77         uint32_t                                                                                                        frame_number_;\r
78         \r
79         tbb::concurrent_bounded_queue<std::shared_ptr<AVPacket>>        buffer_;\r
80         tbb::atomic<size_t>                                                                                     buffer_size_;\r
81                 \r
82         executor                                                                                                        executor_;\r
83         \r
84         impl(const spl::shared_ptr<diagnostics::graph> graph, const std::wstring& filename, const bool loop, const uint32_t start, const uint32_t length) \r
85                 : graph_(graph)\r
86                 , format_context_(open_input(filename))         \r
87                 , default_stream_index_(av_find_default_stream_index(format_context_.get()))\r
88                 , filename_(filename)\r
89                 , frame_number_(0)\r
90                 , executor_(print())\r
91         {               \r
92                 start_                  = start;\r
93                 length_                 = length;\r
94                 loop_                   = loop;\r
95                 eof_                    = false;\r
96                 buffer_size_    = 0;\r
97 \r
98                 if(start_ > 0)                  \r
99                         seek(start_, false);\r
100                                                                 \r
101                 graph_->set_color("seek", diagnostics::color(1.0f, 0.5f, 0.0f));        \r
102                 graph_->set_color("buffer-count", diagnostics::color(0.7f, 0.4f, 0.4f));\r
103                 graph_->set_color("buffer-size", diagnostics::color(1.0f, 1.0f, 0.0f)); \r
104 \r
105                 tick();\r
106         }\r
107         \r
108         bool try_pop(std::shared_ptr<AVPacket>& packet)\r
109         {\r
110                 auto result = buffer_.try_pop(packet);\r
111                 \r
112                 if(result)\r
113                 {\r
114                         if(packet)\r
115                                 buffer_size_ -= packet->size;\r
116                         tick();\r
117                 }\r
118 \r
119                 graph_->set_value("buffer-size", (static_cast<double>(buffer_size_)+0.001)/MAX_BUFFER_SIZE);\r
120                 graph_->set_value("buffer-count", (static_cast<double>(buffer_.size()+0.001)/MAX_BUFFER_COUNT));\r
121                 \r
122                 return result;\r
123         }\r
124 \r
125         void seek(uint32_t target, bool clear)\r
126         {\r
127                 executor_.invoke([=]\r
128                 {\r
129                         if(clear)\r
130                         {\r
131                                 std::shared_ptr<AVPacket> packet;\r
132                                 while(buffer_.try_pop(packet) && packet)\r
133                                         buffer_size_ -= packet->size;\r
134                         }\r
135                         \r
136                         CASPAR_LOG(debug) << print() << " Seeking: " << target;\r
137 \r
138                         int flags = AVSEEK_FLAG_FRAME;\r
139                         if(target == 0)\r
140                         {\r
141                                 // Fix VP6 seeking\r
142                                 int vid_stream_index = av_find_best_stream(format_context_.get(), AVMEDIA_TYPE_VIDEO, -1, -1, 0, 0);\r
143                                 if(vid_stream_index >= 0)\r
144                                 {\r
145                                         auto codec_id = format_context_->streams[vid_stream_index]->codec->codec_id;\r
146                                         if(codec_id == CODEC_ID_VP6A || codec_id == CODEC_ID_VP6F || codec_id == CODEC_ID_VP6)\r
147                                                 flags = AVSEEK_FLAG_BYTE;\r
148                                 }\r
149                         }\r
150                 \r
151                         auto stream = format_context_->streams[default_stream_index_];\r
152                         auto codec  = stream->codec;\r
153                         auto fixed_target = (target*stream->time_base.den*codec->time_base.num)/(stream->time_base.num*codec->time_base.den)*codec->ticks_per_frame;\r
154                 \r
155                         THROW_ON_ERROR2(avformat_seek_file(format_context_.get(), default_stream_index_, std::numeric_limits<int64_t>::min(), fixed_target, std::numeric_limits<int64_t>::max(), 0), print());          \r
156                 \r
157                         auto flush_packet       = create_packet();\r
158                         flush_packet->data      = nullptr;\r
159                         flush_packet->size      = 0;\r
160                         flush_packet->pos       = target;\r
161 \r
162                         buffer_.push(flush_packet);\r
163                         \r
164                         tick();\r
165                 }, task_priority::high_priority);\r
166         }\r
167         \r
168         std::wstring print() const\r
169         {\r
170                 return L"ffmpeg_input[" + filename_ + L")]";\r
171         }\r
172         \r
173         bool full() const\r
174         {\r
175                 return (buffer_size_ > MAX_BUFFER_SIZE || buffer_.size() > MAX_BUFFER_COUNT) && buffer_.size() > MIN_BUFFER_COUNT;\r
176         }\r
177 \r
178         void tick()\r
179         {       \r
180                 if(!executor_.is_running())\r
181                         return;\r
182                 \r
183                 executor_.begin_invoke([this]\r
184                 {                       \r
185                         if(full())\r
186                                 return;\r
187 \r
188                         try\r
189                         {\r
190                                 auto packet = create_packet();\r
191                 \r
192                                 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
193                 \r
194                                 if(is_eof(ret))                                                                                                              \r
195                                 {\r
196                                         frame_number_ = 0;\r
197 \r
198                                         if(loop_)\r
199                                         {\r
200                                                 seek(start_, false);\r
201                                                 graph_->set_tag("seek");                \r
202                                                 CASPAR_LOG(trace) << print() << " Looping.";    \r
203                                         }\r
204                                         else\r
205                                                 eof_ = true;\r
206                                 }\r
207                                 else\r
208                                 {               \r
209                                         eof_ = false;\r
210 \r
211                                         THROW_ON_ERROR(ret, "av_read_frame", print());\r
212 \r
213                                         if(packet->stream_index == default_stream_index_)\r
214                                                 ++frame_number_;\r
215 \r
216                                         THROW_ON_ERROR2(av_dup_packet(packet.get()), print());\r
217                                 \r
218                                         // Make sure that the packet is correctly deallocated even if size and data is modified during decoding.\r
219                                         auto size = packet->size;\r
220                                         auto data = packet->data;\r
221                         \r
222                                         packet = spl::shared_ptr<AVPacket>(packet.get(), [packet, size, data](AVPacket*)\r
223                                         {\r
224                                                 packet->size = size;\r
225                                                 packet->data = data;                            \r
226                                         });\r
227 \r
228                                         buffer_.try_push(packet);\r
229                                         buffer_size_ += packet->size;\r
230                                 \r
231                                         graph_->set_value("buffer-size", (static_cast<double>(buffer_size_)+0.001)/MAX_BUFFER_SIZE);\r
232                                         graph_->set_value("buffer-count", (static_cast<double>(buffer_.size()+0.001)/MAX_BUFFER_COUNT));                \r
233                                 }       \r
234 \r
235                                 if(!eof_)\r
236                                         tick();         \r
237                         }\r
238                         catch(...)\r
239                         {\r
240                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
241                                 executor_.stop();\r
242                         }\r
243                 });\r
244         }       \r
245                         \r
246         bool is_eof(int ret)\r
247         {\r
248                 #pragma warning (disable : 4146)\r
249 \r
250                 //if(ret == AVERROR(EIO))\r
251                 //      CASPAR_LOG(trace) << print() << " Received EIO, assuming EOF. ";\r
252                 //if(ret == AVERROR_EOF)\r
253                 //      CASPAR_LOG(trace) << print() << " Received EOF. ";\r
254 \r
255                 return ret == AVERROR_EOF || ret == AVERROR(EIO) || frame_number_ >= length_; // av_read_frame doesn't always correctly return AVERROR_EOF;\r
256         }\r
257 };\r
258 \r
259 input::input(const spl::shared_ptr<diagnostics::graph>& graph, const std::wstring& filename, bool loop, uint32_t start, uint32_t length) \r
260         : impl_(new impl(graph, filename, loop, start, length)){}\r
261 bool input::eof() const {return impl_->eof_;}\r
262 bool input::try_pop(std::shared_ptr<AVPacket>& packet){return impl_->try_pop(packet);}\r
263 spl::shared_ptr<AVFormatContext> input::context(){return impl_->format_context_;}\r
264 void input::loop(bool value){impl_->loop_ = value;}\r
265 bool input::loop() const{return impl_->loop_;}\r
266 void input::seek(uint32_t target){impl_->seek(target, true);}\r
267 void input::start(uint32_t value){impl_->start_ = value;}\r
268 uint32_t input::start() const{return impl_->start_;}\r
269 void input::length(uint32_t value){impl_->length_ = value;}\r
270 uint32_t input::length() const{return impl_->length_;}\r
271 }}\r