2021-04-28 12:43:51 +08:00
|
|
|
#ifndef CORE_BSINC_DEFS_H
|
|
|
|
#define CORE_BSINC_DEFS_H
|
|
|
|
|
2023-05-03 18:59:33 +08:00
|
|
|
/* The number of distinct scale and phase intervals within the bsinc filter
|
|
|
|
* tables.
|
|
|
|
*/
|
2021-04-28 12:43:51 +08:00
|
|
|
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 */
|