mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-23 08:24:44 +01:00
another dumb macos fix
This commit is contained in:
parent
fd5970b35a
commit
927bbab330
@ -20,7 +20,7 @@ namespace dsp::taps {
|
|||||||
taps.taps[i] = math::sinc(t * omega) * window(t - half, count) * corr;
|
taps.taps[i] = math::sinc(t * omega) * window(t - half, count) * corr;
|
||||||
}
|
}
|
||||||
if constexpr (std::is_same_v<T, complex_t>) {
|
if constexpr (std::is_same_v<T, complex_t>) {
|
||||||
complex_t cplx = { math::sinc(t * omega), 0.0f };
|
complex_t cplx = { (float)math::sinc(t * omega), 0.0f };
|
||||||
taps.taps[i] = cplx * window(t - half, count) * corr;
|
taps.taps[i] = cplx * window(t - half, count) * corr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user