From: Carl Hetherington Date: Fri, 29 Dec 2017 20:53:46 +0000 (+0000) Subject: Reduce the maximum video readahead. X-Git-Tag: v2.11.31~9 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=440ccee46b4d02e1509686cc63875645fb24254f;p=dcpomatic.git Reduce the maximum video readahead. --- diff --git a/src/lib/butler.cc b/src/lib/butler.cc index a78a3b71b..fd4b824a5 100644 --- a/src/lib/butler.cc +++ b/src/lib/butler.cc @@ -37,7 +37,7 @@ using boost::optional; /** Minimum video readahead in frames */ #define MINIMUM_VIDEO_READAHEAD 10 /** Maximum video readahead in frames; should never be reached unless there are bugs in Player */ -#define MAXIMUM_VIDEO_READAHEAD 240 +#define MAXIMUM_VIDEO_READAHEAD 24 /** Minimum audio readahead in frames */ #define MINIMUM_AUDIO_READAHEAD (48000*5) /** Minimum audio readahead in frames; should never be reached unless there are bugs in Player */