mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-20 07:12:43 +00:00
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
#pragma once
|
|
#include "../processor.h"
|
|
|
|
// TODO: This block is useless and weird, get rid of it
|
|
namespace dsp::audio {
|
|
class Volume : public Processor<stereo_t, stereo_t> {
|
|
using base_type = Processor<stereo_t, stereo_t>;
|
|
public:
|
|
Volume() {}
|
|
|
|
Volume(stream<stereo_t>* in, double volume, bool muted) { init(in, volume, muted); }
|
|
|
|
void init(stream<stereo_t>* in, double volume, bool muted) {
|
|
_volume = powf(volume, 2);
|
|
_muted = muted;
|
|
base_type::init(in);
|
|
}
|
|
|
|
void setVolume(double volume) {
|
|
assert(base_type::_block_init);
|
|
std::lock_guard<std::recursive_mutex> lck(base_type::ctrlMtx);
|
|
_volume = powf(volume, 2);
|
|
}
|
|
|
|
void setMuted(bool muted) {
|
|
assert(base_type::_block_init);
|
|
std::lock_guard<std::recursive_mutex> lck(base_type::ctrlMtx);
|
|
_muted = muted;
|
|
}
|
|
|
|
bool getMuted() {
|
|
assert(base_type::_block_init);
|
|
std::lock_guard<std::recursive_mutex> lck(base_type::ctrlMtx);
|
|
return _muted;
|
|
}
|
|
|
|
inline int process(int count, const stereo_t* in, stereo_t* out) {
|
|
volk_32f_s32f_multiply_32f((float*)out, (float*)in, _muted ? 0.0f : _volume, count * 2);
|
|
return count;
|
|
}
|
|
|
|
virtual int run() {
|
|
int count = base_type::_in->read();
|
|
if (count < 0) { return -1; }
|
|
|
|
process(count, base_type::_in->readBuf, base_type::out.writeBuf);
|
|
|
|
base_type::_in->flush();
|
|
if (!base_type::out.swap(count)) { return -1; }
|
|
return count;
|
|
}
|
|
|
|
private:
|
|
float _volume;
|
|
bool _muted;
|
|
|
|
};
|
|
} |