|
| std::vector< float > | create_blackman_table (int N) |
| |
| template<int M> |
| auto | create_kernels (int N, float lowpass_cutoff, float highpass_cutoff) |
| |
| template<int M> |
| auto | create_filter_response (int N, float lowpass_cutoff, float highpass_cutoff) |
| |
| constexpr double | make_vca (double signal) |
| |
| auto | convolution (const std::vector< float > &signal, const std::vector< float > &reverb) |
| |
| template<class spectrum_t > |
| auto | overlay_add_sub (const spectrum_t &spectrum_left, const spectrum_t &spectrum_right, const std::vector< std::pair< spectrum_t, spectrum_t > > &filters, std::vector< std::future< std::pair< std::vector< float >, std::vector< float > > > > &done, bool first_long_part) |
| |