18 lines
336 B
C
18 lines
336 B
C
#ifndef BSINC_TABLES_H
|
|
#define BSINC_TABLES_H
|
|
|
|
#include "bsinc_defs.h"
|
|
|
|
|
|
struct BSincTable {
|
|
float scaleBase, scaleRange;
|
|
unsigned int m[BSINC_SCALE_COUNT];
|
|
unsigned int filterOffset[BSINC_SCALE_COUNT];
|
|
const float *Tab;
|
|
};
|
|
|
|
extern const BSincTable bsinc12;
|
|
extern const BSincTable bsinc24;
|
|
|
|
#endif /* BSINC_TABLES_H */
|