diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-12-29 20:53:46 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-12-29 20:53:46 +0000 |
| commit | 440ccee46b4d02e1509686cc63875645fb24254f (patch) | |
| tree | 0ea11a993b4c3ed26623c06b20118c1f30fe1056 /src/lib | |
| parent | 9920ca2d0d279b87f7bdeede6248699e1570e5c2 (diff) | |
Reduce the maximum video readahead.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/butler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |
