]> 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) 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 "video_decoder.h"\r
25 \r
26 #include "../util/util.h"\r
27 #include "../input/input.h"\r
28 \r
29 #include "../../ffmpeg_error.h"\r
30 \r
31 #include <common/log.h>\r
32 #include <core/frame/frame_transform.h>\r
33 #include <core/frame/frame_factory.h>\r
34 \r
35 #include <boost/range/algorithm_ext/push_back.hpp>\r
36 #include <boost/filesystem.hpp>\r
37 \r
38 #include <queue>\r
39 \r
40 #if defined(_MSC_VER)\r
41 #pragma warning (push)\r
42 #pragma warning (disable : 4244)\r
43 #endif\r
44 extern "C" \r
45 {\r
46         #include <libavcodec/avcodec.h>\r
47         #include <libavformat/avformat.h>\r
48 }\r
49 #if defined(_MSC_VER)\r
50 #pragma warning (pop)\r
51 #endif\r
52 \r
53 namespace caspar { namespace ffmpeg {\r
54         \r
55 struct video_decoder::impl : boost::noncopyable\r
56 {\r
57         monitor::basic_subject                                  event_subject_;\r
58         input*                                                                  input_;\r
59         int                                                                             index_;\r
60         const std::shared_ptr<AVCodecContext>   codec_context_;\r
61 \r
62         std::queue<spl::shared_ptr<AVPacket>>   packets_;\r
63         \r
64         const AVStream*                                                 stream_;\r
65         const uint32_t                                                  nb_frames_;\r
66         const int                                                               width_;\r
67         const int                                                               height_;\r
68 \r
69         bool                                                                    is_progressive_;\r
70         uint32_t                                                                file_frame_number_;\r
71         double                                                                  fps_;\r
72 \r
73 public:\r
74         explicit impl() \r
75                 : input_(nullptr)\r
76                 , nb_frames_(0)\r
77                 , width_(0)\r
78                 , height_(0)\r
79                 , file_frame_number_(0)\r
80                 , fps_(0.0)\r
81         {\r
82         }\r
83 \r
84         explicit impl(input& in) \r
85                 : input_(&in)\r
86                 , codec_context_(open_codec(input_->context(), AVMEDIA_TYPE_VIDEO, index_))\r
87                 , stream_(input_->context().streams[index_])\r
88                 , nb_frames_(static_cast<uint32_t>(stream_->nb_frames))\r
89                 , width_(codec_context_->width)\r
90                 , height_(codec_context_->height)\r
91                 , file_frame_number_(0)\r
92                 , fps_(read_fps(input_->context(), 0.0))\r
93         {\r
94         }\r
95         \r
96         std::vector<std::shared_ptr<AVFrame>> poll()\r
97         {                       \r
98                 std::vector<std::shared_ptr<AVFrame>> result;\r
99 \r
100                 if(!codec_context_)\r
101                 {\r
102                         result.push_back(empty_video());\r
103                         return result;\r
104                 }\r
105 \r
106                 std::shared_ptr<AVPacket> packet;\r
107                 if(!input_->try_pop_video(packet))\r
108                         return result;\r
109 \r
110                 if(packet == flush_packet())\r
111                 {\r
112                         avcodec_flush_buffers(codec_context_.get());\r
113                         return result;\r
114                 }\r
115                 \r
116                 if(packet == null_packet())\r
117                 {\r
118                         if(codec_context_->codec->capabilities & CODEC_CAP_DELAY)\r
119                         {\r
120                                 AVPacket pkt = {0};                \r
121                                 av_init_packet(&pkt);\r
122                                 \r
123                                 std::shared_ptr<AVFrame> frame;\r
124                                 while(decode(pkt, frame))\r
125                                         result.push_back(frame);        \r
126                         }\r
127                         return result;\r
128                 }\r
129 \r
130                 while(packet->size > 0)\r
131                 {\r
132                         std::shared_ptr<AVFrame> frame;\r
133                         if(decode(*packet, frame))\r
134                                 result.push_back(frame);                                \r
135                 }\r
136                 \r
137                 return result;\r
138         }\r
139 \r
140         bool decode(AVPacket& pkt, std::shared_ptr<AVFrame>& result)\r
141         {\r
142                 result = std::shared_ptr<AVFrame>(avcodec_alloc_frame(), av_free);\r
143 \r
144                 int got_frame = 0;\r
145                 auto len = THROW_ON_ERROR2(avcodec_decode_video2(codec_context_.get(), result.get(), &got_frame, &pkt), "[video_decocer]");\r
146                                 \r
147                 if(len == 0)\r
148                 {\r
149                         pkt.size = 0;\r
150                         return false;\r
151                 }\r
152 \r
153         pkt.data += len;\r
154         pkt.size -= len;\r
155 \r
156                 if(got_frame == 0)      \r
157                         return false;\r
158                 \r
159                 auto stream_time_base    = stream_->time_base;\r
160                 auto packet_frame_number = static_cast<uint32_t>((static_cast<double>(pkt.pts * stream_time_base.num)/stream_time_base.den)*fps_);\r
161 \r
162                 file_frame_number_ = packet_frame_number;\r
163 \r
164                 is_progressive_ = !result->interlaced_frame;\r
165                 \r
166                 if(result->repeat_pict > 0)\r
167                         CASPAR_LOG(warning) << "[video_decoder] repeat_pict not implemented.";\r
168                                 \r
169                 event_subject_  << monitor::event("file/video/width")   % width_\r
170                                                 << monitor::event("file/video/height")  % height_\r
171                                                 << monitor::event("file/video/field")   % u8(!result->interlaced_frame ? "progressive" : (result->top_field_first ? "upper" : "lower"))\r
172                                                 << monitor::event("file/video/codec")   % u8(codec_context_->codec->long_name);\r
173                 \r
174                 return true;\r
175         }\r
176         \r
177         uint32_t nb_frames() const\r
178         {\r
179                 return std::max(nb_frames_, file_frame_number_);\r
180         }\r
181 \r
182         std::wstring print() const\r
183         {               \r
184                 return L"[video-decoder] " + u16(codec_context_->codec->long_name);\r
185         }\r
186 };\r
187 \r
188 video_decoder::video_decoder() : impl_(new impl()){}\r
189 video_decoder::video_decoder(input& in) : impl_(new impl(in)){}\r
190 video_decoder::video_decoder(video_decoder&& other) : impl_(std::move(other.impl_)){}\r
191 video_decoder& video_decoder::operator=(video_decoder&& other){impl_ = std::move(other.impl_); return *this;}\r
192 std::vector<std::shared_ptr<AVFrame>> video_decoder::operator()(){return impl_->poll();}\r
193 int video_decoder::width() const{return impl_->width_;}\r
194 int video_decoder::height() const{return impl_->height_;}\r
195 uint32_t video_decoder::nb_frames() const{return impl_->nb_frames();}\r
196 uint32_t video_decoder::file_frame_number() const{return impl_->file_frame_number_;}\r
197 bool video_decoder::is_progressive() const{return impl_->is_progressive_;}\r
198 std::wstring video_decoder::print() const{return impl_->print();}\r
199 void video_decoder::subscribe(const monitor::observable::observer_ptr& o){impl_->event_subject_.subscribe(o);}\r
200 void video_decoder::unsubscribe(const monitor::observable::observer_ptr& o){impl_->event_subject_.unsubscribe(o);}\r
201 \r
202 }}