summaryrefslogtreecommitdiff
path: root/src/lib/dcp_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-09 22:00:09 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-09 22:00:09 +0100
commit43494601da412259814fdb1345950329cc4aa849 (patch)
tree4c7d5fb8038998753862bab0b7192109786996de /src/lib/dcp_decoder.cc
parent70aaee5bb3fd57ae749357b72f7afb655fd643e6 (diff)
parentcb3d1d6eda4c798263e86c60c571fbfbeb025acd (diff)
Merge branch '2.0' of ssh://git.carlh.net/home/carl/git/dcpomatic2 into 2.0
Diffstat (limited to 'src/lib/dcp_decoder.cc')
-rw-r--r--src/lib/dcp_decoder.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dcp_decoder.cc b/src/lib/dcp_decoder.cc
index ec1f02d3d..2bdf6a8e9 100644
--- a/src/lib/dcp_decoder.cc
+++ b/src/lib/dcp_decoder.cc
@@ -41,9 +41,9 @@ using std::cout;
using boost::shared_ptr;
using boost::dynamic_pointer_cast;
-DCPDecoder::DCPDecoder (shared_ptr<const DCPContent> c)
+DCPDecoder::DCPDecoder (shared_ptr<const DCPContent> c, bool fast)
: VideoDecoder (c)
- , AudioDecoder (c)
+ , AudioDecoder (c, fast)
, SubtitleDecoder (c)
, _dcp_content (c)
{