summaryrefslogtreecommitdiff
path: root/src/lib/dcp_decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-11-07 22:33:37 +0000
committerCarl Hetherington <cth@carlh.net>2014-11-07 22:33:37 +0000
commit87da92b45a9a0cf4ce809ea580a78c4dd5d96021 (patch)
tree4aeb53945102dbbd373b522917b6878478f5d206 /src/lib/dcp_decoder.h
parent9980c40a47abe24f8dd3cb16e14ad4a3254a8465 (diff)
Remove log from ImageProxy hierarchy.
Diffstat (limited to 'src/lib/dcp_decoder.h')
-rw-r--r--src/lib/dcp_decoder.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/dcp_decoder.h b/src/lib/dcp_decoder.h
index d81b20b5c..89931aa38 100644
--- a/src/lib/dcp_decoder.h
+++ b/src/lib/dcp_decoder.h
@@ -31,7 +31,7 @@ class Log;
class DCPDecoder : public VideoDecoder, public AudioDecoder, public SubtitleDecoder
{
public:
- DCPDecoder (boost::shared_ptr<const DCPContent>, boost::shared_ptr<Log>);
+ DCPDecoder (boost::shared_ptr<const DCPContent>);
private:
void seek (ContentTime t, bool accurate);
@@ -41,6 +41,5 @@ private:
ContentTime _next;
std::list<boost::shared_ptr<dcp::Reel> > _reels;
std::list<boost::shared_ptr<dcp::Reel> >::iterator _reel;
- boost::shared_ptr<Log> _log;
boost::shared_ptr<const DCPContent> _dcp_content;
};