diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-22 14:54:31 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-04-19 23:04:32 +0100 |
| commit | e11276a822289d7d7d91a4f431f386ad28ef16dd (patch) | |
| tree | 83c1162b3beb7f9fa11b24409309747dd9753959 /src/lib/decoder_part.h | |
| parent | c6b0eb4db564abd41aa0685367a8660d7091e8f8 (diff) | |
Various work on the audio code.
Diffstat (limited to 'src/lib/decoder_part.h')
| -rw-r--r-- | src/lib/decoder_part.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/decoder_part.h b/src/lib/decoder_part.h index 36594773a..39f77e6e6 100644 --- a/src/lib/decoder_part.h +++ b/src/lib/decoder_part.h @@ -33,6 +33,8 @@ public: DecoderPart (Decoder* parent, boost::shared_ptr<Log> log); virtual ~DecoderPart () {} + virtual boost::optional<ContentTime> position () const = 0; + void set_ignore () { _ignore = true; } @@ -41,8 +43,6 @@ public: return _ignore; } - virtual boost::optional<ContentTime> position () const = 0; - protected: Decoder* _parent; boost::shared_ptr<Log> _log; |
