1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Support for Intel Camera Imaging ISP subsystem. 4 * Copyright (c) 2015, Intel Corporation. 5 */ 6 7 #ifndef __IA_CSS_BH_HOST_H 8 #define __IA_CSS_BH_HOST_H 9 10 #include "ia_css_bh_param.h" 11 #include "s3a/s3a_1.0/ia_css_s3a_types.h" 12 13 void 14 ia_css_bh_hmem_decode( 15 struct ia_css_3a_rgby_output *out_ptr, 16 const struct ia_css_bh_table *hmem_buf); 17 18 void 19 ia_css_bh_encode( 20 struct sh_css_isp_bh_params *to, 21 const struct ia_css_3a_config *from, 22 unsigned int size); 23 24 #endif /* __IA_CSS_BH_HOST_H */ 25