blob: f29582318c073243229caddd9a4faadcc90842f9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef CORE_BSINC_DEFS_H
#define CORE_BSINC_DEFS_H
/* The number of distinct scale and phase intervals within the filter table. */
constexpr unsigned int BSincScaleBits{4};
constexpr unsigned int BSincScaleCount{1 << BSincScaleBits};
constexpr unsigned int BSincPhaseBits{5};
constexpr unsigned int BSincPhaseCount{1 << BSincPhaseBits};
#endif /* CORE_BSINC_DEFS_H */
|