Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[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 <boost/signals2.hpp>
33 #include <boost/shared_ptr.hpp>
34
35 class VideoContent;
36 class ImageProxy;
37 class Image;
38 class Log;
39
40 /** @class VideoDecoder
41  *  @brief Parent for classes which decode video.
42  */
43 class VideoDecoder
44 {
45 public:
46         VideoDecoder (Decoder* parent, boost::shared_ptr<const Content> c, boost::shared_ptr<Log> log);
47
48         std::list<ContentVideo> get (Frame frame, bool accurate);
49
50         void set_ignore ();
51         bool ignore () const {
52                 return _ignore;
53         }
54
55 #ifdef DCPOMATIC_DEBUG
56         int test_gaps;
57 #endif
58
59         friend struct video_decoder_fill_test1;
60         friend struct video_decoder_fill_test2;
61         friend struct ffmpeg_pts_offset_test;
62         friend void ffmpeg_decoder_sequential_test_one (boost::filesystem::path file, float fps, int gaps, int video_length);
63
64         void seek (ContentTime time, bool accurate);
65         void give (boost::shared_ptr<const ImageProxy>, Frame frame);
66
67 private:
68
69         std::list<ContentVideo> decoded (Frame frame);
70         void fill_one_eye (Frame from, Frame to, Eyes);
71         void fill_both_eyes (VideoFrame from, VideoFrame to);
72
73         Decoder* _parent;
74         boost::shared_ptr<const Content> _content;
75         boost::shared_ptr<Log> _log;
76         std::list<ContentVideo> _decoded;
77         boost::shared_ptr<Image> _black_image;
78         boost::optional<ContentTime> _last_seek_time;
79         bool _last_seek_accurate;
80         /** true if this decoder should ignore all video; i.e. never produce any */
81         bool _ignore;
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 };
87
88 #endif