SDRPlusPlus/src/dsp/types.h

13 wiersze
165 B
C++

#pragma once
namespace dsp {
struct complex_t {
float q;
float i;
};
struct StereoFloat_t {
float l;
float r;
};
};