🛠️🐜 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.

12 lines
367 B

  1. #ifndef CORE_RESAMPLER_LIMITS_H
  2. #define CORE_RESAMPLER_LIMITS_H
  3. /* Maximum number of samples to pad on the ends of a buffer for resampling.
  4. * Note that the padding is symmetric (half at the beginning and half at the
  5. * end)!
  6. */
  7. constexpr int MaxResamplerPadding{48};
  8. constexpr int MaxResamplerEdge{MaxResamplerPadding >> 1};
  9. #endif /* CORE_RESAMPLER_LIMITS_H */