Rename some struct members for clarity
[openal-soft.git] / core / resampler_limits.h
blob9d4cefdae251d90fdf5bcabe7cc7a11c16827d32
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 int MaxResamplerPadding{48};
10 constexpr int MaxResamplerEdge{MaxResamplerPadding >> 1};
12 #endif /* CORE_RESAMPLER_LIMITS_H */