Fix issue possibly degrading RADE RX audio quality. (#804)

ms-no-eoo-for-legacy
Mooneer Salem 2025-01-14 10:37:25 -08:00 committed by GitHub
parent 3c4825c844
commit c1b4338faa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ std::shared_ptr<short> RADEReceiveStep::execute(std::shared_ptr<short> inputSamp
// demod per frame processing
for(int i=0; i<nin; i++)
{
input_buf_cplx[i].real = (float)input_buf[i] / 32767.0;
input_buf_cplx[i].real = input_buf[i] / 32767.0;
input_buf_cplx[i].imag = 0.0;
}