Make the resampler enum a byte

This commit is contained in:
Chris Robinson 2023-03-07 21:25:38 -08:00
parent a1bd8875ae
commit c6c8a13220

View File

@ -25,7 +25,7 @@ constexpr int MixerFracHalf{MixerFracOne >> 1};
constexpr float GainSilenceThreshold{0.00001f}; /* -100dB */
enum class Resampler {
enum class Resampler : uint8_t {
Point,
Linear,
Cubic,