Support loading as float or ADPCM in alplay
[openal-soft.git] / core / cubic_defs.h
blob33751c9743c6975fd9e31516fec47a6af6292ede
1 #ifndef CORE_CUBIC_DEFS_H
2 #define CORE_CUBIC_DEFS_H
4 /* The number of distinct phase intervals within the cubic filter tables. */
5 constexpr unsigned int CubicPhaseBits{5};
6 constexpr unsigned int CubicPhaseCount{1 << CubicPhaseBits};
8 struct CubicCoefficients {
9 float mCoeffs[4];
10 float mDeltas[4];
13 #endif /* CORE_CUBIC_DEFS_H */