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