]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/video/video_decoder.cpp
2.0. ffmpeg: Header file optimization and fixes.
[casparcg] / modules / ffmpeg / producer / video / video_decoder.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 #include "../../stdafx.h"\r
21 \r
22 #include "video_decoder.h"\r
23 \r
24 #include "../util.h"\r
25 #include "../filter/filter.h"\r
26 \r
27 #include "../../ffmpeg_error.h"\r
28 #include "../../tbb_avcodec.h"\r
29 \r
30 #include <core/producer/frame/image_transform.h>\r
31 #include <core/producer/frame/frame_factory.h>\r
32 \r
33 #include <boost/range/algorithm_ext/push_back.hpp>\r
34 \r
35 #include <tbb/task_group.h>\r
36 \r
37 #include <queue>\r
38 \r
39 #if defined(_MSC_VER)\r
40 #pragma warning (push)\r
41 #pragma warning (disable : 4244)\r
42 #endif\r
43 extern "C" \r
44 {\r
45         #define __STDC_CONSTANT_MACROS\r
46         #define __STDC_LIMIT_MACROS\r
47         #include <libavcodec/avcodec.h>\r
48         #include <libavformat/avformat.h>\r
49 }\r
50 #if defined(_MSC_VER)\r
51 #pragma warning (pop)\r
52 #endif\r
53 \r
54 namespace caspar {\r
55                 \r
56 struct video_decoder::implementation : boost::noncopyable\r
57 {\r
58         const safe_ptr<core::frame_factory>             frame_factory_;\r
59         std::shared_ptr<AVCodecContext>                 codec_context_;\r
60         int                                                                             index_;\r
61 \r
62         std::queue<std::shared_ptr<AVPacket>>   packet_buffer_;\r
63 \r
64         filter                                                                  filter_;\r
65 \r
66         double                                                                  fps_;\r
67         int64_t                                                                 nb_frames_;\r
68 public:\r
69         explicit implementation(const std::shared_ptr<AVFormatContext>& context, const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& filter) \r
70                 : frame_factory_(frame_factory)\r
71                 , filter_(filter)\r
72                 , fps_(frame_factory_->get_video_format_desc().fps)\r
73                 , nb_frames_(0)\r
74         {\r
75                 try\r
76                 {\r
77                         AVCodec* dec;\r
78                         index_ = THROW_ON_ERROR2(av_find_best_stream(context.get(), AVMEDIA_TYPE_VIDEO, -1, -1, &dec, 0), "[video_decoder]");\r
79                                                 \r
80                         THROW_ON_ERROR2(tbb_avcodec_open(context->streams[index_]->codec, dec), "[video_decoder]");\r
81                 }\r
82                 catch(...)\r
83                 {\r
84                         CASPAR_LOG_CURRENT_EXCEPTION();\r
85                         CASPAR_LOG(warning) << "[video_decoder] Failed to open video. Running without audio.";\r
86                         return;\r
87                 }\r
88                                                                 \r
89                 codec_context_.reset(context->streams[index_]->codec, tbb_avcodec_close);\r
90                 \r
91                 // Some files give an invalid time_base numerator, try to fix it.\r
92                 if(codec_context_ && codec_context_->time_base.num == 1)\r
93                         codec_context_->time_base.num = static_cast<int>(std::pow(10.0, static_cast<int>(std::log10(static_cast<float>(codec_context_->time_base.den)))-1));    \r
94                 \r
95                 nb_frames_ = context->streams[index_]->nb_frames;\r
96                 if(nb_frames_ == 0)\r
97                         nb_frames_ = context->streams[index_]->duration;// * context->streams[index_]->time_base.den;\r
98 \r
99                 fps_ = static_cast<double>(codec_context_->time_base.den) / static_cast<double>(codec_context_->time_base.num);\r
100                 if(double_rate(filter))\r
101                         fps_ *= 2;\r
102         }\r
103 \r
104         void push(const std::shared_ptr<AVPacket>& packet)\r
105         {\r
106                 if(!codec_context_)\r
107                         return;\r
108 \r
109                 if(packet && packet->stream_index != index_)\r
110                         return;\r
111 \r
112                 packet_buffer_.push(packet);\r
113         }\r
114 \r
115         std::vector<std::shared_ptr<AVFrame>> poll()\r
116         {               \r
117                 std::vector<std::shared_ptr<AVFrame>> result;\r
118 \r
119                 if(!codec_context_)\r
120                 {\r
121                         std::shared_ptr<AVFrame> frame(avcodec_alloc_frame(), av_free);\r
122                         frame->data[0] = nullptr;\r
123                         result.push_back(frame);\r
124                 }\r
125                 else if(!packet_buffer_.empty())\r
126                 {\r
127                         auto packet = packet_buffer_.front();\r
128                                         \r
129                         if(packet)\r
130                         {\r
131                                 auto frame = decode(*packet);\r
132                                 boost::range::push_back(result, filter_.execute(frame));\r
133                                 if(packet->size == 0)\r
134                                         packet_buffer_.pop();\r
135                         }\r
136                         else\r
137                         {\r
138                                 if(codec_context_->codec->capabilities & CODEC_CAP_DELAY)\r
139                                 {\r
140                                         AVPacket pkt;\r
141                                         av_init_packet(&pkt);\r
142                                         pkt.data = nullptr;\r
143                                         pkt.size = 0;\r
144                                         auto frame = decode(pkt);\r
145                                         boost::range::push_back(result, filter_.execute(frame));        \r
146                                 }\r
147 \r
148                                 if(result.empty())\r
149                                 {                                       \r
150                                         packet_buffer_.pop();\r
151                                         avcodec_flush_buffers(codec_context_.get());\r
152                                         result.push_back(nullptr);\r
153                                 }\r
154                         }\r
155                 }\r
156                 \r
157                 return result;\r
158         }\r
159 \r
160         std::shared_ptr<AVFrame> decode(AVPacket& pkt)\r
161         {\r
162                 std::shared_ptr<AVFrame> decoded_frame(avcodec_alloc_frame(), av_free);\r
163 \r
164                 int frame_finished = 0;\r
165                 THROW_ON_ERROR2(avcodec_decode_video2(codec_context_.get(), decoded_frame.get(), &frame_finished, &pkt), "[video_decocer]");\r
166                 \r
167                 // If a decoder consumes less then the whole packet then something is wrong\r
168                 // that might be just harmless padding at the end, or a problem with the\r
169                 // AVParser or demuxer which puted more then one frame in a AVPacket.\r
170                 pkt.data = nullptr;\r
171                 pkt.size = 0;\r
172 \r
173                 if(frame_finished != 0) \r
174                 {\r
175                         if(decoded_frame->repeat_pict != 0)\r
176                                 CASPAR_LOG(warning) << "video_decoder: repeat_pict not implemented.";\r
177                         return decoded_frame;\r
178                 }\r
179 \r
180                 return nullptr;\r
181         }\r
182         \r
183         bool ready() const\r
184         {\r
185                 return !codec_context_ || !packet_buffer_.empty();\r
186         }\r
187         \r
188         double fps() const\r
189         {\r
190                 return fps_;\r
191         }\r
192 };\r
193 \r
194 video_decoder::video_decoder(const std::shared_ptr<AVFormatContext>& context, const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& filter) : impl_(new implementation(context, frame_factory, filter)){}\r
195 void video_decoder::push(const std::shared_ptr<AVPacket>& packet){impl_->push(packet);}\r
196 std::vector<std::shared_ptr<AVFrame>> video_decoder::poll(){return impl_->poll();}\r
197 bool video_decoder::ready() const{return impl_->ready();}\r
198 double video_decoder::fps() const{return impl_->fps();}\r
199 int64_t video_decoder::nb_frames() const{return impl_->nb_frames_;}\r
200 }