| 115 | } |
| 116 | |
| 117 | static inline uint32_t Interp7(uint32_t c1, uint32_t c2, uint32_t c3) |
| 118 | { |
| 119 | //(c1*6+c2+c3)/8; |
| 120 | return Interpolate_3(c1, 6, c2, 1, c3, 1, 3); |
| 121 | } |
| 122 | |
| 123 | static inline uint32_t Interp8(uint32_t c1, uint32_t c2) |
| 124 | { |
nothing calls this directly
no test coverage detected