mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-01 05:47:11 +01:00
138 lines
3.9 KiB
C++
138 lines
3.9 KiB
C++
#pragma once
|
|
#include <dsp/block.h>
|
|
|
|
namespace dsp {
|
|
class ComplexToStereo : public generic_block<ComplexToStereo> {
|
|
public:
|
|
ComplexToStereo() {}
|
|
|
|
ComplexToStereo(stream<complex_t>* in) { init(in); }
|
|
|
|
~ComplexToStereo() { generic_block<ComplexToStereo>::stop(); }
|
|
|
|
static_assert(sizeof(complex_t) == sizeof(stereo_t));
|
|
|
|
void init(stream<complex_t>* in) {
|
|
_in = in;
|
|
generic_block<ComplexToStereo>::registerInput(_in);
|
|
generic_block<ComplexToStereo>::registerOutput(&out);
|
|
}
|
|
|
|
void setInput(stream<complex_t>* in) {
|
|
std::lock_guard<std::mutex> lck(generic_block<ComplexToStereo>::ctrlMtx);
|
|
generic_block<ComplexToStereo>::tempStop();
|
|
generic_block<ComplexToStereo>::unregisterInput(_in);
|
|
_in = in;
|
|
generic_block<ComplexToStereo>::registerInput(_in);
|
|
generic_block<ComplexToStereo>::tempStart();
|
|
}
|
|
|
|
int run() {
|
|
count = _in->read();
|
|
if (count < 0) { return -1; }
|
|
|
|
if (out.aquire() < 0) { return -1; }
|
|
memcpy(out.data, _in->data, count * sizeof(complex_t));
|
|
|
|
_in->flush();
|
|
out.write(count);
|
|
return count;
|
|
}
|
|
|
|
stream<stereo_t> out;
|
|
|
|
private:
|
|
float avg;
|
|
int count;
|
|
stream<complex_t>* _in;
|
|
|
|
};
|
|
|
|
class ComplexToReal : public generic_block<ComplexToReal> {
|
|
public:
|
|
ComplexToReal() {}
|
|
|
|
ComplexToReal(stream<complex_t>* in) { init(in); }
|
|
|
|
~ComplexToReal() { generic_block<ComplexToReal>::stop(); }
|
|
|
|
void init(stream<complex_t>* in) {
|
|
_in = in;
|
|
generic_block<ComplexToReal>::registerInput(_in);
|
|
generic_block<ComplexToReal>::registerOutput(&out);
|
|
}
|
|
|
|
void setInput(stream<complex_t>* in) {
|
|
std::lock_guard<std::mutex> lck(generic_block<ComplexToReal>::ctrlMtx);
|
|
generic_block<ComplexToReal>::tempStop();
|
|
generic_block<ComplexToReal>::unregisterInput(_in);
|
|
_in = in;
|
|
generic_block<ComplexToReal>::registerInput(_in);
|
|
generic_block<ComplexToReal>::tempStart();
|
|
}
|
|
|
|
int run() {
|
|
count = _in->read();
|
|
if (count < 0) { return -1; }
|
|
|
|
if (out.aquire() < 0) { return -1; }
|
|
volk_32fc_deinterleave_real_32f(out.data, (lv_32fc_t*)_in->data, count);
|
|
|
|
_in->flush();
|
|
out.write(count);
|
|
return count;
|
|
}
|
|
|
|
stream<float> out;
|
|
|
|
private:
|
|
float avg;
|
|
int count;
|
|
stream<complex_t>* _in;
|
|
|
|
};
|
|
|
|
class ComplexToImag : public generic_block<ComplexToImag> {
|
|
public:
|
|
ComplexToImag() {}
|
|
|
|
ComplexToImag(stream<complex_t>* in) { init(in); }
|
|
|
|
~ComplexToImag() { generic_block<ComplexToImag>::stop(); }
|
|
|
|
void init(stream<complex_t>* in) {
|
|
_in = in;
|
|
generic_block<ComplexToImag>::registerInput(_in);
|
|
generic_block<ComplexToImag>::registerOutput(&out);
|
|
}
|
|
|
|
void setInput(stream<complex_t>* in) {
|
|
std::lock_guard<std::mutex> lck(generic_block<ComplexToImag>::ctrlMtx);
|
|
generic_block<ComplexToImag>::tempStop();
|
|
generic_block<ComplexToImag>::unregisterInput(_in);
|
|
_in = in;
|
|
generic_block<ComplexToImag>::registerInput(_in);
|
|
generic_block<ComplexToImag>::tempStart();
|
|
}
|
|
|
|
int run() {
|
|
count = _in->read();
|
|
if (count < 0) { return -1; }
|
|
|
|
if (out.aquire() < 0) { return -1; }
|
|
volk_32fc_deinterleave_imag_32f(out.data, (lv_32fc_t*)_in->data, count);
|
|
|
|
_in->flush();
|
|
out.write(count);
|
|
return count;
|
|
}
|
|
|
|
stream<float> out;
|
|
|
|
private:
|
|
float avg;
|
|
int count;
|
|
stream<complex_t>* _in;
|
|
|
|
};
|
|
} |