Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MiniDexed/commit/cc147daec218efeb37cad53db4fd5e533a11528f?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
11 additions and
19 deletions
src/fx.cpp
src/fx.h
src/fx_components.h
src/test/test_fx_helper.cpp
@ -35,5 +35,5 @@ FX::~FX()
void FXBase : : prepare ( )
void FXBase : : prepare ( )
{
{
// does nothing by default
}
}
@ -36,7 +36,6 @@ public:
float32_t getSamplingRate ( ) const ;
float32_t getSamplingRate ( ) const ;
virtual void reset ( ) = 0 ;
virtual void reset ( ) = 0 ;
// virtual void prepare() = 0;
virtual void prepare ( ) ;
virtual void prepare ( ) ;
private :
private :
@ -150,7 +150,7 @@ private:
} ;
} ;
typedef InterpolatedSineOscillator LFO ;
typedef ComplexLFO LFO ;
class JitterGenerator : public FXBase
class JitterGenerator : public FXBase
@ -1,8 +1,8 @@
# include "test_fx_helper.h"
# include "test_fx_helper.h"
string getScenarioName ( int scenario )
std : : st ring getScenarioName ( int scenario )
{
{
stringstream ss ;
std : : st ringstream ss ;
bool fxTube = Active ( scenario , FXSwitch : : FX__Tube ) ;
bool fxTube = Active ( scenario , FXSwitch : : FX__Tube ) ;
bool fxChorus = Active ( scenario , FXSwitch : : FX__Chorus ) ;
bool fxChorus = Active ( scenario , FXSwitch : : FX__Chorus ) ;
@ -26,56 +26,49 @@ string getScenarioName(int scenario)
if ( fxChorus )
if ( fxChorus )
{
{
if ( ! first ) ss < < " , " ;
if ( ! first ) ss < < " , " ;
ss < < " Cho ru s " ;
ss < < " Chrs " ;
first = false ;
first = false ;
}
}
if ( fxPhaser )
if ( fxPhaser )
{
{
if ( ! first ) ss < < " , " ;
if ( ! first ) ss < < " , " ;
ss < < " Pha se r " ;
ss < < " Phsr " ;
first = false ;
first = false ;
}
}
if ( fxOrbitone )
if ( fxOrbitone )
{
{
if ( ! first ) ss < < " , " ;
if ( ! first ) ss < < " , " ;
ss < < " Orbi tone " ;
ss < < " Orbt " ;
first = false ;
first = false ;
}
}
if ( fxFlanger )
if ( fxFlanger )
{
{
if ( ! first ) ss < < " , " ;
if ( ! first ) ss < < " , " ;
ss < < " Flan ge r " ;
ss < < " Flgr " ;
first = false ;
first = false ;
}
}
if ( fxDelay )
if ( fxDelay )
{
{
if ( ! first ) ss < < " , " ;
if ( ! first ) ss < < " , " ;
ss < < " Delay " ;
ss < < " Dely " ;
first = false ;
}
if ( fxDelay )
{
if ( ! first ) ss < < " , " ;
ss < < " Delay " ;
first = false ;
first = false ;
}
}
if ( fxReverb )
if ( fxReverb )
{
{
if ( ! first ) ss < < " , " ;
if ( ! first ) ss < < " , " ;
ss < < " Rever b " ;
ss < < " Revb " ;
first = false ;
first = false ;
}
}
if ( fxShimmer )
if ( fxShimmer )
{
{
if ( ! first ) ss < < " , " ;
if ( ! first ) ss < < " , " ;
ss < < " Shimmer " ;
ss < < " Shim " ;
first = false ;
first = false ;
}
}