summaryrefslogtreecommitdiff
path: root/include/VendorVideoAPI.h
blob: e744e4ce99dd3422e8b70b5b75775098dd777fba (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
 *
 * Copyright 2017 Samsung Electronics S.LSI Co. LTD
 *
 * 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.
 */

/*
 * @file    VendorVideoAPI.h
 * @author  TaeHwan Kim    (t_h_kim@samsung.com)
 *          ByungGwan Kang (bk0917.kang@samsung.com)
 * @version 1.0
 * @history
 *   2017.06.02 : Create
 */

#ifndef VENDOR_VIDEO_API_H_
#define VENDOR_VIDEO_API_H_

#include <stdio.h>

#ifdef __cplusplus
extern "C" {
#endif
#define MAX_HDR10PLUS_SIZE 1024

typedef enum _ExynosVideoInfoType {
    VIDEO_INFO_TYPE_INVALID            = 0,
    VIDEO_INFO_TYPE_HDR_STATIC         = 0x1 << 0,
    VIDEO_INFO_TYPE_COLOR_ASPECTS      = 0x1 << 1,
    VIDEO_INFO_TYPE_INTERLACED         = 0x1 << 2,
    VIDEO_INFO_TYPE_YSUM_DATA          = 0x1 << 3,
    VIDEO_INFO_TYPE_HDR_DYNAMIC        = 0x1 << 4,
    VIDEO_INFO_TYPE_CHECK_PIXEL_FORMAT = 0x1 << 5,
    VIDEO_INFO_TYPE_ROI_INFO           = 0x1 << 7,
    VIDEO_INFO_TYPE_CROP_INFO          = 0x1 << 8,
} ExynosVideoInfoType;

typedef struct _ExynosVideoYSUMData {
    unsigned int high;
    unsigned int low;
} ExynosVideoYSUMData;

typedef struct _ExynosColorAspects {
    int mRange;
    int mPrimaries;
    int mTransfer;
    int mMatrixCoeffs;
} ExynosColorAspects;

typedef struct _ExynosPrimaries {
    unsigned int x;
    unsigned int y;
} ExynosPrimaries;

typedef struct _ExynosType1 {
    ExynosPrimaries mR;
    ExynosPrimaries mG;
    ExynosPrimaries mB;
    ExynosPrimaries mW;
    unsigned int    mMaxDisplayLuminance;
    unsigned int    mMinDisplayLuminance;
    unsigned int    mMaxContentLightLevel;
    unsigned int    mMaxFrameAverageLightLevel;
} ExynosType1;

typedef struct _ExynosHdrStaticInfo {
    int mID;
    union {
        ExynosType1 sType1;
    };
} ExynosHdrStaticInfo;

typedef struct _ExynosHdrData_ST2094_40 {
    unsigned char  country_code;
    unsigned short provider_code;
    unsigned short provider_oriented_code;

    unsigned char  application_identifier;
    unsigned char  application_version;

    unsigned char num_windows;

    unsigned short window_upper_left_corner_x[2];
    unsigned short window_upper_left_corner_y[2];
    unsigned short window_lower_right_corner_x[2];
    unsigned short window_lower_right_corner_y[2];
    unsigned short center_of_ellipse_x[2];
    unsigned short center_of_ellipse_y[2];
    unsigned char  rotation_angle[2];
    unsigned short semimajor_axis_internal_ellipse[2];
    unsigned short semimajor_axis_external_ellipse[2];
    unsigned short semiminor_axis_external_ellipse[2];
    unsigned char  overlap_process_option[2];

    unsigned int  targeted_system_display_maximum_luminance;
    unsigned char targeted_system_display_actual_peak_luminance_flag;
    unsigned char num_rows_targeted_system_display_actual_peak_luminance;
    unsigned char num_cols_targeted_system_display_actual_peak_luminance;
    unsigned char targeted_system_display_actual_peak_luminance[25][25];

    unsigned int maxscl[3][3];
    unsigned int average_maxrgb[3];

    unsigned char num_maxrgb_percentiles[3];
    unsigned char maxrgb_percentages[3][15];
    unsigned int  maxrgb_percentiles[3][15];

    unsigned short fraction_bright_pixels[3];

    unsigned char mastering_display_actual_peak_luminance_flag;
    unsigned char num_rows_mastering_display_actual_peak_luminance;
    unsigned char num_cols_mastering_display_actual_peak_luminance;
    unsigned char mastering_display_actual_peak_luminance[25][25];

    struct {
        unsigned char   tone_mapping_flag[3];
        unsigned short  knee_point_x[3];
        unsigned short  knee_point_y[3];
        unsigned char   num_bezier_curve_anchors[3];
        unsigned short  bezier_curve_anchors[3][15];
    } tone_mapping;

    unsigned char color_saturation_mapping_flag[3];
    unsigned char color_saturation_weight[3];
} ExynosHdrData_ST2094_40;

typedef struct _ExynosHdrDynamicInfo {
    unsigned int valid;
    unsigned int reserved[42];

    ExynosHdrData_ST2094_40 data;
} ExynosHdrDynamicInfo;

typedef struct _ExynosHdrDynamicBlob {
    int  nSize;
    char pData[1020];
} ExynosHdrDynamicBlob;

typedef struct _ExynosVideoCrop {
    int left;
    int top;
    int width;
    int height;
} ExynosVideoCrop;

#define MAX_ROIINFO_SIZE 32400
typedef struct _ExynosVideoROIData {
    int     nUpperQpOffset;
    int     nLowerQpOffset;
    int     bUseRoiInfo;
    int     nRoiMBInfoSize;
    char    pRoiMBInfo[MAX_ROIINFO_SIZE];
} ExynosVideoROIData;

typedef struct _ExynosVideoDecData {
    int nInterlacedType;
} ExynosVideoDecData;

typedef struct _ExynosVideoEncData {
    ExynosVideoYSUMData sYsumData;
    unsigned long long pRoiData;  /* for fixing byte alignment on 64x32 problem */
} ExynosVideoEncData;

typedef struct _ExynosVideoMeta {
    /***********************************************/
    /****** WARNING: DO NOT MODIFY THIS AREA *******/
    /**/                                         /**/
    /**/  ExynosVideoInfoType eType;             /**/
    /**/  int                 nHDRType;          /**/
    /**/                                         /**/
    /**/  ExynosColorAspects   sColorAspects;    /**/
    /**/  ExynosHdrStaticInfo  sHdrStaticInfo;   /**/
    /**/  ExynosHdrDynamicInfo sHdrDynamicInfo;  /**/
    /**/                                         /**/
    /****** WARNING: DO NOT MODIFY THIS AREA *******/
    /***********************************************/

    int nPixelFormat;
    ExynosVideoCrop crop;

    union {
        ExynosVideoDecData dec;
        ExynosVideoEncData enc;
    } data;

    int reserved[20];   /* reserved filed for additional info */
} ExynosVideoMeta;

int Exynos_parsing_user_data_registered_itu_t_t35(ExynosHdrDynamicInfo *dest, void *src, int size);
int Exynos_dynamic_meta_to_itu_t_t35(ExynosHdrDynamicInfo *src, char *dst);

#ifdef __cplusplus
}
#endif

#endif /* VENDOR_VIDEO_API_H_ */