]> git.tdb.fi Git - ext/openal.git/blob - core/bsinc_defs.h
Import OpenAL Soft 1.23.1 sources
[ext/openal.git] / core / bsinc_defs.h
1 #ifndef CORE_BSINC_DEFS_H
2 #define CORE_BSINC_DEFS_H
3
4 /* The number of distinct scale and phase intervals within the bsinc filter
5  * tables.
6  */
7 constexpr unsigned int BSincScaleBits{4};
8 constexpr unsigned int BSincScaleCount{1 << BSincScaleBits};
9 constexpr unsigned int BSincPhaseBits{5};
10 constexpr unsigned int BSincPhaseCount{1 << BSincPhaseBits};
11
12 #endif /* CORE_BSINC_DEFS_H */