1 #ifndef CORE_CUBIC_DEFS_H
2 #define CORE_CUBIC_DEFS_H
6 /* The number of distinct phase intervals within the cubic filter tables. */
7 constexpr unsigned int CubicPhaseBits
{5};
8 constexpr unsigned int CubicPhaseCount
{1 << CubicPhaseBits
};
10 struct CubicCoefficients
{
11 alignas(16) std::array
<float,4> mCoeffs
;
12 alignas(16) std::array
<float,4> mDeltas
;
15 #endif /* CORE_CUBIC_DEFS_H */