add options for fftw3 precisions

configureFromFullPathDevice for all devices now trim() components
This commit is contained in:
2025-09-23 21:16:54 +03:00
parent a61c8477c7
commit daab41e41e
8 changed files with 31 additions and 9 deletions

View File

@@ -1067,7 +1067,7 @@ PIString PIPeer::constructFullPathDevice() const {
void PIPeer::configureFromFullPathDevice(const PIString & full_path) {
PIStringList pl = full_path.split(":");
for (int i = 0; i < pl.size_s(); ++i) {
PIString p(pl[i]);
PIString p(pl[i].trimmed());
switch (i) {
case 0: changeName(p); break;
case 1: setTrustPeerName(p); break;