16 lines
405 B
C
16 lines
405 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 = 4;
|
|
/// 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
|