| 121 | } |
| 122 | |
| 123 | static inline uint32_t Interp8(uint32_t c1, uint32_t c2) |
| 124 | { |
| 125 | //(c1*5+c2*3)/8; |
| 126 | return Interpolate_2(c1, 5, c2, 3, 3); |
| 127 | } |
| 128 | |
| 129 | static inline uint32_t Interp9(uint32_t c1, uint32_t c2, uint32_t c3) |
| 130 | { |
nothing calls this directly
no test coverage detected