Various work on the audio code.
[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         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         void set_position (ContentTime position) {
55                 _position = position;
56         }
57
58         boost::optional<ContentTime> position () const {
59                 return _position;
60         }
61
62         void emit (boost::shared_ptr<const ImageProxy>, Frame frame);
63
64         boost::signals2::signal<void (ContentVideo)> Data;
65
66 private:
67         boost::shared_ptr<const Content> _content;
68         boost::optional<Frame> _last_emitted;
69         boost::optional<ContentTime> _position;
70 };
71
72 #endif