diff options
author | Clyne Sullivan <clyne@clyne-lp.lan> | 2021-08-08 22:02:52 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@clyne-lp.lan> | 2021-08-08 22:02:52 -0400 |
commit | 707b24dd07236243269cf092728f85172e94e8a4 (patch) | |
tree | c136716a5fc9ed9cbf570e24f8f6ab715adc73a2 /templates/1_convolve_simple.cpp |
initial commit
Diffstat (limited to 'templates/1_convolve_simple.cpp')
-rw-r--r-- | templates/1_convolve_simple.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/1_convolve_simple.cpp b/templates/1_convolve_simple.cpp new file mode 100644 index 0000000..0f1973d --- /dev/null +++ b/templates/1_convolve_simple.cpp @@ -0,0 +1,29 @@ +/** + * 1_convolve_simple.cpp + * Written by Clyne Sullivan. + * + * Computes a convolution in the simplest way possible. While the code is brief, it lacks many + * possible optimizations. The convolution's result will not fill the output buffer either, as the + * transient response is not calculated. + */ + +adcsample_t *process_data(adcsample_t *samples, unsigned int size) +{ + // Define our output buffer. SIZE is the largest size of the 'samples' buffer. + static adcsample_t buffer[SIZE]; + + // Define our filter + constexpr unsigned int filter_size = 3; + float filter[filter_size] = { + 0.3333, 0.3333, 0.3333 + }; + + // Begin convolving: + for (int n = 0; n < size - (filter_size - 1); n++) { + buffer[n] = 0; + for (int k = 0; k < filter_size; k++) + buffer[n] += samples[n + k] * filter[k]; + } + + return buffer; +} |