/* SPDX-License-Identifier: GPL-2.0-only */ /* * VPE SC coefs * * Copyright (c) 2013 Texas Instruments Inc. * * David Griego, <[email protected]> * Dale Farnsworth, <[email protected]> * Archit Taneja, <[email protected]> */ #ifndef __TI_SC_COEFF_H #define __TI_SC_COEFF_H /* horizontal scaler coefficients */ enum { … }; static const u16 scaler_hs_coeffs[13][SC_NUM_PHASES * 2 * SC_H_NUM_TAPS] = …; /* vertical scaler coefficients */ enum { … }; static const u16 scaler_vs_coeffs[15][SC_NUM_PHASES * 2 * SC_V_NUM_TAPS] = …; #endif