Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
anti_alias.hh
1//
2// YASE AntiAlias Module Header
3//
4// Copyright (C) 2022 Eric Klavins
5// This file is part of YASE
6//
7// YASE is free software: you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the Free Software
9// Foundation, either version 3 of the License, or (at your option) any later
10// version.
11//
12// YASE is distributed in the hope that it will be useful, but WITHOUT ANY
13// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15// details.
16//
17// You should have received a copy of the GNU General Public License along
18// with YASE. If not, see <https://www.gnu.org/licenses/>.
19//
20
21#ifndef YASE_ANTIALIAS_H
22#define YASE_ANTIALIAS_H
23
24#include "biquad.hh"
25#include "yase.hh"
26
27namespace yase {
28
30
50
51 class AntiAlias : public Module {
52
53 public:
54
55 AntiAlias(Module &m);
56 void init();
57 void update();
58 void set(double frequency, double resonance);
59
60 private:
61
62 int signal,
63 module_signal_out,
64 lowpass_signal_in,
65 lowpass_signal_out;
66 Module * module;
67 Biquad lowpass;
68
69 };
70
71}
72
73#endif
An anti-aliasing filter.
Definition anti_alias.hh:51
void update()
Definition anti_alias.cc:65
void init()
Definition anti_alias.cc:56
Standard Biquad filters adapated from https://www.w3.org/TR/audio-eq-cookbook/.
Definition biquad.hh:36
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24