blob: 3636ae1f13ed7a6ac0017281b51feeee6431c1ba [file] [log] [blame]
John Koleszar0ea50ce2010-05-18 11:58:33 -04001/*
Yaowu Xu9c01aa12016-09-01 14:32:49 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
John Koleszar0ea50ce2010-05-18 11:58:33 -04003 *
Yaowu Xu9c01aa12016-09-01 14:32:49 -07004 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
John Koleszar0ea50ce2010-05-18 11:58:33 -040010 */
11
James Zernf42d52e2011-02-16 17:54:49 -080012/*!\file
Yaowu Xuf883b422016-08-30 14:01:10 -070013 * \brief Describes the aom image descriptor and associated operations
John Koleszar0ea50ce2010-05-18 11:58:33 -040014 *
15 */
Yaowu Xuf883b422016-08-30 14:01:10 -070016#ifndef AOM_AOM_IMAGE_H_
17#define AOM_AOM_IMAGE_H_
James Zernec7f2132014-01-18 12:16:11 -080018
John Koleszar0ea50ce2010-05-18 11:58:33 -040019#ifdef __cplusplus
20extern "C" {
21#endif
22
clang-format83a52072016-08-08 20:22:13 -070023/*!\brief Current ABI version number
24 *
25 * \internal
26 * If this file is altered in any way that changes the ABI, this value
27 * must be bumped. Examples include, but are not limited to, changing
28 * types, removing or reassigning enums, adding/removing/rearranging
29 * fields to structures
30 */
Yaowu Xuf883b422016-08-30 14:01:10 -070031#define AOM_IMAGE_ABI_VERSION (4) /**<\hideinitializer*/
John Koleszar0ea50ce2010-05-18 11:58:33 -040032
Yaowu Xuf883b422016-08-30 14:01:10 -070033#define AOM_IMG_FMT_PLANAR 0x100 /**< Image is a planar format. */
34#define AOM_IMG_FMT_UV_FLIP 0x200 /**< V plane precedes U in memory. */
35#define AOM_IMG_FMT_HAS_ALPHA 0x400 /**< Image has an alpha channel. */
36#define AOM_IMG_FMT_HIGHBITDEPTH 0x800 /**< Image uses 16bit framebuffer. */
John Koleszar0ea50ce2010-05-18 11:58:33 -040037
clang-format83a52072016-08-08 20:22:13 -070038/*!\brief List of supported image formats */
Yaowu Xuf883b422016-08-30 14:01:10 -070039typedef enum aom_img_fmt {
40 AOM_IMG_FMT_NONE,
41 AOM_IMG_FMT_RGB24, /**< 24 bit per pixel packed RGB */
42 AOM_IMG_FMT_RGB32, /**< 32 bit per pixel packed 0RGB */
43 AOM_IMG_FMT_RGB565, /**< 16 bit per pixel, 565 */
44 AOM_IMG_FMT_RGB555, /**< 16 bit per pixel, 555 */
45 AOM_IMG_FMT_UYVY, /**< UYVY packed YUV */
46 AOM_IMG_FMT_YUY2, /**< YUYV packed YUV */
47 AOM_IMG_FMT_YVYU, /**< YVYU packed YUV */
48 AOM_IMG_FMT_BGR24, /**< 24 bit per pixel packed BGR */
49 AOM_IMG_FMT_RGB32_LE, /**< 32 bit packed BGR0 */
50 AOM_IMG_FMT_ARGB, /**< 32 bit packed ARGB, alpha=255 */
51 AOM_IMG_FMT_ARGB_LE, /**< 32 bit packed BGRA, alpha=255 */
52 AOM_IMG_FMT_RGB565_LE, /**< 16 bit per pixel, gggbbbbb rrrrrggg */
53 AOM_IMG_FMT_RGB555_LE, /**< 16 bit per pixel, gggbbbbb 0rrrrrgg */
54 AOM_IMG_FMT_YV12 =
55 AOM_IMG_FMT_PLANAR | AOM_IMG_FMT_UV_FLIP | 1, /**< planar YVU */
56 AOM_IMG_FMT_I420 = AOM_IMG_FMT_PLANAR | 2,
57 AOM_IMG_FMT_AOMYV12 = AOM_IMG_FMT_PLANAR | AOM_IMG_FMT_UV_FLIP |
58 3, /** < planar 4:2:0 format with aom color space */
59 AOM_IMG_FMT_AOMI420 = AOM_IMG_FMT_PLANAR | 4,
60 AOM_IMG_FMT_I422 = AOM_IMG_FMT_PLANAR | 5,
61 AOM_IMG_FMT_I444 = AOM_IMG_FMT_PLANAR | 6,
62 AOM_IMG_FMT_I440 = AOM_IMG_FMT_PLANAR | 7,
63 AOM_IMG_FMT_444A = AOM_IMG_FMT_PLANAR | AOM_IMG_FMT_HAS_ALPHA | 6,
64 AOM_IMG_FMT_I42016 = AOM_IMG_FMT_I420 | AOM_IMG_FMT_HIGHBITDEPTH,
65 AOM_IMG_FMT_I42216 = AOM_IMG_FMT_I422 | AOM_IMG_FMT_HIGHBITDEPTH,
66 AOM_IMG_FMT_I44416 = AOM_IMG_FMT_I444 | AOM_IMG_FMT_HIGHBITDEPTH,
67 AOM_IMG_FMT_I44016 = AOM_IMG_FMT_I440 | AOM_IMG_FMT_HIGHBITDEPTH
68} aom_img_fmt_t; /**< alias for enum aom_img_fmt */
John Koleszar0ea50ce2010-05-18 11:58:33 -040069
Andrey Norkin9e694632017-12-21 18:50:57 -080070/*!\brief List of supported color primaries */
71typedef enum aom_color_primaries {
72 AOM_CICP_CP_RESERVED_0 = 0, /**< For future use */
73 AOM_CICP_CP_BT_709 = 1, /**< BT.709 */
74 AOM_CICP_CP_UNSPECIFIED = 2, /**< Unspecified */
75 AOM_CICP_CP_RESERVED_3 = 3, /**< For future use */
76 AOM_CICP_CP_BT_470_M = 4, /**< BT.470 System M (historical) */
77 AOM_CICP_CP_BT_470_B_G = 5, /**< BT.470 System B, G (historical) */
78 AOM_CICP_CP_BT_601 = 6, /**< BT.601 */
79 AOM_CICP_CP_SMPTE_240 = 7, /**< SMPTE 240 */
80 AOM_CICP_CP_GENERIC_FILM =
81 8, /**< Generic film (color filters using illuminant C) */
82 AOM_CICP_CP_BT_2020 = 9, /**< BT.2020, BT.2100 */
83 AOM_CICP_CP_XYZ = 10, /**< SMPTE 428 (CIE 1921 XYZ) */
84 AOM_CICP_CP_SMPTE_431 = 11, /**< SMPTE RP 431-2 */
85 AOM_CICP_CP_SMPTE_432 = 12, /**< SMPTE EG 432-1 */
86 AOM_CICP_CP_RESERVED_13 = 13, /**< For future use (values 13 - 21) */
87 AOM_CICP_CP_EBU_3213 = 22, /**< EBU Tech. 3213-E */
88 AOM_CICP_CP_RESERVED_23 = 23 /**< For future use (values 23 - 255) */
89} aom_color_primaries_t; /**< alias for enum aom_color_primaries */
90
91/*!\brief List of supported transfer functions */
92typedef enum aom_transfer_characteristics {
93 AOM_CICP_TC_RESERVED_0 = 0, /**< For future use */
94 AOM_CICP_TC_BT_709 = 1, /**< BT.709 */
95 AOM_CICP_TC_UNSPECIFIED = 2, /**< Unspecified */
96 AOM_CICP_TC_RESERVED_3 = 3, /**< For future use */
97 AOM_CICP_TC_BT_470_M = 4, /**< BT.470 System M (historical) */
98 AOM_CICP_TC_BT_470_B_G = 5, /**< BT.470 System B, G (historical) */
99 AOM_CICP_TC_BT_601 = 6, /**< BT.601 */
100 AOM_CICP_TC_SMPTE_240 = 7, /**< SMPTE 240 M */
101 AOM_CICP_TC_LINEAR = 8, /**< Linear */
102 AOM_CICP_TC_LOG_100 = 9, /**< Logarithmic (100 : 1 range) */
103 AOM_CICP_TC_LOG_100_SQRT10 =
104 10, /**< Logarithmic (100 * Sqrt(10) : 1 range) */
105 AOM_CICP_TC_IEC_61966 = 11, /**< IEC 61966-2-4 */
106 AOM_CICP_TC_BT_1361 = 12, /**< BT.1361 */
107 AOM_CICP_TC_SRGB = 13, /**< sRGB or sYCC*/
108 AOM_CICP_TC_BT_2020_10_BIT = 14, /**< BT.2020 10-bit systems */
109 AOM_CICP_TC_BT_2020_12_BIT = 15, /**< BT.2020 12-bit systems */
110 AOM_CICP_TC_SMPTE_2084 = 16, /**< SMPTE ST 2084, ITU BT.2100 PQ */
111 AOM_CICP_TC_SMPTE_428 = 17, /**< SMPTE ST 428 */
112 AOM_CICP_TC_HLG = 18, /**< BT.2100 HLG, ARIB STD-B67 */
113 AOM_CICP_TC_RESERVED_19 = 19 /**< For future use (values 19-255) */
114} aom_transfer_characteristics_t; /**< alias for enum aom_transfer_function */
115
116/*!\brief List of supported matrix coefficients */
117typedef enum aom_matrix_coefficients {
118 AOM_CICP_MC_IDENTITY = 0, /**< Identity matrix */
119 AOM_CICP_MC_BT_709 = 1, /**< BT.709 */
120 AOM_CICP_MC_UNSPECIFIED = 2, /**< Unspecified */
121 AOM_CICP_MC_RESERVED_3 = 3, /**< For future use */
122 AOM_CICP_MC_FCC = 4, /**< US FCC 73.628 */
123 AOM_CICP_MC_BT_470_B_G = 5, /**< BT.470 System B, G (historical) */
124 AOM_CICP_MC_BT_601 = 6, /**< BT.601 */
125 AOM_CICP_MC_SMPTE_240 = 7, /**< SMPTE 240 M */
126 AOM_CICP_MC_SMPTE_YCGCO = 8, /**< YCgCo */
127 AOM_CICP_MC_BT_2020_NCL =
128 9, /**< BT.2020 non-constant luminance, BT.2100 YCbCr */
129 AOM_CICP_MC_BT_2020_CL = 10, /**< BT.2020 constant luminance */
130 AOM_CICP_MC_SMPTE_2085 = 11, /**< SMPTE ST 2085 YDzDx */
131 AOM_CICP_MC_CHROMAT_NCL =
132 12, /**< Chromaticity-derived non-constant luminance */
133 AOM_CICP_MC_CHROMAT_CL = 13, /**< Chromaticity-derived constant luminance */
134 AOM_CICP_MC_ICTCP = 14, /**< BT.2100 ICtCp */
135 AOM_CICP_MC_RESERVED_15 = 15 /**< For future use (values 15-255) */
136} aom_matrix_coefficients_t;
Edward Hervey24e47832018-01-11 12:17:12 +0100137
clang-format83a52072016-08-08 20:22:13 -0700138/*!\brief List of supported color spaces */
Yaowu Xuf883b422016-08-30 14:01:10 -0700139typedef enum aom_color_space {
Tom Finegan01d43e12017-08-17 09:21:42 -0700140 AOM_CS_UNKNOWN = 0, /**< Unknown */
141 AOM_CS_BT_601 = 1, /**< BT.601 */
142 AOM_CS_BT_709 = 2, /**< BT.709 */
143 AOM_CS_SMPTE_170 = 3, /**< SMPTE.170 */
144 AOM_CS_SMPTE_240 = 4, /**< SMPTE.240 */
anorkin76fb1262017-03-22 15:12:12 -0700145 AOM_CS_BT_2020_NCL = 5, /**< BT.2020 non-constant luminance (BT.2100) */
146 AOM_CS_BT_2020_CL = 6, /**< BT.2020 constant luminance */
147 AOM_CS_SRGB = 7, /**< sRGB */
148 AOM_CS_ICTCP = 8, /**< ICtCp, ITU-R BT.2100 */
Debargha Mukherjeef340fec2018-01-10 18:12:22 -0800149 AOM_CS_RESERVED = 9, /**< Values 10..31 are reserved */
Tom Finegan01d43e12017-08-17 09:21:42 -0700150} aom_color_space_t; /**< alias for enum aom_color_space */
anorkin76fb1262017-03-22 15:12:12 -0700151
Tom Finegan01d43e12017-08-17 09:21:42 -0700152/*!\brief List of supported transfer functions */
anorkin76fb1262017-03-22 15:12:12 -0700153typedef enum aom_transfer_function {
Edward Hervey24e47832018-01-11 12:17:12 +0100154 AOM_TF_UNKNOWN = 0, /**< Unknown */
155 AOM_TF_BT_709 = 1, /**< BT.709 */
156 AOM_TF_PQ = 2, /**< PQ TF BT.2100 / ST.2084 */
157 AOM_TF_HLG = 3, /**< Hybrid Log-Gamma */
158 AOM_TF_RESERVED = 4 /**< Values 4..31 are reserved */
159} aom_transfer_function_t; /**< alias for enum aom_transfer_function */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400160
clang-format83a52072016-08-08 20:22:13 -0700161/*!\brief List of supported color range */
Yaowu Xuf883b422016-08-30 14:01:10 -0700162typedef enum aom_color_range {
163 AOM_CR_STUDIO_RANGE = 0, /**< Y [16..235], UV [16..240] */
164 AOM_CR_FULL_RANGE = 1 /**< YUV/RGB [0..255] */
165} aom_color_range_t; /**< alias for enum aom_color_range */
Yaowu Xu6b223fc2015-01-09 13:04:48 -0800166
Tom Finegan01d43e12017-08-17 09:21:42 -0700167/*!\brief List of chroma sample positions */
anorkin76fb1262017-03-22 15:12:12 -0700168typedef enum aom_chroma_sample_position {
169 AOM_CSP_UNKNOWN = 0, /**< Unknown */
170 AOM_CSP_VERTICAL = 1, /**< Horizontally co-located with luma(0, 0)*/
171 /**< sample, between two vertical samples */
172 AOM_CSP_COLOCATED = 2, /**< Co-located with luma(0, 0) sample */
173 AOM_CSP_RESERVED = 3 /**< Reserved value */
174} aom_chroma_sample_position_t; /**< alias for enum aom_transfer_function */
anorkin76fb1262017-03-22 15:12:12 -0700175
clang-format83a52072016-08-08 20:22:13 -0700176/**\brief Image Descriptor */
Yaowu Xuf883b422016-08-30 14:01:10 -0700177typedef struct aom_image {
Edward Hervey24e47832018-01-11 12:17:12 +0100178 aom_img_fmt_t fmt; /**< Image Format */
Andrey Norkin9e694632017-12-21 18:50:57 -0800179 aom_color_primaries_t cp; /**< CICP Color Primaries */
180 aom_transfer_characteristics_t tc; /**< CICP Transfer Characteristics */
181 aom_matrix_coefficients_t mc; /**< CICP Matrix Coefficients */
Edward Hervey24e47832018-01-11 12:17:12 +0100182 aom_color_space_t cs; /**< Color Space */
183 aom_transfer_function_t tf; /**< transfer function */
184 int monochrome; /**< Whether image is monochrome */
185 aom_chroma_sample_position_t csp; /**< chroma sample position */
186 aom_color_range_t range; /**< Color Range */
Yaowu Xu56842952015-10-16 16:25:08 -0700187
clang-format83a52072016-08-08 20:22:13 -0700188 /* Image storage dimensions */
189 unsigned int w; /**< Stored image width */
190 unsigned int h; /**< Stored image height */
191 unsigned int bit_depth; /**< Stored image bit-depth */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400192
clang-format83a52072016-08-08 20:22:13 -0700193 /* Image display dimensions */
194 unsigned int d_w; /**< Displayed image width */
195 unsigned int d_h; /**< Displayed image height */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400196
clang-format83a52072016-08-08 20:22:13 -0700197 /* Image intended rendering dimensions */
198 unsigned int r_w; /**< Intended rendering image width */
199 unsigned int r_h; /**< Intended rendering image height */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400200
clang-format83a52072016-08-08 20:22:13 -0700201 /* Chroma subsampling info */
202 unsigned int x_chroma_shift; /**< subsampling order, X */
203 unsigned int y_chroma_shift; /**< subsampling order, Y */
Ronald S. Bultje812945a2015-09-25 21:51:55 -0400204
clang-format83a52072016-08-08 20:22:13 -0700205/* Image data pointers. */
Yaowu Xuf883b422016-08-30 14:01:10 -0700206#define AOM_PLANE_PACKED 0 /**< To be used for all packed formats */
207#define AOM_PLANE_Y 0 /**< Y (Luminance) plane */
208#define AOM_PLANE_U 1 /**< U (Chroma) plane */
209#define AOM_PLANE_V 2 /**< V (Chroma) plane */
210#define AOM_PLANE_ALPHA 3 /**< A (Transparency) plane */
clang-format83a52072016-08-08 20:22:13 -0700211 unsigned char *planes[4]; /**< pointer to the top left pixel for each plane */
212 int stride[4]; /**< stride between rows for each plane */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400213
clang-format83a52072016-08-08 20:22:13 -0700214 int bps; /**< bits per sample (for packed formats) */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400215
Soo-Chul Hanf8589862018-01-24 03:13:14 +0000216 int temporal_id; /**< Temporal layer Id of image */
217 int enhancement_id; /**< Spatial layer Id of image */
218
clang-format83a52072016-08-08 20:22:13 -0700219 /*!\brief The following member may be set by the application to associate
220 * data with this image.
John Koleszarc6b90392012-07-13 15:21:29 -0700221 */
clang-format83a52072016-08-08 20:22:13 -0700222 void *user_priv;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400223
clang-format83a52072016-08-08 20:22:13 -0700224 /* The following members should be treated as private. */
225 unsigned char *img_data; /**< private */
226 int img_data_owner; /**< private */
227 int self_allocd; /**< private */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400228
clang-format83a52072016-08-08 20:22:13 -0700229 void *fb_priv; /**< Frame buffer data associated with the image. */
Yaowu Xuf883b422016-08-30 14:01:10 -0700230} aom_image_t; /**< alias for struct aom_image */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400231
clang-format83a52072016-08-08 20:22:13 -0700232/**\brief Representation of a rectangle on a surface */
Yaowu Xuf883b422016-08-30 14:01:10 -0700233typedef struct aom_image_rect {
clang-format83a52072016-08-08 20:22:13 -0700234 unsigned int x; /**< leftmost column */
235 unsigned int y; /**< topmost row */
236 unsigned int w; /**< width */
237 unsigned int h; /**< height */
Yaowu Xuf883b422016-08-30 14:01:10 -0700238} aom_image_rect_t; /**< alias for struct aom_image_rect */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400239
clang-format83a52072016-08-08 20:22:13 -0700240/*!\brief Open a descriptor, allocating storage for the underlying image
241 *
242 * Returns a descriptor for storing an image of the given format. The
243 * storage for the descriptor is allocated on the heap.
244 *
245 * \param[in] img Pointer to storage for descriptor. If this parameter
246 * is NULL, the storage for the descriptor will be
247 * allocated on the heap.
248 * \param[in] fmt Format for the image
249 * \param[in] d_w Width of the image
250 * \param[in] d_h Height of the image
251 * \param[in] align Alignment, in bytes, of the image buffer and
252 * each row in the image(stride).
253 *
254 * \return Returns a pointer to the initialized image descriptor. If the img
255 * parameter is non-null, the value of the img parameter will be
256 * returned.
257 */
Yaowu Xuf883b422016-08-30 14:01:10 -0700258aom_image_t *aom_img_alloc(aom_image_t *img, aom_img_fmt_t fmt,
clang-format83a52072016-08-08 20:22:13 -0700259 unsigned int d_w, unsigned int d_h,
260 unsigned int align);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400261
clang-format83a52072016-08-08 20:22:13 -0700262/*!\brief Open a descriptor, using existing storage for the underlying image
263 *
264 * Returns a descriptor for storing an image of the given format. The
265 * storage for descriptor has been allocated elsewhere, and a descriptor is
266 * desired to "wrap" that storage.
267 *
268 * \param[in] img Pointer to storage for descriptor. If this parameter
269 * is NULL, the storage for the descriptor will be
270 * allocated on the heap.
271 * \param[in] fmt Format for the image
272 * \param[in] d_w Width of the image
273 * \param[in] d_h Height of the image
274 * \param[in] align Alignment, in bytes, of each row in the image.
275 * \param[in] img_data Storage to use for the image
276 *
277 * \return Returns a pointer to the initialized image descriptor. If the img
278 * parameter is non-null, the value of the img parameter will be
279 * returned.
280 */
Yaowu Xuf883b422016-08-30 14:01:10 -0700281aom_image_t *aom_img_wrap(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w,
clang-format83a52072016-08-08 20:22:13 -0700282 unsigned int d_h, unsigned int align,
283 unsigned char *img_data);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400284
clang-format83a52072016-08-08 20:22:13 -0700285/*!\brief Set the rectangle identifying the displayed portion of the image
286 *
287 * Updates the displayed rectangle (aka viewport) on the image surface to
288 * match the specified coordinates and size.
289 *
290 * \param[in] img Image descriptor
291 * \param[in] x leftmost column
292 * \param[in] y topmost row
293 * \param[in] w width
294 * \param[in] h height
295 *
296 * \return 0 if the requested rectangle is valid, nonzero otherwise.
297 */
Yaowu Xuf883b422016-08-30 14:01:10 -0700298int aom_img_set_rect(aom_image_t *img, unsigned int x, unsigned int y,
clang-format83a52072016-08-08 20:22:13 -0700299 unsigned int w, unsigned int h);
300
301/*!\brief Flip the image vertically (top for bottom)
302 *
303 * Adjusts the image descriptor's pointers and strides to make the image
304 * be referenced upside-down.
305 *
306 * \param[in] img Image descriptor
307 */
Yaowu Xuf883b422016-08-30 14:01:10 -0700308void aom_img_flip(aom_image_t *img);
clang-format83a52072016-08-08 20:22:13 -0700309
310/*!\brief Close an image descriptor
311 *
312 * Frees all allocated storage associated with an image descriptor.
313 *
314 * \param[in] img Image descriptor
315 */
Yaowu Xuf883b422016-08-30 14:01:10 -0700316void aom_img_free(aom_image_t *img);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400317
Sebastien Alaiwancdcf4b02017-09-21 11:29:47 +0200318/*!\brief Get the width of a plane
319 *
320 * Get the width of a plane of an image
321 *
322 * \param[in] img Image descriptor
323 * \param[in] plane Plane index
324 */
325int aom_img_plane_width(const aom_image_t *img, int plane);
326
327/*!\brief Get the height of a plane
328 *
329 * Get the height of a plane of an image
330 *
331 * \param[in] img Image descriptor
332 * \param[in] plane Plane index
333 */
334int aom_img_plane_height(const aom_image_t *img, int plane);
335
John Koleszar0ea50ce2010-05-18 11:58:33 -0400336#ifdef __cplusplus
James Zernec7f2132014-01-18 12:16:11 -0800337} // extern "C"
338#endif
339
Yaowu Xuf883b422016-08-30 14:01:10 -0700340#endif // AOM_AOM_IMAGE_H_