Convert linear-log back to half (for p_linear channels)
| 3756 | |
| 3757 | // Convert linear-log back to half (for p_linear channels) |
| 3758 | static inline unsigned short B44ConvertToLinear(unsigned short h) { |
| 3759 | return g_b44_log_table[h]; |
| 3760 | } |
| 3761 | |
| 3762 | // Unpack one 4x4 block from B44 compressed 14 bytes (matches OpenEXR unpack14) |
| 3763 | static void UnpackB44Block(unsigned short dst[16], const unsigned char src[14]) { |
nothing calls this directly
no outgoing calls
no test coverage detected