51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
|
|
#ifndef FRAMELIB_CONVOLVE_H
|
|
#define FRAMELIB_CONVOLVE_H
|
|
|
|
#include "FrameLib_DSP.h"
|
|
#include "../../FrameLib_Dependencies/SpectralProcessor.hpp"
|
|
|
|
class FrameLib_Convolve final : public FrameLib_Processor
|
|
{
|
|
using EdgeMode = spectral_processor<double, FrameLib_DSP::Allocator>::EdgeMode;
|
|
|
|
// Parameter Enums and Info
|
|
|
|
enum ParameterList { kMaxLength, kMode, kEdgeMode };
|
|
enum Mode { kReal, kComplex };
|
|
|
|
struct ParameterInfo : public FrameLib_Parameters::Info { ParameterInfo(); };
|
|
|
|
public:
|
|
|
|
// Constructor
|
|
|
|
FrameLib_Convolve(FrameLib_Context context, FrameLib_Parameters::Serial *serialisedParameters, FrameLib_Proxy *proxy);
|
|
|
|
// Info
|
|
|
|
std::string objectInfo(bool verbose) override;
|
|
std::string inputInfo(unsigned long idx, bool verbose) override;
|
|
std::string outputInfo(unsigned long idx, bool verbose) override;
|
|
|
|
private:
|
|
|
|
// Process
|
|
|
|
void process() override;
|
|
|
|
private:
|
|
|
|
// Data
|
|
|
|
Mode mMode;
|
|
|
|
static ParameterInfo sParamInfo;
|
|
|
|
// Processor
|
|
|
|
spectral_processor<double, FrameLib_DSP::Allocator> mProcessor;
|
|
};
|
|
|
|
#endif
|