#ifndef CORE_BSINC_TABLES_H
#define CORE_BSINC_TABLES_H

#include <array>

#include "bsinc_defs.h"


struct BSincTable {
    float scaleBase, scaleRange;
    std::array<unsigned int,BSincScaleCount> m;
    std::array<unsigned int,BSincScaleCount> filterOffset;
    const float *Tab;
};

extern const BSincTable gBSinc12;
extern const BSincTable gBSinc24;

#endif /* CORE_BSINC_TABLES_H */