diff options
author | Josh Blum | 2012-09-20 18:10:34 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-20 18:10:34 -0700 |
commit | 70d6105c6a5356e2b5dadeae45751239c080cace (patch) | |
tree | 7cc4ac9c1ecf3cd83f9c686c533751596ec984ac /lib/block_allocator.cpp | |
parent | 6fed7c8bd373fcde314afeac8e0b110b642c31c6 (diff) | |
download | sandhi-70d6105c6a5356e2b5dadeae45751239c080cace.tar.gz sandhi-70d6105c6a5356e2b5dadeae45751239c080cace.tar.bz2 sandhi-70d6105c6a5356e2b5dadeae45751239c080cace.zip |
fun with inlines
Diffstat (limited to 'lib/block_allocator.cpp')
-rw-r--r-- | lib/block_allocator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/block_allocator.cpp b/lib/block_allocator.cpp index e26f350..c5f4637 100644 --- a/lib/block_allocator.cpp +++ b/lib/block_allocator.cpp @@ -21,8 +21,8 @@ using namespace gnuradio; -const size_t AT_LEAST_DEFAULT_ITEMS = 1 << 14; -const size_t AHH_TOO_MANY_BYTES = 1 << 16; //TODO +const size_t AT_LEAST_DEFAULT_ITEMS = 1 << 17; +const size_t AHH_TOO_MANY_BYTES = 1 << 20; //TODO const size_t THIS_MANY_BUFFERS = 32; const double EDGE_CASE_MITIGATION = 8.0; //edge case mitigation constant |