Skip to content

Commit

Permalink
o comment update.
Browse files Browse the repository at this point in the history
  • Loading branch information
hzeller committed Sep 15, 2012
1 parent f581c5d commit 1118ad9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions convolver.cc
Expand Up @@ -127,8 +127,11 @@ class SndFileHandler :
if (error_) return -1; if (error_) return -1;
// If this is a skip suspiciously at the very end of the file as // If this is a skip suspiciously at the very end of the file as
// reported by stat, we don't do any encoding, just return garbage. // reported by stat, we don't do any encoding, just return garbage.
// Programs sometimes do this apparently. And sometimes not even to the // (otherwise we'd to convolve up to that point).
// very end but 'almost' at the end. So add some FudeOverhang //
// While indexing, media players do this sometimes apparently.
// And sometimes not even to the very end but 'almost' at the end.
// So add some FudeOverhang
static const int kFudgeOverhang = 512; static const int kFudgeOverhang = 512;
// But of course only if this is really a skip, not a regular approaching // But of course only if this is really a skip, not a regular approaching
// end-of-file. // end-of-file.
Expand Down

0 comments on commit 1118ad9

Please sign in to comment.