mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-29 05:22:25 -04:00
FreeDV: fixed cmplx macro definition in freedv_filter
This commit is contained in:
parent
ab49d4bf19
commit
0e1b5cbb4a
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
#include "fdv_arm_math.h"
|
#include "fdv_arm_math.h"
|
||||||
|
|
||||||
#define cmplx(value) (COSF(value) + SINF(value) * I)
|
#define cmplx(value) (std::complex<float>{cos(value), sin(value)})
|
||||||
|
|
||||||
namespace FreeDV
|
namespace FreeDV
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user