updated namespaces
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
#include <cstdlib>
|
||||
#include <stdint.h>
|
||||
|
||||
namespace trnr::lib::filter {
|
||||
namespace trnr {
|
||||
// 3 band equalizer with high/lowpass filters based on EQ by Chris Johnson.
|
||||
class aw_eq {
|
||||
public:
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
#include <math.h>
|
||||
#include <array>
|
||||
|
||||
namespace trnr::lib::filter {
|
||||
namespace trnr {
|
||||
class chebyshev {
|
||||
public:
|
||||
void set_samplerate(double _samplerate) {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <array>
|
||||
#include <vector>
|
||||
|
||||
namespace trnr::lib::filter {
|
||||
namespace trnr {
|
||||
// Bandpass filter based on YBandpass by Chris Johnson
|
||||
class ybandpass {
|
||||
public:
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <array>
|
||||
#include <vector>
|
||||
|
||||
namespace trnr::lib::filter {
|
||||
namespace trnr {
|
||||
// Highpass filter based on YHighpass by Chris Johnson
|
||||
class yhighpass {
|
||||
public:
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <array>
|
||||
#include <vector>
|
||||
|
||||
namespace trnr::lib::filter {
|
||||
namespace trnr {
|
||||
// Lowpass filter based on YLowpass by Chris Johnson
|
||||
class ylowpass {
|
||||
public:
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <array>
|
||||
#include <vector>
|
||||
|
||||
namespace trnr::lib::filter {
|
||||
namespace trnr {
|
||||
// Notch filter based on YNotch by Chris Johnson
|
||||
class ynotch {
|
||||
public:
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "ybandpass.h"
|
||||
#include "ynotch.h"
|
||||
|
||||
namespace trnr::lib::filter {
|
||||
namespace trnr {
|
||||
|
||||
enum filter_types {
|
||||
lowpass = 0,
|
||||
|
||||
Reference in New Issue
Block a user