John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | /* |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 3 | * |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 4 | * 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 Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 10 | */ |
| 11 | |
James Zern | f42d52e | 2011-02-16 17:54:49 -0800 | [diff] [blame] | 12 | /*!\file |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 13 | * \brief Describes the aom image descriptor and associated operations |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 14 | * |
| 15 | */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 16 | #ifndef AOM_AOM_IMAGE_H_ |
| 17 | #define AOM_AOM_IMAGE_H_ |
James Zern | ec7f213 | 2014-01-18 12:16:11 -0800 | [diff] [blame] | 18 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 19 | #ifdef __cplusplus |
| 20 | extern "C" { |
| 21 | #endif |
| 22 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 23 | /*!\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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 31 | #define AOM_IMAGE_ABI_VERSION (4) /**<\hideinitializer*/ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 32 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 33 | #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 Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 37 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 38 | /*!\brief List of supported image formats */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 39 | typedef 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 Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 69 | |
Andrey Norkin | 9e69463 | 2017-12-21 18:50:57 -0800 | [diff] [blame] | 70 | /*!\brief List of supported color primaries */ |
| 71 | typedef 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 */ |
| 92 | typedef 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 */ |
| 117 | typedef 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 Hervey | 24e4783 | 2018-01-11 12:17:12 +0100 | [diff] [blame] | 137 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 138 | /*!\brief List of supported color spaces */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 139 | typedef enum aom_color_space { |
Tom Finegan | 01d43e1 | 2017-08-17 09:21:42 -0700 | [diff] [blame] | 140 | 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 */ |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 145 | 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 Mukherjee | f340fec | 2018-01-10 18:12:22 -0800 | [diff] [blame] | 149 | AOM_CS_RESERVED = 9, /**< Values 10..31 are reserved */ |
Tom Finegan | 01d43e1 | 2017-08-17 09:21:42 -0700 | [diff] [blame] | 150 | } aom_color_space_t; /**< alias for enum aom_color_space */ |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 151 | |
Tom Finegan | 01d43e1 | 2017-08-17 09:21:42 -0700 | [diff] [blame] | 152 | /*!\brief List of supported transfer functions */ |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 153 | typedef enum aom_transfer_function { |
Edward Hervey | 24e4783 | 2018-01-11 12:17:12 +0100 | [diff] [blame] | 154 | 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 Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 160 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 161 | /*!\brief List of supported color range */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 162 | typedef 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 Xu | 6b223fc | 2015-01-09 13:04:48 -0800 | [diff] [blame] | 166 | |
Tom Finegan | 01d43e1 | 2017-08-17 09:21:42 -0700 | [diff] [blame] | 167 | /*!\brief List of chroma sample positions */ |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 168 | typedef 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 */ |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 175 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 176 | /**\brief Image Descriptor */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 177 | typedef struct aom_image { |
Edward Hervey | 24e4783 | 2018-01-11 12:17:12 +0100 | [diff] [blame] | 178 | aom_img_fmt_t fmt; /**< Image Format */ |
Andrey Norkin | 9e69463 | 2017-12-21 18:50:57 -0800 | [diff] [blame] | 179 | 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 Hervey | 24e4783 | 2018-01-11 12:17:12 +0100 | [diff] [blame] | 182 | 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 Xu | 5684295 | 2015-10-16 16:25:08 -0700 | [diff] [blame] | 187 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 188 | /* 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 Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 192 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 193 | /* Image display dimensions */ |
| 194 | unsigned int d_w; /**< Displayed image width */ |
| 195 | unsigned int d_h; /**< Displayed image height */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 196 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 197 | /* Image intended rendering dimensions */ |
| 198 | unsigned int r_w; /**< Intended rendering image width */ |
| 199 | unsigned int r_h; /**< Intended rendering image height */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 200 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 201 | /* Chroma subsampling info */ |
| 202 | unsigned int x_chroma_shift; /**< subsampling order, X */ |
| 203 | unsigned int y_chroma_shift; /**< subsampling order, Y */ |
Ronald S. Bultje | 812945a | 2015-09-25 21:51:55 -0400 | [diff] [blame] | 204 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 205 | /* Image data pointers. */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 206 | #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-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 211 | unsigned char *planes[4]; /**< pointer to the top left pixel for each plane */ |
| 212 | int stride[4]; /**< stride between rows for each plane */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 213 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 214 | int bps; /**< bits per sample (for packed formats) */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 215 | |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 216 | int temporal_id; /**< Temporal layer Id of image */ |
| 217 | int enhancement_id; /**< Spatial layer Id of image */ |
| 218 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 219 | /*!\brief The following member may be set by the application to associate |
| 220 | * data with this image. |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 221 | */ |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 222 | void *user_priv; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 223 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 224 | /* 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 Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 228 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 229 | void *fb_priv; /**< Frame buffer data associated with the image. */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 230 | } aom_image_t; /**< alias for struct aom_image */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 231 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 232 | /**\brief Representation of a rectangle on a surface */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 233 | typedef struct aom_image_rect { |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 234 | unsigned int x; /**< leftmost column */ |
| 235 | unsigned int y; /**< topmost row */ |
| 236 | unsigned int w; /**< width */ |
| 237 | unsigned int h; /**< height */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 238 | } aom_image_rect_t; /**< alias for struct aom_image_rect */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 239 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 240 | /*!\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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 258 | aom_image_t *aom_img_alloc(aom_image_t *img, aom_img_fmt_t fmt, |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 259 | unsigned int d_w, unsigned int d_h, |
| 260 | unsigned int align); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 261 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 262 | /*!\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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 281 | aom_image_t *aom_img_wrap(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 282 | unsigned int d_h, unsigned int align, |
| 283 | unsigned char *img_data); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 284 | |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 285 | /*!\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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 298 | int aom_img_set_rect(aom_image_t *img, unsigned int x, unsigned int y, |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 299 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 308 | void aom_img_flip(aom_image_t *img); |
clang-format | 83a5207 | 2016-08-08 20:22:13 -0700 | [diff] [blame] | 309 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 316 | void aom_img_free(aom_image_t *img); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 317 | |
Sebastien Alaiwan | cdcf4b0 | 2017-09-21 11:29:47 +0200 | [diff] [blame] | 318 | /*!\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 | */ |
| 325 | int 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 | */ |
| 334 | int aom_img_plane_height(const aom_image_t *img, int plane); |
| 335 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 336 | #ifdef __cplusplus |
James Zern | ec7f213 | 2014-01-18 12:16:11 -0800 | [diff] [blame] | 337 | } // extern "C" |
| 338 | #endif |
| 339 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 340 | #endif // AOM_AOM_IMAGE_H_ |