mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-04 08:21:16 -05:00
Channelizer tweaks
This commit is contained in:
parent
1eb84d6fa7
commit
f91a508da6
@ -35,6 +35,6 @@ const char filePathSeparator =
|
||||
|
||||
#define DEFAULT_WATERFALL_LPS 30
|
||||
|
||||
#define CHANNELIZER_RATE_MAX 400000
|
||||
#define CHANNELIZER_RATE_MAX 500000
|
||||
|
||||
|
||||
|
@ -326,13 +326,10 @@ int SDRThread::getOptimalChannelCount(long long sampleRate) {
|
||||
optimal_count--;
|
||||
}
|
||||
|
||||
if (optimal_count < 4) {
|
||||
optimal_count = 4;
|
||||
if (optimal_count < 2) {
|
||||
optimal_count = 2;
|
||||
}
|
||||
|
||||
// if (optimal_count > 16) {
|
||||
// optimal_count = 16;
|
||||
// }
|
||||
|
||||
return optimal_count;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user