bsinc_defs.h 382 B

123456789101112
  1. #ifndef CORE_BSINC_DEFS_H
  2. #define CORE_BSINC_DEFS_H
  3. /* The number of distinct scale and phase intervals within the bsinc filter
  4. * tables.
  5. */
  6. constexpr unsigned int BSincScaleBits{4};
  7. constexpr unsigned int BSincScaleCount{1 << BSincScaleBits};
  8. constexpr unsigned int BSincPhaseBits{5};
  9. constexpr unsigned int BSincPhaseCount{1 << BSincPhaseBits};
  10. #endif /* CORE_BSINC_DEFS_H */