blob: 30d1219ee6eaaf2b516dac28b75f024a44afa879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef BSINC_DEFS_H
#define BSINC_DEFS_H
/* The number of distinct scale and phase intervals within the filter table. */
#define BSINC_SCALE_BITS 4
#define BSINC_SCALE_COUNT (1<<BSINC_SCALE_BITS)
#define BSINC_PHASE_BITS 5
#define BSINC_PHASE_COUNT (1<<BSINC_PHASE_BITS)
/* The maximum number of sample points for the bsinc filters. */
#define BSINC_POINTS_MAX 48
#endif /* BSINC_DEFS_H */
|