forked from mixxxdj/mixxx
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mixxxdj#1674 from kshitij98/effect_blacklisting
Effect Blacklisting
- Loading branch information
Showing
85 changed files
with
668 additions
and
350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/effects/native/autopaneffect.cpp → src/effects/builtin/autopaneffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "effects/native/autopaneffect.h" | ||
#include "effects/builtin/autopaneffect.h" | ||
|
||
#include <QtDebug> | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
src/effects/native/bessel4lvmixeqeffect.cpp → src/effects/builtin/bessel4lvmixeqeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/effects/native/bessel8lvmixeqeffect.cpp → src/effects/builtin/bessel8lvmixeqeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/effects/native/bessel8lvmixeqeffect.h → src/effects/builtin/bessel8lvmixeqeffect.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...effects/native/biquadfullkilleqeffect.cpp → ...ffects/builtin/biquadfullkilleqeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/effects/native/bitcrushereffect.cpp → src/effects/builtin/bitcrushereffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
|
||
#include <QtDebug> | ||
|
||
#include "effects/builtin/builtinbackend.h" | ||
#include "effects/builtin/flangereffect.h" | ||
#include "effects/builtin/bitcrushereffect.h" | ||
#include "effects/builtin/balanceeffect.h" | ||
#include "effects/builtin/linkwitzriley8eqeffect.h" | ||
#include "effects/builtin/bessel8lvmixeqeffect.h" | ||
#include "effects/builtin/bessel4lvmixeqeffect.h" | ||
#include "effects/builtin/threebandbiquadeqeffect.h" | ||
#include "effects/builtin/biquadfullkilleqeffect.h" | ||
#include "effects/builtin/graphiceqeffect.h" | ||
#include "effects/builtin/parametriceqeffect.h" | ||
#include "effects/builtin/filtereffect.h" | ||
#include "effects/builtin/moogladder4filtereffect.h" | ||
#ifndef __MACAPPSTORE__ | ||
#include "effects/builtin/reverbeffect.h" | ||
#endif | ||
#include "effects/builtin/echoeffect.h" | ||
#include "effects/builtin/autopaneffect.h" | ||
#include "effects/builtin/phasereffect.h" | ||
#include "effects/builtin/loudnesscontoureffect.h" | ||
#include "effects/builtin/metronomeeffect.h" | ||
#include "effects/builtin/tremoloeffect.h" | ||
|
||
BuiltInBackend::BuiltInBackend(QObject* pParent) | ||
: EffectsBackend(pParent, EffectBackendType::BuiltIn) { | ||
// Keep this list in a reasonable order | ||
// Mixing EQs | ||
registerEffect<Bessel4LVMixEQEffect>(); | ||
registerEffect<Bessel8LVMixEQEffect>(); | ||
registerEffect<LinkwitzRiley8EQEffect>(); | ||
registerEffect<ThreeBandBiquadEQEffect>(); | ||
registerEffect<BiquadFullKillEQEffect>(); | ||
// Compensations EQs | ||
registerEffect<GraphicEQEffect>(); | ||
registerEffect<ParametricEQEffect>(); | ||
registerEffect<LoudnessContourEffect>(); | ||
// Fading Effects | ||
registerEffect<FilterEffect>(); | ||
registerEffect<MoogLadder4FilterEffect>(); | ||
registerEffect<BitCrusherEffect>(); | ||
registerEffect<BalanceEffect>(); | ||
// Fancy effects | ||
registerEffect<FlangerEffect>(); | ||
registerEffect<EchoEffect>(); | ||
registerEffect<AutoPanEffect>(); | ||
#ifndef __MACAPPSTORE__ | ||
registerEffect<ReverbEffect>(); | ||
#endif | ||
registerEffect<PhaserEffect>(); | ||
registerEffect<MetronomeEffect>(); | ||
registerEffect<TremoloEffect>(); | ||
} | ||
|
||
BuiltInBackend::~BuiltInBackend() { | ||
//qDebug() << debugString() << "destroyed"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#ifndef BUILTINBACKEND_H | ||
#define BUILTINBACKEND_H | ||
|
||
#include "effects/defs.h" | ||
#include "effects/effectsbackend.h" | ||
|
||
class BuiltInBackend : public EffectsBackend { | ||
Q_OBJECT | ||
public: | ||
BuiltInBackend(QObject* pParent); | ||
virtual ~BuiltInBackend(); | ||
|
||
private: | ||
QString debugString() const { | ||
return "BuiltInBackend"; | ||
} | ||
}; | ||
|
||
#endif /* BUILTINBACKEND_H */ |
2 changes: 1 addition & 1 deletion
2
src/effects/native/echoeffect.cpp → src/effects/builtin/echoeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "effects/native/echoeffect.h" | ||
#include "effects/builtin/echoeffect.h" | ||
|
||
#include <QtDebug> | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/effects/native/filtereffect.cpp → src/effects/builtin/filtereffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/effects/native/flangereffect.cpp → src/effects/builtin/flangereffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "effects/native/flangereffect.h" | ||
#include "effects/builtin/flangereffect.h" | ||
|
||
#include <QtDebug> | ||
|
||
|
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/effects/native/graphiceqeffect.cpp → src/effects/builtin/graphiceqeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...effects/native/linkwitzriley8eqeffect.cpp → ...ffects/builtin/linkwitzriley8eqeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/effects/native/loudnesscontoureffect.cpp → ...effects/builtin/loudnesscontoureffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ffects/native/moogladder4filtereffect.cpp → ...fects/builtin/moogladder4filtereffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/effects/native/parametriceqeffect.cpp → src/effects/builtin/parametriceqeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/effects/native/phasereffect.cpp → src/effects/builtin/phasereffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "effects/native/phasereffect.h" | ||
#include "effects/builtin/phasereffect.h" | ||
|
||
#include <QDebug> | ||
|
||
|
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/effects/native/reverbeffect.cpp → src/effects/builtin/reverbeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "effects/native/reverbeffect.h" | ||
#include "effects/builtin/reverbeffect.h" | ||
|
||
#include <QtDebug> | ||
|
||
|
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...ffects/native/threebandbiquadeqeffect.cpp → ...fects/builtin/threebandbiquadeqeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/effects/native/tremoloeffect.cpp → src/effects/builtin/tremoloeffect.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.