temporary fix for the interpolation gain error

pull/6/head
Wojciech Kaczmarski 2023-09-09 12:17:45 +02:00 zatwierdzone przez GitHub
rodzic e3ed6d3767
commit 48c3d8ce14
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -594,7 +594,7 @@ int main(int argc, char* argv[])
//calc the sum of products
for(uint16_t k=0; k<FLT_LEN; k++)
mac+=mem[k]*taps[k];
mac+=mem[k]*taps[k]*sqrtf(10.0); //temporary fix for the interpolation gain error
//shift the delay line right by 1
for(int16_t k=FLT_LEN-1; k>0; k--)