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_CONVERSION_HOST_H 8 #define __IA_CSS_CONVERSION_HOST_H 9 10 #include "ia_css_conversion_types.h" 11 #include "ia_css_conversion_param.h" 12 13 extern const struct ia_css_conversion_config default_conversion_config; 14 15 void 16 ia_css_conversion_encode( 17 struct sh_css_isp_conversion_params *to, 18 const struct ia_css_conversion_config *from, 19 unsigned int size); 20 21 #endif /* __IA_CSS_CONVERSION_HOST_H */ 22