From 254b3044d72de6b033d7c584f5abd2b9aa70aad5 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 21 Nov 2018 01:59:04 +0000 Subject: Take Film pointer out of Content. --- src/lib/decoder_part.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/decoder_part.h') 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); + DecoderPart (Decoder* parent); virtual ~DecoderPart () {} - virtual ContentTime position () const = 0; + virtual ContentTime position (boost::shared_ptr film) const = 0; virtual void seek () = 0; void set_ignore (bool i) { @@ -46,7 +47,6 @@ public: protected: Decoder* _parent; - boost::shared_ptr _log; private: bool _ignore; -- cgit v1.2.3