diff options
Diffstat (limited to 'common/bsinc_defs.h')
-rw-r--r-- | common/bsinc_defs.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/common/bsinc_defs.h b/common/bsinc_defs.h new file mode 100644 index 00000000..30d1219e --- /dev/null +++ b/common/bsinc_defs.h @@ -0,0 +1,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 */ |