satdump/src-core/dsp/digital/binary_slicer.h
2026-03-24 20:44:06 +01:00

34 lines
No EOL
824 B
C++

#pragma once
#include "dsp/block_simple.h"
namespace satdump
{
namespace ndsp
{
class BinarySlicerBlock : public BlockSimple<float, int8_t>
{
public:
uint32_t process(float *input, uint32_t nsamples, int8_t *output);
public:
BinarySlicerBlock();
~BinarySlicerBlock();
nlohmann::ordered_json get_cfg_list()
{
nlohmann::ordered_json p;
return p;
}
nlohmann::json get_cfg(std::string key) { throw satdump_exception(key); }
Block::cfg_res_t set_cfg(std::string key, nlohmann::json v)
{
throw satdump_exception(key);
return Block::RES_OK;
}
};
} // namespace ndsp
} // namespace satdump