C++11 tidying.
[dcpomatic.git] / src / lib / video_decoder.h
1 /*
2     Copyright (C) 2012-2021 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
22 /** @file  src/lib/video_decoder.h
23  *  @brief VideoDecoder class.
24  */
25
26
27 #ifndef DCPOMATIC_VIDEO_DECODER_H
28 #define DCPOMATIC_VIDEO_DECODER_H
29
30
31 #include "decoder.h"
32 #include "video_content.h"
33 #include "util.h"
34 #include "content_video.h"
35 #include "decoder_part.h"
36 #include <boost/signals2.hpp>
37
38
39 class VideoContent;
40 class ImageProxy;
41 class Image;
42 class Log;
43 class FrameIntervalChecker;
44
45
46 /** @class VideoDecoder
47  *  @brief Parent for classes which decode video.
48  */
49 class VideoDecoder : public DecoderPart
50 {
51 public:
52         VideoDecoder (Decoder* parent, std::shared_ptr<const Content> c);
53
54         friend struct video_decoder_fill_test1;
55         friend struct video_decoder_fill_test2;
56         friend struct ffmpeg_pts_offset_test;
57         friend void ffmpeg_decoder_sequential_test_one (boost::filesystem::path file, float fps, int gaps, int video_length);
58
59         boost::optional<dcpomatic::ContentTime> position (std::shared_ptr<const Film>) const {
60                 return _position;
61         }
62
63         void seek ();
64         void emit (std::shared_ptr<const Film> film, std::shared_ptr<const ImageProxy>, Frame frame);
65
66         boost::signals2::signal<void (ContentVideo)> Data;
67
68 private:
69         std::shared_ptr<const Content> _content;
70         /** Eyes of last thing to be emitted; only used for THREE_D_ALTERNATE */
71         boost::optional<Eyes> _last_emitted_eyes;
72         boost::optional<dcpomatic::ContentTime> _position;
73         boost::scoped_ptr<FrameIntervalChecker> _frame_interval_checker;
74 };
75
76
77 #endif