Code clean up

pull/764/head
jnonis 7 months ago
parent 509155573c
commit 17105a9c42
  1. 4
      src/effect_base.cpp
  2. 4
      src/effect_base.h
  3. 6
      src/effect_bigmuff.cpp
  4. 6
      src/effect_bigmuff.h
  5. 6
      src/effect_ds1.cpp
  6. 6
      src/effect_ds1.h
  7. 4
      src/effect_lpf.h
  8. 4
      src/effects.h

@ -1,3 +1,7 @@
/*
* Base AudioEffect interface
* Javier Nonis (https://github.com/jnonis) - 2024
*/
#include <circle/logger.h> #include <circle/logger.h>
#include "effect_base.h" #include "effect_base.h"

@ -1,3 +1,7 @@
/*
* Base AudioEffect interface
* Javier Nonis (https://github.com/jnonis) - 2024
*/
#ifndef _EFFECT_BASE_H #ifndef _EFFECT_BASE_H
#define _EFFECT_BASE_H #define _EFFECT_BASE_H

@ -1,3 +1,9 @@
/*
* MOD Big Muff Port
* Ported from https://github.com/moddevices/mod-distortion/tree/master/bigmuff
*
* Javier Nonis (https://github.com/jnonis) - 2024
*/
#include <circle/logger.h> #include <circle/logger.h>
#include "effect_bigmuff.h" #include "effect_bigmuff.h"
#include "moddistortion/OverSample.h" #include "moddistortion/OverSample.h"

@ -1,3 +1,9 @@
/*
* MOD Big Muff Port
* Ported from https://github.com/moddevices/mod-distortion/tree/master/bigmuff
*
* Javier Nonis (https://github.com/jnonis) - 2024
*/
#ifndef _EFFECT_BIGMUFF_H #ifndef _EFFECT_BIGMUFF_H
#define _EFFECT_BIGMUFF_H #define _EFFECT_BIGMUFF_H

@ -1,3 +1,9 @@
/*
* MOD DS-1 Port
* Ported from https://github.com/moddevices/mod-distortion/tree/master/ds1
*
* Javier Nonis (https://github.com/jnonis) - 2024
*/
#include <circle/logger.h> #include <circle/logger.h>
#include "effect_ds1.h" #include "effect_ds1.h"
#include "moddistortion/OverSample.h" #include "moddistortion/OverSample.h"

@ -1,3 +1,9 @@
/*
* MOD DS-1 Port
* Ported from https://github.com/moddevices/mod-distortion/tree/master/ds1
*
* Javier Nonis (https://github.com/jnonis) - 2024
*/
#ifndef _EFFECT_DS1_H #ifndef _EFFECT_DS1_H
#define _EFFECT_DS1_H #define _EFFECT_DS1_H

@ -1,3 +1,7 @@
/*
* Stereo Low Pass Filter
* Javier Nonis (https://github.com/jnonis) - 2024
*/
#ifndef _EFFECT_LPF_H #ifndef _EFFECT_LPF_H
#define _EFFECT_LPF_H #define _EFFECT_LPF_H

@ -1,3 +1,7 @@
/*
* AudioEffect Utilities
* Javier Nonis (https://github.com/jnonis) - 2024
*/
#ifndef _EFFECTS_H #ifndef _EFFECTS_H
#define _EFFECTS_H #define _EFFECTS_H

Loading…
Cancel
Save