blob: b024f0c3d600f5ac2d75a984b1c6ca5bc58d2573 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#ifndef FILTER_SPLITTER_H
#define FILTER_SPLITTER_H
#include <cstddef>
/* Band splitter. Splits a signal into two phase-matching frequency bands. */
template<typename Real>
class BandSplitterR {
Real coeff{0.0f};
Real lp_z1{0.0f};
Real lp_z2{0.0f};
Real ap_z1{0.0f};
public:
BandSplitterR() = default;
BandSplitterR(const BandSplitterR&) = default;
BandSplitterR(Real f0norm) { init(f0norm); }
void init(Real f0norm);
void clear() noexcept { lp_z1 = lp_z2 = ap_z1 = 0.0f; }
void process(Real *hpout, Real *lpout, const Real *input, const size_t count);
void applyHfScale(Real *samples, const Real hfscale, const size_t count);
/* The all-pass portion of the band splitter. Applies the same phase shift
* without splitting the signal. Note that each use of this method is
* indepedent, it does not track history between calls.
*/
void applyAllpass(Real *samples, const size_t count) const;
};
using BandSplitter = BandSplitterR<float>;
#endif /* FILTER_SPLITTER_H */
|