4 /* The number of distinct scale and phase intervals within the filter table. */
5 #define BSINC_SCALE_BITS 4
6 #define BSINC_SCALE_COUNT (1<<BSINC_SCALE_BITS)
7 #define BSINC_PHASE_BITS 5
8 #define BSINC_PHASE_COUNT (1<<BSINC_PHASE_BITS)
10 /* The maximum number of sample points for the bsinc filters. */
11 #define BSINC_POINTS_MAX 48
13 #endif /* BSINC_DEFS_H */