diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/phase_shifter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/phase_shifter.h b/common/phase_shifter.h index b9c889c2..e1a83dab 100644 --- a/common/phase_shifter.h +++ b/common/phase_shifter.h @@ -15,6 +15,8 @@ #include "alspan.h" +struct NoInit { }; + /* Implements a wide-band +90 degree phase-shift. Note that this should be * given one sample less of a delay (FilterSize/2 - 1) compared to the direct * signal delay (FilterSize/2) to properly align. @@ -71,6 +73,8 @@ struct PhaseShifterT { } } + PhaseShifterT(NoInit) { } + void process(al::span<float> dst, const float *RESTRICT src) const; private: |