Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
[dcpomatic.git] / src / lib / video_decoder.h
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/lib/video_decoder.h
22  *  @brief VideoDecoder class.
23  */
24
25 #ifndef DCPOMATIC_VIDEO_DECODER_H
26 #define DCPOMATIC_VIDEO_DECODER_H
27
28 #include "decoder.h"
29 #include "video_content.h"
30 #include "util.h"
31 #include "content_video.h"
32 #include "decoder_part.h"
33 #include <boost/signals2.hpp>
34 #include <boost/shared_ptr.hpp>
35
36 class VideoContent;
37 class ImageProxy;
38 class Image;
39 class Log;
40
41 /** @class VideoDecoder
42  *  @brief Parent for classes which decode video.
43  */
44 class VideoDecoder : public DecoderPart
45 {
46 public:
47         VideoDecoder (Decoder* parent, boost::shared_ptr<const Content> c, boost::shared_ptr<Log> log);
48
49         std::list<ContentVideo> get (Frame frame, bool accurate);
50
51 #ifdef DCPOMATIC_DEBUG
52         int test_gaps;
53 #endif
54
55         friend struct video_decoder_fill_test1;
56         friend struct video_decoder_fill_test2;
57         friend struct ffmpeg_pts_offset_test;
58         friend void ffmpeg_decoder_sequential_test_one (boost::filesystem::path file, float fps, int gaps, int video_length);
59
60         void seek (ContentTime time, bool accurate);
61         void give (boost::shared_ptr<const ImageProxy>, Frame frame);
62
63         boost::optional<ContentTime> position () const {
64                 return _position;
65         }
66
67         void reset_position () {
68                 _position.reset ();
69         }
70
71 private:
72
73         std::list<ContentVideo> decoded (Frame frame);
74         void fill_one_eye (Frame from, Frame to, Eyes);
75         void fill_both_eyes (VideoFrame from, VideoFrame to);
76
77         boost::shared_ptr<const Content> _content;
78         std::list<ContentVideo> _decoded;
79         boost::shared_ptr<Image> _black_image;
80         boost::optional<ContentTime> _last_seek_time;
81         bool _last_seek_accurate;
82         /** if set, this is a frame for which we got no data because the Decoder said
83          *  it has no more to give.
84          */
85         boost::optional<Frame> _no_data_frame;
86         boost::optional<ContentTime> _position;
87 };
88
89 #endif