summaryrefslogtreecommitdiff
path: root/src/lib/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/decoder.h
parent06152300e69e8faca44ff8d7f12a6fd354848b9a (diff)
Basic grunt-work, untested and unfinished, but it compiles.
Diffstat (limited to 'src/lib/decoder.h')
-rw-r--r--src/lib/decoder.h30
1 files changed, 4 insertions, 26 deletions
diff --git a/src/lib/decoder.h b/src/lib/decoder.h
index 3717d931d..f70eca8b3 100644
--- a/src/lib/decoder.h
+++ b/src/lib/decoder.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -47,32 +47,10 @@ public:
boost::shared_ptr<AudioDecoder> audio;
boost::shared_ptr<SubtitleDecoder> subtitle;
- enum PassReason {
- PASS_REASON_VIDEO,
- PASS_REASON_AUDIO,
- PASS_REASON_SUBTITLE
- };
-
- /** @return true if this decoder has already returned all its data and will give no more */
- virtual bool pass (PassReason, bool accurate) = 0;
-
- /** Ensure that any future get() calls return data that reflect
- * changes in our content's settings.
- */
- virtual void reset () {}
-
- void maybe_seek (boost::optional<ContentTime> position, ContentTime time, bool accurate);
-
-private:
- /** Seek so that the next pass() will yield the next thing
- * (video/sound frame, subtitle etc.) at or after the requested
- * time. Pass accurate = true to try harder to ensure that, at worst,
- * the next thing we yield comes before `time'. This may entail
- * seeking some way before `time' to be on the safe side.
- * Alternatively, if seeking is 100% accurate for this decoder,
- * it may seek to just the right spot.
- */
+ virtual void pass () = 0;
virtual void seek (ContentTime time, bool accurate) = 0;
+
+ ContentTime position () const;
};
#endif