/* SPDX-License-Identifier: GPL-2.0 */ /* * Support for Intel Camera Imaging ISP subsystem. * Copyright (c) 2015, Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope 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 __IA_CSS_YNR2_TYPES_H #define __IA_CSS_YNR2_TYPES_H /* @file * CSS-API header file for Y(Luma) Noise Reduction. */ /* Y(Luma) Noise Reduction configuration. * * ISP block: YNR2 & YEE2 * (ISP1: YNR1 and YEE1 are used.) * (ISP2: YNR1 and YEE1 are used for Preview/Video.) * ISP2: YNR2 and YEE2 are used for Still. */ struct ia_css_ynr_config { … }; /* Fringe Control configuration. * * ISP block: FC2 (FC2 is used with YNR2/YEE2.) * (ISP1: FC2 is not used.) * (ISP2: FC2 is not for Preview/Video.) * ISP2: FC2 is used for Still. */ struct ia_css_fc_config { … }; #endif /* __IA_CSS_YNR2_TYPES_H */