17 lines
406 B
C
17 lines
406 B
C
|
#ifndef AUDIO_H
|
||
|
#define AUDIO_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
static constexpr int AudioSampleRate = 24000;
|
||
|
/// Počet generátorů.
|
||
|
static constexpr unsigned int maxGens = 12;
|
||
|
/// Kladné maximum vzorku.
|
||
|
static constexpr int maxValue = 30000;
|
||
|
/// Záporné maximum vzorku.
|
||
|
static constexpr int minValue = -maxValue;
|
||
|
///
|
||
|
static constexpr unsigned int maxAmplt = (1U<<27);
|
||
|
|
||
|
#endif // AUDIO_H
|