mirror of https://github.com/probonopd/MiniDexed
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
532 B
30 lines
532 B
2 years ago
|
#pragma once
|
||
|
|
||
|
#include "test_fixture.h"
|
||
|
|
||
|
#include "../mixing_console_constants.h"
|
||
|
|
||
|
#define AUDIO_SOURCE_FILE "test.wav"
|
||
|
|
||
|
#define SAMPLING_FREQUENCY 44100.0f
|
||
|
|
||
|
#define Active(scenarioKey, FxID) ((scenarioKey & (1 << FxID)) == (1 << FxID))
|
||
|
|
||
|
string getScenarioName(int scenario);
|
||
|
|
||
|
enum FXSwitch
|
||
|
{
|
||
|
FX__Tube = 0,
|
||
|
FX__Chorus,
|
||
|
FX__Flanger,
|
||
|
FX__Orbitone,
|
||
|
FX__Phaser,
|
||
|
FX__Delay,
|
||
|
FX__ShimmerReverb,
|
||
|
FX__PlateReverb
|
||
|
};
|
||
|
|
||
|
class FXScenarioTest : public testing::TestWithParam<int>
|
||
|
{
|
||
|
};
|