Convert half to linear-log space (for p_linear channels)
| 3751 | |
| 3752 | // Convert half to linear-log space (for p_linear channels) |
| 3753 | static inline unsigned short B44ConvertFromLinear(unsigned short h) { |
| 3754 | return g_b44_exp_table[h]; |
| 3755 | } |
| 3756 | |
| 3757 | // Convert linear-log back to half (for p_linear channels) |
| 3758 | static inline unsigned short B44ConvertToLinear(unsigned short h) { |
nothing calls this directly
no outgoing calls
no test coverage detected