🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
371 B

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