diff options
Diffstat (limited to 'src/lib/decoder_part.h')
| -rw-r--r-- | src/lib/decoder_part.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/decoder_part.h b/src/lib/decoder_part.h index 0b8b6a43b..7ba2cb2eb 100644 --- a/src/lib/decoder_part.h +++ b/src/lib/decoder_part.h @@ -26,14 +26,15 @@ class Decoder; class Log; +class Film; class DecoderPart { public: - DecoderPart (Decoder* parent, boost::shared_ptr<Log> log); + DecoderPart (Decoder* parent); virtual ~DecoderPart () {} - virtual ContentTime position () const = 0; + virtual ContentTime position (boost::shared_ptr<const Film> film) const = 0; virtual void seek () = 0; void set_ignore (bool i) { @@ -46,7 +47,6 @@ public: protected: Decoder* _parent; - boost::shared_ptr<Log> _log; private: bool _ignore; |
