Skip to content
This repository has been archived by the owner on Mar 28, 2022. It is now read-only.

Commit

Permalink
Increased maximum allowed file length.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Nesbit committed Feb 22, 2012
1 parent 888b151 commit 313a5d3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Params.h
Expand Up @@ -16,7 +16,11 @@ namespace Params {
const uint Channels = 1;
const float SecondsPerChunk = 10.0f;
const uint BytesPerSample = 4; // floats
#ifdef _LP64
const uint MaxSamples = 133000000; // 201 minutes @ 11025 samples per second.
#else
const uint MaxSamples = 66977792; // TODO: Remove this, or set it intelligently, at least. Good for 32-bit analyzer.
#endif
}
}

Expand Down

0 comments on commit 313a5d3

Please sign in to comment.