bsinc_tables.h 347 B

1234567891011121314151617
  1. #ifndef CORE_BSINC_TABLES_H
  2. #define CORE_BSINC_TABLES_H
  3. #include "bsinc_defs.h"
  4. struct BSincTable {
  5. float scaleBase, scaleRange;
  6. unsigned int m[BSincScaleCount];
  7. unsigned int filterOffset[BSincScaleCount];
  8. const float *Tab;
  9. };
  10. extern const BSincTable bsinc12;
  11. extern const BSincTable bsinc24;
  12. #endif /* CORE_BSINC_TABLES_H */