#include <cstddef>
#include <memory>
#include <sstream>
#include <utility>
#include <vector>
#include "hart_dsp.hpp"
#include "hart_exceptions.hpp"
#include "hart_utils.hpp"
Go to the source code of this file.
|
| #define | HART_DSP_SEQUENCE(...) (DSPSequenceBuilder() >> __VA_ARGS__).build() |
| | Creates a linear DSP sequence using concise chain syntax.
|
| |
| #define | HART_DSP_SEQUENCE_T(SampleType, ...) (hart::DSPSequenceBuilder<SampleType>() >> __VA_ARGS__).build() |
| | Creates a DSP sequence for an explicit sample type.
|
| |