Remove a left-over assignment
[openal-soft.git] / core / bsinc_tables.h
blobeab894ce96d62c848ffc3a0dff8b472025e19cec
1 #ifndef CORE_BSINC_TABLES_H
2 #define CORE_BSINC_TABLES_H
4 #include <array>
6 #include "alspan.h"
7 #include "bsinc_defs.h"
10 struct BSincTable {
11 float scaleBase, scaleRange;
12 std::array<unsigned int,BSincScaleCount> m;
13 std::array<unsigned int,BSincScaleCount> filterOffset;
14 al::span<const float> Tab;
17 extern const BSincTable gBSinc12;
18 extern const BSincTable gBSinc24;
20 #endif /* CORE_BSINC_TABLES_H */