Barely-functioning GL playback with new arrangement.
[dcpomatic.git] / src / lib / video_decoder.h
1 /*
2     Copyright (C) 2012-2018 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);
48
49         friend struct video_decoder_fill_test1;
50         friend struct video_decoder_fill_test2;
51         friend struct ffmpeg_pts_offset_test;
52         friend void ffmpeg_decoder_sequential_test_one (boost::filesystem::path file, float fps, int gaps, int video_length);
53
54         boost::optional<dcpomatic::ContentTime> position (boost::shared_ptr<const Film>) const {
55                 return _position;
56         }
57
58         void seek ();
59         void emit (boost::shared_ptr<const Film> film, boost::shared_ptr<const ImageProxy>, Frame frame);
60
61         /** @return true if the emitted data was accepted, false if not */
62         boost::signals2::signal<void (ContentVideo)> Data;
63
64 private:
65         boost::shared_ptr<const Content> _content;
66         /** Frame of last thing to be emitted; only used for 3D */
67         boost::optional<Frame> _last_emitted_frame;
68         boost::optional<Eyes> _last_emitted_eyes;
69         boost::optional<dcpomatic::ContentTime> _position;
70         std::vector<Frame> _last_threed_frames;
71 };
72
73 #endif