From ae89ae6a4cc626df3e32fdb17fef1b9df33858aa Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 5 Jan 2015 14:40:38 +0000 Subject: Increase stored-frames limit; fix skip_frame_test reference. --- src/lib/video_decoder.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/lib/video_decoder.cc') diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc index efcbb05ad..1bb460da3 100644 --- a/src/lib/video_decoder.cc +++ b/src/lib/video_decoder.cc @@ -290,8 +290,10 @@ VideoDecoder::video (shared_ptr image, VideoFrame frame) copy (to_push.begin(), to_push.end(), back_inserter (_decoded_video)); - /* We can't let this build up too much or we will run out of memory */ - DCPOMATIC_ASSERT (_decoded_video.size() < 32); + /* We can't let this build up too much or we will run out of memory. We need to allow + the most frames that can exist between blocks of sound in a multiplexed file. + */ + DCPOMATIC_ASSERT (_decoded_video.size() <= 96); } void -- cgit v1.2.3