Limit convolution processing to the output ambisonic order
[openal-soft.git] / alc / bsinc_defs.h
blob30d1219ee6eaaf2b516dac28b75f024a44afa879
1 #ifndef BSINC_DEFS_H
2 #define BSINC_DEFS_H
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 */