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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
| /*
| * agamma_head.h
| *
| * Copyright (c) 2021 Rockchip Corporation
| *
| * Licensed under the Apache License, Version 2.0 (the "License");
| * you may not use this file except in compliance with the License.
| * You may obtain a copy of the License at
| *
| * http://www.apache.org/licenses/LICENSE-2.0
| *
| * Unless required by applicable law or agreed to in writing, software
| * distributed under the License is distributed on an "AS IS" BASIS,
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
| * See the License for the specific language governing permissions and
| * limitations under the License.
| *
| */
|
| #ifndef __CALIBDBV2_AGAMMA_HEAD_H__
| #define __CALIBDBV2_AGAMMA_HEAD_H__
|
| #include "rk_aiq_comm.h"
|
| RKAIQ_BEGIN_DECLARE
|
| #define CALIBDB_AGAMMA_KNOTS_NUM 45
| #define CALIBDB_AGAMMA_KNOTS_NUM_V30 49
|
| typedef enum GammaType_e {
| GAMMATYPE_LOG = 0,
| GAMMATYPE_EQU = 1,
| } GammaType_t;
|
| typedef struct CalibDbGammaV2_s {
| // M4_BOOL_DESC("Gamma_en", "1")
| bool Gamma_en;
| // M4_ENUM_DESC("Gamma_out_segnum", "GammaType_t", "GAMMATYPE_LOG")
| GammaType_t Gamma_out_segnum;
| // M4_NUMBER_DESC("Gamma_out_offset", "u16", M4_RANGE(0,4095), "0", M4_DIGIT(0))
| uint16_t Gamma_out_offset;
| // M4_ARRAY_MARK_DESC("Gamma_curve", "u16", M4_SIZE(1,45), M4_RANGE(0, 4095), "[0, 6, 11, 17, 22, 28, 33, 39, 44, 55, 66, 77, 88, 109, 130, 150, 170, 210, 248, 286, 323, 393, 460, 525, 586, 702, 809, 909, 1002, 1172, 1325, 1462, 1588, 1811, 2004, 2174, 2327, 2590, 2813, 3006, 3177, 3467, 3708, 3915, 4095.0000]", M4_DIGIT(4), M4_DYNAMIC(0), "curve_table")
| uint16_t Gamma_curve[CALIBDB_AGAMMA_KNOTS_NUM];
| } CalibDbGammaV2_t;
|
| typedef struct CalibDbV2_gamma_s {
| // M4_STRUCT_DESC("GammaTuningPara", "curve_ui_type_A")
| CalibDbGammaV2_t GammaTuningPara;
| } CalibDbV2_gamma_t;
|
| typedef struct CalibDbGammaV30_s {
| // M4_BOOL_DESC("Gamma_en", "1")
| bool Gamma_en;
| // M4_NUMBER_DESC("Gamma_out_offset", "u16", M4_RANGE(0,4095), "0", M4_DIGIT(0))
| uint16_t Gamma_out_offset;
| // M4_ARRAY_MARK_DESC("Gamma_curve", "u16", M4_SIZE(1,49), M4_RANGE(0, 4095), "[0, 93, 128, 154, 175, 194, 211, 226, 240, 266, 289, 310, 329, 365, 396, 425, 451, 499, 543, 582, 618, 684, 744, 798, 848, 938, 1019, 1093, 1161, 1285, 1396, 1498, 1592, 1761, 1914, 2052, 2181, 2414, 2622, 2813, 2989, 3153, 3308, 3454, 4593, 3727, 3854, 3977, 4095]", M4_DIGIT(0), M4_DYNAMIC(0), "curve_table")
| uint16_t Gamma_curve[CALIBDB_AGAMMA_KNOTS_NUM_V30];;
| } CalibDbGammaV30_t;
|
| typedef struct CalibDbV2_gamma_V30_s {
| // M4_STRUCT_DESC("GammaTuningPara", "curve_ui_type_A")
| CalibDbGammaV30_t GammaTuningPara;
| } CalibDbV2_gamma_V30_t;
|
|
| RKAIQ_END_DECLARE
|
| #endif
|
|