huangcm
2025-07-03 c26084b3642f262f858535ab4e46c1e9b520d3a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * Allwinner SoCs display driver.
 *
 * Copyright (C) 2016 Allwinner.
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */
 
/**
 *    All Winner Tech, All Right Reserved. 2014-2015 Copyright (c)
 *
 *    File name   :       de_scaler_table.h
 *
 *    Description :       display engine 2.0 vsu/gsu common fir table
 *                        information
 *
 *    History     :       2014/03/26  vito cheng  v0.1  Initial version
 *
 */
#ifndef __DE_SCALER_TABLE_H__
#define __DE_SCALER_TABLE_H__
 
#define GSU_ZOOM0_SIZE    1
#define GSU_ZOOM1_SIZE    8
#define GSU_ZOOM2_SIZE    4
#define GSU_ZOOM3_SIZE    1
#define GSU_ZOOM4_SIZE    1
#define GSU_ZOOM5_SIZE    1
 
#define VSU_ZOOM0_SIZE    1
#define VSU_ZOOM1_SIZE    8
#define VSU_ZOOM2_SIZE    4
#define VSU_ZOOM3_SIZE    1
#define VSU_ZOOM4_SIZE    1
#define VSU_ZOOM5_SIZE    1
 
extern unsigned int lan2coefftab16[256];
extern unsigned int lan3coefftab32_left[512];
extern unsigned int lan3coefftab32_right[512];
extern unsigned int lan2coefftab32[512];
extern unsigned int bicubic8coefftab32_left[512];
extern unsigned int bicubic8coefftab32_right[512];
extern unsigned int bicubic4coefftab32[512];
 
#endif