diff options
author | André Nusser <andre.nusser@googlemail.com> | 2016-01-29 13:18:33 +0100 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-01-29 13:18:33 +0100 |
commit | 1137dade95adc73c494e748f56b2dc0ffd978ac2 (patch) | |
tree | edd550852a18eac94f7283be889a4704f8780e56 /src/audiocache.cc | |
parent | 1b32041bb54e1c9310853c9942498ec223d8106a (diff) |
wip 3
Diffstat (limited to 'src/audiocache.cc')
-rw-r--r-- | src/audiocache.cc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/audiocache.cc b/src/audiocache.cc index 2ca0616..7856f4a 100644 --- a/src/audiocache.cc +++ b/src/audiocache.cc @@ -28,7 +28,6 @@ #include <mutex> -#include <string.h> #include <stdio.h> #include <assert.h> @@ -105,7 +104,15 @@ sample_t* AudioCache::open(const AudioFile& file, size_t initial_samples_needed, } else { - // cropped_size is the preload chunk size cropped to sample length. + // Make sure that the preload-data made available to the next() calls + // fit on frame boundary: + // + // [ all preloaded data ] + // [ initial ][ biggest multiple of full frames ][ the rest ] + // \ / + // \----------------------v-------------------/ + // cropped_size + cropped_size = file.preloadedsize - c.localpos; cropped_size -= cropped_size % framesize; cropped_size += initial_samples_needed; |