aboutsummaryrefslogtreecommitdiffstats
path: root/core/bsinc_tables.h
blob: f52cda664000ba4711215b2921e341c302e4257e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef CORE_BSINC_TABLES_H
#define CORE_BSINC_TABLES_H

#include "bsinc_defs.h"


struct BSincTable {
    float scaleBase, scaleRange;
    unsigned int m[BSincScaleCount];
    unsigned int filterOffset[BSincScaleCount];
    const float *Tab;
};

extern const BSincTable bsinc12;
extern const BSincTable bsinc24;

#endif /* CORE_BSINC_TABLES_H */