summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-11-21 16:57:15 +0000
committerCarl Hetherington <cth@carlh.net>2017-04-19 23:04:32 +0100
commitde2af791bdfdcd653752cba970e59efc7bf810c7 (patch)
tree1aa5dbc35daee0babd0def347944a6bea4154deb /src/lib/video_decoder.h
parent06152300e69e8faca44ff8d7f12a6fd354848b9a (diff)
Basic grunt-work, untested and unfinished, but it compiles.
Diffstat (limited to 'src/lib/video_decoder.h')
-rw-r--r--src/lib/video_decoder.h32
1 files changed, 3 insertions, 29 deletions
diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h
index 156ee4222..08173d34d 100644
--- a/src/lib/video_decoder.h
+++ b/src/lib/video_decoder.h
@@ -46,44 +46,18 @@ class VideoDecoder : public DecoderPart
public:
VideoDecoder (Decoder* parent, boost::shared_ptr<const Content> c, boost::shared_ptr<Log> log);
- std::list<ContentVideo> get (Frame frame, bool accurate);
-
-#ifdef DCPOMATIC_DEBUG
- int test_gaps;
-#endif
-
friend struct video_decoder_fill_test1;
friend struct video_decoder_fill_test2;
friend struct ffmpeg_pts_offset_test;
friend void ffmpeg_decoder_sequential_test_one (boost::filesystem::path file, float fps, int gaps, int video_length);
- void seek (ContentTime time, bool accurate);
- void give (boost::shared_ptr<const ImageProxy>, Frame frame);
+ void emit (boost::shared_ptr<const ImageProxy>, Frame frame);
- boost::optional<ContentTime> position () const {
- return _position;
- }
-
- void reset_position () {
- _position.reset ();
- }
+ boost::signals2::signal<void (ContentVideo)> Data;
private:
-
- std::list<ContentVideo> decoded (Frame frame);
- void fill_one_eye (Frame from, Frame to, Eyes);
- void fill_both_eyes (VideoFrame from, VideoFrame to);
-
boost::shared_ptr<const Content> _content;
- std::list<ContentVideo> _decoded;
- boost::shared_ptr<Image> _black_image;
- boost::optional<ContentTime> _last_seek_time;
- bool _last_seek_accurate;
- /** if set, this is a frame for which we got no data because the Decoder said
- * it has no more to give.
- */
- boost::optional<Frame> _no_data_frame;
- boost::optional<ContentTime> _position;
+ boost::optional<Frame> _last_emitted;
};
#endif