🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
347 B

  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 */