blob: 2e2443e5e0578f6463194298397c5948cab3a8dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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 */
|