mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-18 22:23:04 +01:00
222 lines
6.3 KiB
C++
222 lines
6.3 KiB
C++
#pragma once
|
|
#include <dsp/block.h>
|
|
#include <fftw3.h>
|
|
#include <volk/volk.h>
|
|
#include <spdlog/spdlog.h>
|
|
#include <string.h>
|
|
|
|
namespace dsp {
|
|
template <class T>
|
|
class FrequencyXlator : public generic_block<FrequencyXlator<T>> {
|
|
public:
|
|
FrequencyXlator() {}
|
|
|
|
FrequencyXlator(stream<complex_t>* in, float sampleRate, float freq) { init(in, sampleRate, freq); }
|
|
|
|
~FrequencyXlator() {
|
|
generic_block<FrequencyXlator<T>>::stop();
|
|
}
|
|
|
|
void init(stream<complex_t>* in, float sampleRate, float freq) {
|
|
_in = in;
|
|
_sampleRate = sampleRate;
|
|
_freq = freq;
|
|
phase = lv_cmake(1.0f, 0.0f);
|
|
phaseDelta = lv_cmake(std::cos((_freq / _sampleRate) * 2.0f * FL_M_PI), std::sin((_freq / _sampleRate) * 2.0f * FL_M_PI));
|
|
generic_block<FrequencyXlator<T>>::registerInput(_in);
|
|
generic_block<FrequencyXlator<T>>::registerOutput(&out);
|
|
}
|
|
|
|
void setInputSize(stream<complex_t>* in) {
|
|
std::lock_guard<std::mutex> lck(generic_block<FrequencyXlator<T>>::ctrlMtx);
|
|
generic_block<FrequencyXlator<T>>::tempStop();
|
|
generic_block<FrequencyXlator<T>>::unregisterInput(_in);
|
|
_in = in;
|
|
generic_block<FrequencyXlator<T>>::registerInput(_in);
|
|
generic_block<FrequencyXlator<T>>::tempStart();
|
|
}
|
|
|
|
void setSampleRate(float sampleRate) {
|
|
// No need to restart
|
|
_sampleRate = sampleRate;
|
|
phaseDelta = lv_cmake(std::cos((_freq / _sampleRate) * 2.0f * FL_M_PI), std::sin((_freq / _sampleRate) * 2.0f * FL_M_PI));
|
|
}
|
|
|
|
float getSampleRate() {
|
|
return _sampleRate;
|
|
}
|
|
|
|
void setFrequency(float freq) {
|
|
// No need to restart
|
|
_freq = freq;
|
|
phaseDelta = lv_cmake(std::cos((_freq / _sampleRate) * 2.0f * FL_M_PI), std::sin((_freq / _sampleRate) * 2.0f * FL_M_PI));
|
|
}
|
|
|
|
float getFrequency() {
|
|
return _freq;
|
|
}
|
|
|
|
int run() {
|
|
count = _in->read();
|
|
if (count < 0) { return -1; }
|
|
|
|
if (out.aquire() < 0) { return -1; }
|
|
|
|
// TODO: Do float xlation
|
|
if constexpr (std::is_same_v<T, float>) {
|
|
spdlog::error("XLATOR NOT IMPLEMENTED FOR FLOAT");
|
|
}
|
|
if constexpr (std::is_same_v<T, complex_t>) {
|
|
volk_32fc_s32fc_x2_rotator_32fc((lv_32fc_t*)out.data, (lv_32fc_t*)_in->data, phaseDelta, &phase, count);
|
|
}
|
|
|
|
_in->flush();
|
|
out.write(count);
|
|
return count;
|
|
}
|
|
|
|
stream<complex_t> out;
|
|
|
|
private:
|
|
int count;
|
|
float _sampleRate;
|
|
float _freq;
|
|
lv_32fc_t phaseDelta;
|
|
lv_32fc_t phase;
|
|
stream<complex_t>* _in;
|
|
|
|
};
|
|
|
|
class AGC : public generic_block<AGC> {
|
|
public:
|
|
AGC() {}
|
|
|
|
AGC(stream<float>* in, float ratio) { init(in, ratio); }
|
|
|
|
~AGC() { generic_block<AGC>::stop(); }
|
|
|
|
void init(stream<float>* in, float ratio) {
|
|
_in = in;
|
|
_ratio = ratio;
|
|
generic_block<AGC>::registerInput(_in);
|
|
generic_block<AGC>::registerOutput(&out);
|
|
}
|
|
|
|
void setInput(stream<float>* in) {
|
|
std::lock_guard<std::mutex> lck(generic_block<AGC>::ctrlMtx);
|
|
generic_block<AGC>::tempStop();
|
|
generic_block<AGC>::unregisterInput(_in);
|
|
_in = in;
|
|
generic_block<AGC>::registerInput(_in);
|
|
generic_block<AGC>::tempStart();
|
|
}
|
|
|
|
int run() {
|
|
count = _in->read();
|
|
if (count < 0) { return -1; }
|
|
|
|
if (out.aquire() < 0) { return -1; }
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
level = (fabsf(_in->data[i]) * _ratio) + (level * (1.0f - _ratio));
|
|
out.data[i] = _in->data[i] / level;
|
|
}
|
|
|
|
|
|
|
|
_in->flush();
|
|
out.write(count);
|
|
return count;
|
|
}
|
|
|
|
stream<float> out;
|
|
|
|
private:
|
|
int count;
|
|
float level = 1.0f;
|
|
float _ratio;
|
|
stream<float>* _in;
|
|
|
|
};
|
|
|
|
template <class T>
|
|
class Volume : public generic_block<Volume<T>> {
|
|
public:
|
|
Volume() {}
|
|
|
|
Volume(stream<T>* in, float volume) { init(in, volume); }
|
|
|
|
~Volume() { generic_block<Volume<T>>::stop(); }
|
|
|
|
void init(stream<T>* in, float volume) {
|
|
_in = in;
|
|
_volume = volume;
|
|
generic_block<Volume<T>>::registerInput(_in);
|
|
generic_block<Volume<T>>::registerOutput(&out);
|
|
}
|
|
|
|
void setInputSize(stream<T>* in) {
|
|
std::lock_guard<std::mutex> lck(generic_block<Volume<T>>::ctrlMtx);
|
|
generic_block<Volume<T>>::tempStop();
|
|
generic_block<Volume<T>>::unregisterInput(_in);
|
|
_in = in;
|
|
generic_block<Volume<T>>::registerInput(_in);
|
|
generic_block<Volume<T>>::tempStart();
|
|
}
|
|
|
|
void setVolume(float volume) {
|
|
_volume = volume;
|
|
level = powf(_volume, 2);
|
|
}
|
|
|
|
float getVolume() {
|
|
return _volume;
|
|
}
|
|
|
|
void setMuted(bool muted) {
|
|
_muted = muted;
|
|
}
|
|
|
|
bool getMuted() {
|
|
return _muted;
|
|
}
|
|
|
|
int run() {
|
|
count = _in->read();
|
|
if (count < 0) { return -1; }
|
|
|
|
if (out.aquire() < 0) { return -1; }
|
|
|
|
if (_muted) {
|
|
if constexpr (std::is_same_v<T, stereo_t>) {
|
|
memset(out.data, 0, sizeof(stereo_t) * count);
|
|
}
|
|
else {
|
|
memset(out.data, 0, sizeof(float) * count);
|
|
}
|
|
}
|
|
else {
|
|
if constexpr (std::is_same_v<T, stereo_t>) {
|
|
volk_32f_s32f_multiply_32f((float*)out.data, (float*)_in->data, level, count * 2);
|
|
}
|
|
else {
|
|
volk_32f_s32f_multiply_32f((float*)out.data, (float*)_in->data, level, count);
|
|
}
|
|
}
|
|
|
|
_in->flush();
|
|
out.write(count);
|
|
return count;
|
|
}
|
|
|
|
stream<T> out;
|
|
|
|
private:
|
|
int count;
|
|
float level = 1.0f;
|
|
float _volume = 1.0f;
|
|
bool _muted = false;
|
|
stream<T>* _in;
|
|
|
|
};
|
|
} |