Use AV_ prefixes on some FFmpeg bits.
[dcpomatic.git] / src / lib / dcp_decoder.h
index f23b5b82d1e1983f0b58c9a54c9d825b0a78822b..6fdbd946af348dcd2f99a7d8306e5c8e6dabeff4 100644 (file)
@@ -35,7 +35,11 @@ struct dcp_subtitle_within_dcp_test;
 class DCPDecoder : public VideoDecoder, public AudioDecoder, public SubtitleDecoder
 {
 public:
-       DCPDecoder (boost::shared_ptr<const DCPContent>);
+       DCPDecoder (boost::shared_ptr<const DCPContent>, bool fast);
+
+       std::list<boost::shared_ptr<dcp::Reel> > reels () const {
+               return _reels;
+       }
 
 private:
        friend struct dcp_subtitle_within_dcp_test;