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
{
13 #endif /* CORE_CUBIC_DEFS_H */