resampler_limits.h 385 B

123456789101112
  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 unsigned int MaxResamplerPadding{48};
  8. constexpr unsigned int MaxResamplerEdge{MaxResamplerPadding >> 1};
  9. #endif /* CORE_RESAMPLER_LIMITS_H */