Rename some cmake target names to avoid conflicts
[openal-soft.git] / core / resampler_limits.h
bloba32807e8e0e1079d23a358f75979b1c004de4a3f
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
6 * end)!
7 */
8 constexpr unsigned int MaxResamplerPadding{48};
10 constexpr unsigned int MaxResamplerEdge{MaxResamplerPadding >> 1};
12 #endif /* CORE_RESAMPLER_LIMITS_H */