]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/video/video_decoder.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[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 \r
29 #include <core/producer/frame/basic_frame.h>\r
30 #include <common/memory/memcpy.h>\r
31 \r
32 #if defined(_MSC_VER)\r
33 #pragma warning (push)\r
34 #pragma warning (disable : 4244)\r
35 #endif\r
36 extern "C" \r
37 {\r
38         #include <libavcodec/avcodec.h>\r
39         #include <libavformat/avformat.h>\r
40 }\r
41 #if defined(_MSC_VER)\r
42 #pragma warning (pop)\r
43 #endif\r
44 \r
45 #include <tbb/scalable_allocator.h>\r
46 \r
47 using namespace Concurrency;\r
48 \r
49 namespace caspar { namespace ffmpeg {\r
50         \r
51 struct video_decoder::implementation : public Concurrency::agent, boost::noncopyable\r
52 {       \r
53         int                                                                             index_;\r
54         std::shared_ptr<AVCodecContext>                 codec_context_;\r
55         \r
56         double                                                                  fps_;\r
57         int64_t                                                                 nb_frames_;\r
58 \r
59         size_t                                                                  width_;\r
60         size_t                                                                  height_;\r
61         bool                                                                    is_progressive_;\r
62         \r
63         overwrite_buffer<bool>                                  is_running_;\r
64         unbounded_buffer<safe_ptr<AVPacket>>    source_;\r
65         ITarget<safe_ptr<AVFrame>>&                             target_;\r
66         \r
67 public:\r
68         explicit implementation(video_decoder::source_t& source, video_decoder::target_t& target, AVFormatContext& context) \r
69                 : codec_context_(open_codec(context, AVMEDIA_TYPE_VIDEO, index_))\r
70                 , fps_(static_cast<double>(codec_context_->time_base.den) / static_cast<double>(codec_context_->time_base.num))\r
71                 , nb_frames_(context.streams[index_]->nb_frames)\r
72                 , width_(codec_context_->width)\r
73                 , height_(codec_context_->height)\r
74                 , is_progressive_(true)\r
75                 , source_([this](const safe_ptr<AVPacket>& packet)\r
76                         {\r
77                                 return packet->stream_index == index_;\r
78                         })\r
79                 , target_(target)\r
80         {               \r
81                 CASPAR_LOG(debug) << "[video_decoder] " << context.streams[index_]->codec->codec->long_name;\r
82                 \r
83                 CASPAR_VERIFY(width_ > 0, ffmpeg_error());\r
84                 CASPAR_VERIFY(height_ > 0, ffmpeg_error());\r
85 \r
86                 source.link_target(&source_);\r
87 \r
88                 start();\r
89         }\r
90 \r
91         ~implementation()\r
92         {\r
93                 send(is_running_, false);\r
94                 agent::wait(this);\r
95         }\r
96 \r
97         virtual void run()\r
98         {\r
99                 try\r
100                 {\r
101                         send(is_running_, true);\r
102                         while(is_running_.value())\r
103                         {\r
104                                 auto packet = receive(source_);\r
105                         \r
106                                 if(packet == loop_packet(index_))\r
107                                 {\r
108                                         send(target_, loop_video());\r
109                                         continue;\r
110                                 }\r
111 \r
112                                 if(packet == eof_packet(index_))\r
113                                         break;\r
114 \r
115                                 std::shared_ptr<AVFrame> decoded_frame(avcodec_alloc_frame(), av_free);\r
116 \r
117                                 int frame_finished = 0;\r
118                                 THROW_ON_ERROR2(avcodec_decode_video2(codec_context_.get(), decoded_frame.get(), &frame_finished, packet.get()), "[video_decocer]");\r
119 \r
120                                 // 1 packet <=> 1 frame.\r
121                                 // If a decoder consumes less then the whole packet then something is wrong\r
122                                 // that might be just harmless padding at the end, or a problem with the\r
123                                 // AVParser or demuxer which puted more then one frame in a AVPacket.\r
124 \r
125                                 if(frame_finished == 0) \r
126                                         continue;\r
127                                 \r
128                                 if(decoded_frame->repeat_pict > 0)\r
129                                         CASPAR_LOG(warning) << "[video_decoder]: Field repeat_pict not implemented.";\r
130                 \r
131                                 is_progressive_ = decoded_frame->interlaced_frame == 0;\r
132                                 \r
133                                 // C-TODO: Avoid duplication.\r
134                                 // Need to dupliace frame data since avcodec_decode_video2 reuses it.\r
135                                 send(target_, dup_frame(make_safe_ptr(decoded_frame)));\r
136                                 Concurrency::wait(10);\r
137                         }\r
138                 }\r
139                 catch(...)\r
140                 {\r
141                         CASPAR_LOG_CURRENT_EXCEPTION();\r
142                 }\r
143                 \r
144                 send(is_running_, false),\r
145                 send(target_, eof_video());\r
146 \r
147                 done();\r
148         }\r
149 \r
150         safe_ptr<AVFrame> dup_frame(const safe_ptr<AVFrame>& frame)\r
151         {\r
152                 auto desc = get_pixel_format_desc(static_cast<PixelFormat>(frame->format), frame->width, frame->height);\r
153 \r
154                 auto count = desc.planes.size();\r
155                 std::array<uint8_t*, 4> data;\r
156                 parallel_for<size_t>(0, count, [&](size_t n)\r
157                 {\r
158                         data[n] = frame->data[n];\r
159                         auto size = frame->linesize[n]*desc.planes[n].height;\r
160                         frame->data[n] = reinterpret_cast<uint8_t*>(scalable_aligned_malloc(size, 32));\r
161                         memcpy(frame->data[n], data[n], size);\r
162                 });\r
163 \r
164                 return safe_ptr<AVFrame>(frame.get(), [frame, data, count](AVFrame*)\r
165                 {\r
166                         for(size_t n = 0; n < count; ++n)\r
167                         {\r
168                                 scalable_aligned_free(frame->data[n]);\r
169                                 frame->data[n] = data[n];\r
170                         }\r
171                 });\r
172         }\r
173                 \r
174         double fps() const\r
175         {\r
176                 return fps_;\r
177         }\r
178 };\r
179 \r
180 video_decoder::video_decoder(video_decoder::source_t& source, video_decoder::target_t& target, AVFormatContext& context) \r
181         : impl_(new implementation(source, target, context))\r
182 {\r
183 }\r
184 \r
185 double video_decoder::fps() const{return impl_->fps();}\r
186 int64_t video_decoder::nb_frames() const{return impl_->nb_frames_;}\r
187 size_t video_decoder::width() const{return impl_->width_;}\r
188 size_t video_decoder::height() const{return impl_->height_;}\r
189 bool video_decoder::is_progressive() const{return impl_->is_progressive_;}\r
190 \r
191 }}