-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- separate Constants.h - implementations separated into cpp file
- Loading branch information
Showing
11 changed files
with
226 additions
and
200 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#pragma once | ||
|
||
#include <juce_data_structures/juce_data_structures.h> | ||
|
||
namespace anyMidi { | ||
static const juce::String AUDIO_SETTINGS_FILENAME = "audio_device_settings.xml"; | ||
|
||
static const juce::Identifier ROOT_ID{"AnyMidi"}; | ||
|
||
static const juce::Identifier AUDIO_PROC_ID{"AudioProcessor"}; | ||
static const juce::Identifier DEVICE_MANAGER_ID{"DeviceManager"}; | ||
|
||
static const juce::Identifier GUI_ID{"UserSettings"}; | ||
static const juce::Identifier ATTACK_THRESH_ID{"AttackThreshold"}; | ||
static const juce::Identifier RELEASE_THRESH_ID{"ReleaseThreshold"}; | ||
static const juce::Identifier PARTIALS_ID{"NumParitals"}; | ||
static const juce::Identifier LO_CUT_ID{"LowCutFrequenzy"}; | ||
static const juce::Identifier HI_CUT_ID{"HighCutFrequenzy"}; | ||
static const juce::Identifier LOG_ID{"Log"}; | ||
|
||
static const juce::Identifier ALL_WIN_ID{"AllWindowFunc"}; | ||
static const juce::Identifier CURRENT_WIN_ID{"CurrentWindowFunc"}; | ||
static const juce::Identifier WIN_NODE_ID{"Window"}; | ||
static const juce::Identifier WIN_NAME_ID{"WindowName"}; | ||
|
||
constexpr double msToSec{0.001}; | ||
constexpr double defaultSampleRate{48000}; | ||
} // namespace anyMidi |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.