/* SPDX-License-Identifier: GPL-2.0 */ /* * Support for Medifield PNW Camera Imaging ISP subsystem. * * Copyright (c) 2010 Intel Corporation. All Rights Reserved. * * Copyright (c) 2010 Silicon Hive www.siliconhive.com. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * */ #ifndef __ATOMISP_TABLES_H__ #define __ATOMISP_TABLES_H__ #include "sh_css_params.h" /*Sepia image effect table*/ static struct ia_css_cc_config sepia_cc_config = …; /*Negative image effect table*/ static struct ia_css_cc_config nega_cc_config = …; /*Mono image effect table*/ static struct ia_css_cc_config mono_cc_config = …; /*Skin whiten image effect table*/ static struct ia_css_macc_table skin_low_macc_table = …; static struct ia_css_macc_table skin_medium_macc_table = …; static struct ia_css_macc_table skin_high_macc_table = …; /*Blue enhencement image effect table*/ static struct ia_css_macc_table blue_macc_table = …; /*Green enhencement image effect table*/ static struct ia_css_macc_table green_macc_table = …; static struct ia_css_ctc_table vivid_ctc_table = …; #endif