| 32 | coeffs[1] = x; |
| 33 | } |
| 34 | static inline void init_inter_tab_1d(float* tab, int tabsz) { |
| 35 | float scale = 1.f / tabsz; |
| 36 | for (int i = 0; i < tabsz; ++i, tab += 2) |
| 37 | interpolate_linear(i * scale, tab); |
| 38 | } |
| 39 | |
| 40 | static short* get_table() { |
| 41 | const int ksize = 2; |
no test coverage detected