Skip to content

Commit

Permalink
Move AudioEffectsSuite to AudioEffects
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Jan 25, 2024
1 parent 82c14c2 commit 6d2e70a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static effectsuite_t **interpolationTable = nullptr;

/**
* @brief Base Class for Effects
*
* @ingroup effects
*/

class EffectSuiteBase : public AudioEffect {
Expand Down Expand Up @@ -63,6 +63,7 @@ class EffectSuiteBase : public AudioEffect {
* to modulate The parameters of another effect. Class initialised with sample
* rate.
* @author Matthew Hamilton
* @ingroup effects
* @copyright MIT License
*/
class ModulationBaseClass {
Expand Down Expand Up @@ -360,7 +361,7 @@ class ModulationBaseClass {
/**
* @brief SoundGenerator using the ModulationBaseClass
* to generate the samples.
*
* @ingroup effects
* @tparam T
*/
template <class T>
Expand Down Expand Up @@ -391,6 +392,7 @@ class ModulationBaseClass {
* @version 0.1
* @see DelayEffectBase
* @author Matthew Hamilton
* @ingroup effects
* @copyright MIT License
*/
class DelayEffectBase {
Expand Down Expand Up @@ -625,6 +627,7 @@ class DelayEffectBase {
* high, low and band pass filtering
* @see FilterEffectBase
* @author Matthew Hamilton
* @ingroup effects
* @copyright MIT License
*/
class FilterEffectBase : public EffectSuiteBase {
Expand Down Expand Up @@ -994,6 +997,7 @@ class FilterEffectBase : public EffectSuiteBase {
/**
* @brief SimpleLPF
* @author Matthew Hamilton
* @ingroup effects
* @copyright MIT License
*/
class SimpleLPF : public FilterEffectBase {
Expand Down Expand Up @@ -1551,6 +1555,7 @@ class SimpleFlanger : public DelayEffectBase, public EffectSuiteBase {
/**
* @brief EnvelopeFilter
* @author Matthew Hamilton
* @ingroup effects
* @copyright MIT License
*/
class EnvelopeFilter : public FilterEffectBase {
Expand Down
1 change: 1 addition & 0 deletions src/AudioTools.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
#include "AudioCodecs/AudioCodecs.h"
#include "AudioEffects/SoundGenerator.h"
#include "AudioEffects/AudioEffects.h"
#include "AudioEffects/AudioEffectsSuite.h"
#include "AudioEffects/PitchShift.h"
#include "AudioMetaData/MetaData.h"
#include "AudioHttp/AudioHttp.h"
Expand Down

0 comments on commit 6d2e70a

Please sign in to comment.