Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 1 | // Copyright 2019 Joe Drago. All rights reserved. |
| 2 | // SPDX-License-Identifier: BSD-2-Clause |
| 3 | |
| 4 | #ifndef AVIF_INTERNAL_H |
| 5 | #define AVIF_INTERNAL_H |
| 6 | |
| 7 | #include "avif/avif.h" |
| 8 | |
Joe Drago | c0d3d66 | 2019-04-12 14:10:16 -0700 | [diff] [blame] | 9 | #ifdef __cplusplus |
| 10 | extern "C" { |
| 11 | #endif |
| 12 | |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 13 | // Yes, clamp macros are nasty. Do not use them. |
Wan-Teh Chang | 2c3c967 | 2021-02-19 16:05:39 -0800 | [diff] [blame] | 14 | #define AVIF_CLAMP(x, low, high) (((x) < (low)) ? (low) : (((high) < (x)) ? (high) : (x))) |
Joe Drago | ef595c9 | 2019-12-03 17:03:57 -0800 | [diff] [blame] | 15 | #define AVIF_MIN(a, b) (((a) < (b)) ? (a) : (b)) |
Joe Drago | 4bcdfde | 2020-11-13 17:50:55 -0800 | [diff] [blame] | 16 | #define AVIF_MAX(a, b) (((a) > (b)) ? (a) : (b)) |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 17 | |
| 18 | // Used by stream related things. |
Joe Drago | 9c5ea37 | 2019-10-11 16:58:08 -0700 | [diff] [blame] | 19 | #define CHECK(A) \ |
| 20 | do { \ |
| 21 | if (!(A)) \ |
| 22 | return AVIF_FALSE; \ |
| 23 | } while (0) |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 24 | |
Joe Drago | 468ded8 | 2020-09-24 12:52:51 -0700 | [diff] [blame] | 25 | // Used instead of CHECK if needing to return a specific error on failure, instead of AVIF_FALSE |
| 26 | #define CHECKERR(A, ERR) \ |
| 27 | do { \ |
| 28 | if (!(A)) \ |
| 29 | return ERR; \ |
| 30 | } while (0) |
| 31 | |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 32 | // --------------------------------------------------------------------------- |
Joe Drago | f6a4227 | 2019-11-21 15:21:41 -0800 | [diff] [blame] | 33 | // URNs and Content-Types |
Joe Drago | cd1e4c3 | 2019-02-08 11:26:31 -0800 | [diff] [blame] | 34 | |
| 35 | #define URN_ALPHA0 "urn:mpeg:mpegB:cicp:systems:auxiliary:alpha" |
| 36 | #define URN_ALPHA1 "urn:mpeg:hevc:2015:auxid:1" |
| 37 | |
Joe Drago | f6a4227 | 2019-11-21 15:21:41 -0800 | [diff] [blame] | 38 | #define CONTENT_TYPE_XMP "application/rdf+xml" |
| 39 | |
Joe Drago | cd1e4c3 | 2019-02-08 11:26:31 -0800 | [diff] [blame] | 40 | // --------------------------------------------------------------------------- |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 41 | // Utils |
| 42 | |
| 43 | float avifRoundf(float v); |
| 44 | |
| 45 | uint16_t avifHTONS(uint16_t s); |
| 46 | uint16_t avifNTOHS(uint16_t s); |
| 47 | uint32_t avifHTONL(uint32_t l); |
| 48 | uint32_t avifNTOHL(uint32_t l); |
| 49 | uint64_t avifHTON64(uint64_t l); |
| 50 | uint64_t avifNTOH64(uint64_t l); |
| 51 | |
Wan-Teh Chang | e184dc1 | 2020-05-11 12:47:21 -0700 | [diff] [blame] | 52 | void avifCalcYUVCoefficients(const avifImage * image, float * outR, float * outG, float * outB); |
Joe Drago | 678b938 | 2019-02-09 03:17:47 -0800 | [diff] [blame] | 53 | |
Joe Drago | 05559c9 | 2019-07-17 16:33:38 -0700 | [diff] [blame] | 54 | #define AVIF_ARRAY_DECLARE(TYPENAME, ITEMSTYPE, ITEMSNAME) \ |
| 55 | typedef struct TYPENAME \ |
| 56 | { \ |
| 57 | ITEMSTYPE * ITEMSNAME; \ |
| 58 | uint32_t elementSize; \ |
| 59 | uint32_t count; \ |
| 60 | uint32_t capacity; \ |
Joe Drago | 399df4f | 2019-07-23 16:45:14 -0700 | [diff] [blame] | 61 | } TYPENAME |
Wan-Teh Chang | f732a4d | 2022-01-21 15:56:35 -0800 | [diff] [blame] | 62 | avifBool avifArrayCreate(void * arrayStruct, uint32_t elementSize, uint32_t initialCapacity); |
Joe Drago | 05559c9 | 2019-07-17 16:33:38 -0700 | [diff] [blame] | 63 | uint32_t avifArrayPushIndex(void * arrayStruct); |
| 64 | void * avifArrayPushPtr(void * arrayStruct); |
| 65 | void avifArrayPush(void * arrayStruct, void * element); |
Wan-Teh Chang | f732a4d | 2022-01-21 15:56:35 -0800 | [diff] [blame] | 66 | void avifArrayPop(void * arrayStruct); |
Joe Drago | 05559c9 | 2019-07-17 16:33:38 -0700 | [diff] [blame] | 67 | void avifArrayDestroy(void * arrayStruct); |
| 68 | |
Joe Drago | e2c3c87 | 2020-03-09 11:22:28 -0700 | [diff] [blame] | 69 | typedef struct avifAlphaParams |
| 70 | { |
| 71 | uint32_t width; |
| 72 | uint32_t height; |
| 73 | |
| 74 | uint32_t srcDepth; |
Joe Drago | e2c3c87 | 2020-03-09 11:22:28 -0700 | [diff] [blame] | 75 | uint8_t * srcPlane; |
| 76 | uint32_t srcRowBytes; |
| 77 | uint32_t srcOffsetBytes; |
| 78 | uint32_t srcPixelBytes; |
| 79 | |
| 80 | uint32_t dstDepth; |
Joe Drago | e2c3c87 | 2020-03-09 11:22:28 -0700 | [diff] [blame] | 81 | uint8_t * dstPlane; |
| 82 | uint32_t dstRowBytes; |
| 83 | uint32_t dstOffsetBytes; |
| 84 | uint32_t dstPixelBytes; |
| 85 | |
| 86 | } avifAlphaParams; |
| 87 | |
Joe Drago | 75296fe | 2020-03-25 16:16:09 -0700 | [diff] [blame] | 88 | avifBool avifFillAlpha(const avifAlphaParams * const params); |
| 89 | avifBool avifReformatAlpha(const avifAlphaParams * const params); |
Joe Drago | 46ea058 | 2019-07-22 15:55:47 -0700 | [diff] [blame] | 90 | |
Wan-Teh Chang | e4ca51e | 2021-02-20 12:03:19 -0800 | [diff] [blame] | 91 | typedef enum avifReformatMode |
| 92 | { |
| 93 | AVIF_REFORMAT_MODE_YUV_COEFFICIENTS = 0, // Normal YUV conversion using coefficients |
| 94 | AVIF_REFORMAT_MODE_IDENTITY, // Pack GBR directly into YUV planes (AVIF_MATRIX_COEFFICIENTS_IDENTITY) |
| 95 | AVIF_REFORMAT_MODE_YCGCO // YUV conversion using AVIF_MATRIX_COEFFICIENTS_YCGCO |
| 96 | } avifReformatMode; |
| 97 | |
Wan-Teh Chang | 728d670 | 2021-04-07 12:58:03 -0700 | [diff] [blame] | 98 | typedef enum avifAlphaMultiplyMode |
| 99 | { |
Yuan Tong | d4f317b | 2021-03-01 22:18:22 +0800 | [diff] [blame] | 100 | AVIF_ALPHA_MULTIPLY_MODE_NO_OP = 0, |
| 101 | AVIF_ALPHA_MULTIPLY_MODE_MULTIPLY, |
| 102 | AVIF_ALPHA_MULTIPLY_MODE_UNMULTIPLY |
| 103 | } avifAlphaMultiplyMode; |
| 104 | |
Wan-Teh Chang | e4ca51e | 2021-02-20 12:03:19 -0800 | [diff] [blame] | 105 | typedef struct avifReformatState |
| 106 | { |
| 107 | // YUV coefficients |
| 108 | float kr; |
| 109 | float kg; |
| 110 | float kb; |
| 111 | |
| 112 | uint32_t yuvChannelBytes; |
| 113 | uint32_t rgbChannelBytes; |
| 114 | uint32_t rgbChannelCount; |
| 115 | uint32_t rgbPixelBytes; |
| 116 | uint32_t rgbOffsetBytesR; |
| 117 | uint32_t rgbOffsetBytesG; |
| 118 | uint32_t rgbOffsetBytesB; |
| 119 | uint32_t rgbOffsetBytesA; |
| 120 | |
| 121 | uint32_t yuvDepth; |
| 122 | avifRange yuvRange; |
| 123 | int yuvMaxChannel; |
| 124 | int rgbMaxChannel; |
| 125 | float rgbMaxChannelF; |
| 126 | float biasY; // minimum Y value |
| 127 | float biasUV; // the value of 0.5 for the appropriate bit depth [128, 512, 2048] |
| 128 | float rangeY; // difference between max and min Y |
| 129 | float rangeUV; // difference between max and min UV |
| 130 | |
| 131 | avifPixelFormatInfo formatInfo; |
| 132 | |
| 133 | // LUTs for going from YUV limited/full unorm -> full range RGB FP32 |
| 134 | float unormFloatTableY[1 << 12]; |
| 135 | float unormFloatTableUV[1 << 12]; |
| 136 | |
| 137 | avifReformatMode mode; |
Wan-Teh Chang | 728d670 | 2021-04-07 12:58:03 -0700 | [diff] [blame] | 138 | // Used by avifImageYUVToRGB() only. avifImageRGBToYUV() uses a local variable (alphaMode) instead. |
Yuan Tong | d4f317b | 2021-03-01 22:18:22 +0800 | [diff] [blame] | 139 | avifAlphaMultiplyMode toRGBAlphaMode; |
Wan-Teh Chang | e4ca51e | 2021-02-20 12:03:19 -0800 | [diff] [blame] | 140 | } avifReformatState; |
| 141 | |
Joe Drago | a6fb22a | 2020-10-28 12:02:03 -0700 | [diff] [blame] | 142 | // Returns: |
Joe Drago | 6b235b4 | 2020-11-19 13:16:11 -0800 | [diff] [blame] | 143 | // * AVIF_RESULT_OK - Converted successfully with libyuv |
| 144 | // * AVIF_RESULT_NOT_IMPLEMENTED - The fast path for this combination is not implemented with libyuv, use built-in YUV conversion |
| 145 | // * [any other error] - Return error to caller |
Joe Drago | a6fb22a | 2020-10-28 12:02:03 -0700 | [diff] [blame] | 146 | avifResult avifImageYUVToRGBLibYUV(const avifImage * image, avifRGBImage * rgb); |
| 147 | |
Yuan Tong | e4850be | 2021-01-22 14:21:25 +0800 | [diff] [blame] | 148 | // Returns: |
Vignesh Venkatasubramanian | fb17c6a | 2022-01-18 18:13:50 -0800 | [diff] [blame] | 149 | // * AVIF_RESULT_OK - Converted successfully with libyuv. |
| 150 | // * AVIF_RESULT_NOT_IMPLEMENTED - The fast path for this conversion is not implemented with libyuv, use built-in conversion. |
| 151 | // * AVIF_RESULT_INVALID_ARGUMENT - Return error to caller. |
| 152 | avifResult avifRGBImageToF16LibYUV(avifRGBImage * rgb); |
| 153 | |
| 154 | // Returns: |
Yuan Tong | e4850be | 2021-01-22 14:21:25 +0800 | [diff] [blame] | 155 | // * AVIF_RESULT_OK - (Un)Premultiply successfully with libyuv |
| 156 | // * AVIF_RESULT_NOT_IMPLEMENTED - The fast path for this combination is not implemented with libyuv, use built-in (Un)Premultiply |
| 157 | // * [any other error] - Return error to caller |
| 158 | avifResult avifRGBImagePremultiplyAlphaLibYUV(avifRGBImage * rgb); |
| 159 | avifResult avifRGBImageUnpremultiplyAlphaLibYUV(avifRGBImage * rgb); |
| 160 | |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 161 | // --------------------------------------------------------------------------- |
Joe Drago | 46104d6 | 2021-05-27 18:17:29 -0700 | [diff] [blame] | 162 | // Scaling |
| 163 | |
| 164 | // This scales the YUV/A planes in-place. |
Wan-Teh Chang | 980d585 | 2021-08-03 20:02:38 -0700 | [diff] [blame] | 165 | avifBool avifImageScale(avifImage * image, uint32_t dstWidth, uint32_t dstHeight, uint32_t imageSizeLimit, avifDiagnostics * diag); |
Joe Drago | 46104d6 | 2021-05-27 18:17:29 -0700 | [diff] [blame] | 166 | |
| 167 | // --------------------------------------------------------------------------- |
Yannis Guyon | bf28a92 | 2022-02-09 23:19:32 +0100 | [diff] [blame] | 168 | // Grid AVIF images |
| 169 | |
| 170 | // Returns false if the tiles in a grid image violate any standards. |
| 171 | // The image contains imageW*imageH pixels. The tiles are of tileW*tileH pixels each. |
| 172 | AVIF_API avifBool avifAreGridDimensionsValid(avifPixelFormat yuvFormat, |
| 173 | uint32_t imageW, |
| 174 | uint32_t imageH, |
| 175 | uint32_t tileW, |
| 176 | uint32_t tileH, |
| 177 | avifDiagnostics * diag); |
| 178 | |
| 179 | // --------------------------------------------------------------------------- |
Joe Drago | 46ea058 | 2019-07-22 15:55:47 -0700 | [diff] [blame] | 180 | // avifCodecDecodeInput |
| 181 | |
Joe Drago | 9d19546 | 2021-06-14 14:14:35 -0700 | [diff] [blame] | 182 | // Legal spatial_id values are [0,1,2,3], so this serves as a sentinel value for "do not filter by spatial_id" |
| 183 | #define AVIF_SPATIAL_ID_UNSET 0xff |
| 184 | |
Joe Drago | e3e3bfa | 2020-06-02 16:33:53 -0700 | [diff] [blame] | 185 | typedef struct avifDecodeSample |
Joe Drago | 22c1ad9 | 2019-09-26 12:46:50 -0700 | [diff] [blame] | 186 | { |
| 187 | avifROData data; |
Joe Drago | be4cbb9 | 2020-09-21 12:14:05 -0700 | [diff] [blame] | 188 | avifBool ownsData; |
| 189 | avifBool partialData; // if true, data exists but doesn't have all of the sample in it |
| 190 | |
Joe Drago | 9d19546 | 2021-06-14 14:14:35 -0700 | [diff] [blame] | 191 | uint32_t itemID; // if non-zero, data comes from a mergedExtents buffer in an avifDecoderItem, not a file offset |
| 192 | uint64_t offset; // additional offset into data. Can be used to offset into an itemID's payload as well. |
| 193 | size_t size; // |
Wan-Teh Chang | 46459a7 | 2021-07-13 15:14:49 -0700 | [diff] [blame] | 194 | uint8_t spatialID; // If set to a value other than AVIF_SPATIAL_ID_UNSET, output frames from this sample should be |
| 195 | // skipped until the output frame's spatial_id matches this ID. |
Joe Drago | 9d19546 | 2021-06-14 14:14:35 -0700 | [diff] [blame] | 196 | avifBool sync; // is sync sample (keyframe) |
Joe Drago | e3e3bfa | 2020-06-02 16:33:53 -0700 | [diff] [blame] | 197 | } avifDecodeSample; |
| 198 | AVIF_ARRAY_DECLARE(avifDecodeSampleArray, avifDecodeSample, sample); |
Joe Drago | 22c1ad9 | 2019-09-26 12:46:50 -0700 | [diff] [blame] | 199 | |
Joe Drago | 46ea058 | 2019-07-22 15:55:47 -0700 | [diff] [blame] | 200 | typedef struct avifCodecDecodeInput |
| 201 | { |
Joe Drago | e3e3bfa | 2020-06-02 16:33:53 -0700 | [diff] [blame] | 202 | avifDecodeSampleArray samples; |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 203 | avifBool allLayers; // if true, the underlying codec must decode all layers, not just the best layer |
| 204 | avifBool alpha; // if true, this is decoding an alpha plane |
Joe Drago | 46ea058 | 2019-07-22 15:55:47 -0700 | [diff] [blame] | 205 | } avifCodecDecodeInput; |
| 206 | |
Joe Drago | 399df4f | 2019-07-23 16:45:14 -0700 | [diff] [blame] | 207 | avifCodecDecodeInput * avifCodecDecodeInputCreate(void); |
Joe Drago | 46ea058 | 2019-07-22 15:55:47 -0700 | [diff] [blame] | 208 | void avifCodecDecodeInputDestroy(avifCodecDecodeInput * decodeInput); |
| 209 | |
| 210 | // --------------------------------------------------------------------------- |
Joe Drago | 5b596c4 | 2020-06-02 17:13:38 -0700 | [diff] [blame] | 211 | // avifCodecEncodeOutput |
| 212 | |
| 213 | typedef struct avifEncodeSample |
| 214 | { |
| 215 | avifRWData data; |
| 216 | avifBool sync; // is sync sample (keyframe) |
| 217 | } avifEncodeSample; |
| 218 | AVIF_ARRAY_DECLARE(avifEncodeSampleArray, avifEncodeSample, sample); |
| 219 | |
| 220 | typedef struct avifCodecEncodeOutput |
| 221 | { |
| 222 | avifEncodeSampleArray samples; |
| 223 | } avifCodecEncodeOutput; |
| 224 | |
| 225 | avifCodecEncodeOutput * avifCodecEncodeOutputCreate(void); |
| 226 | void avifCodecEncodeOutputAddSample(avifCodecEncodeOutput * encodeOutput, const uint8_t * data, size_t len, avifBool sync); |
| 227 | void avifCodecEncodeOutputDestroy(avifCodecEncodeOutput * encodeOutput); |
| 228 | |
| 229 | // --------------------------------------------------------------------------- |
Wan-Teh Chang | 2792c0a | 2020-08-28 16:10:31 -0700 | [diff] [blame] | 230 | // avifCodecSpecificOptions (key/value string pairs for advanced tuning) |
Joe Drago | e1097bd | 2020-08-27 18:55:03 -0700 | [diff] [blame] | 231 | |
| 232 | typedef struct avifCodecSpecificOption |
| 233 | { |
| 234 | char * key; // Must be a simple lowercase alphanumeric string |
| 235 | char * value; // Free-form string to be interpreted by the codec |
| 236 | } avifCodecSpecificOption; |
| 237 | AVIF_ARRAY_DECLARE(avifCodecSpecificOptions, avifCodecSpecificOption, entries); |
| 238 | avifCodecSpecificOptions * avifCodecSpecificOptionsCreate(void); |
| 239 | void avifCodecSpecificOptionsDestroy(avifCodecSpecificOptions * csOptions); |
| 240 | void avifCodecSpecificOptionsSet(avifCodecSpecificOptions * csOptions, const char * key, const char * value); // if(value==NULL), key is deleted |
Joe Drago | e1097bd | 2020-08-27 18:55:03 -0700 | [diff] [blame] | 241 | |
| 242 | // --------------------------------------------------------------------------- |
Joe Drago | 33f1d36 | 2019-02-13 16:46:22 -0800 | [diff] [blame] | 243 | // avifCodec (abstraction layer to use different AV1 implementations) |
| 244 | |
Joe Drago | 3533b97 | 2019-07-12 14:32:20 -0700 | [diff] [blame] | 245 | struct avifCodec; |
Joe Drago | 33f1d36 | 2019-02-13 16:46:22 -0800 | [diff] [blame] | 246 | struct avifCodecInternal; |
| 247 | |
Joe Drago | 405e872 | 2021-05-25 15:08:00 -0700 | [diff] [blame] | 248 | typedef avifBool (*avifCodecGetNextImageFunc)(struct avifCodec * codec, |
| 249 | struct avifDecoder * decoder, |
| 250 | const avifDecodeSample * sample, |
| 251 | avifBool alpha, |
Vignesh Venkatasubramanian | 6aaea11 | 2022-04-29 13:14:40 -0700 | [diff] [blame] | 252 | avifBool * isLimitedRangeAlpha, |
Joe Drago | 405e872 | 2021-05-25 15:08:00 -0700 | [diff] [blame] | 253 | avifImage * image); |
Joe Drago | b840112 | 2020-06-19 11:45:49 -0700 | [diff] [blame] | 254 | // EncodeImage and EncodeFinish are not required to always emit a sample, but when all images are |
Wan-Teh Chang | a468129 | 2020-07-09 11:08:33 -0700 | [diff] [blame] | 255 | // encoded and EncodeFinish is called, the number of samples emitted must match the number of submitted frames. |
Joe Drago | e1097bd | 2020-08-27 18:55:03 -0700 | [diff] [blame] | 256 | // avifCodecEncodeImageFunc may return AVIF_RESULT_UNKNOWN_ERROR to automatically emit the appropriate |
| 257 | // AVIF_RESULT_ENCODE_COLOR_FAILED or AVIF_RESULT_ENCODE_ALPHA_FAILED depending on the alpha argument. |
| 258 | typedef avifResult (*avifCodecEncodeImageFunc)(struct avifCodec * codec, |
| 259 | avifEncoder * encoder, |
| 260 | const avifImage * image, |
| 261 | avifBool alpha, |
Joe Drago | e7c95e0 | 2021-05-06 12:48:55 -0700 | [diff] [blame] | 262 | avifAddImageFlags addImageFlags, |
Joe Drago | e1097bd | 2020-08-27 18:55:03 -0700 | [diff] [blame] | 263 | avifCodecEncodeOutput * output); |
Joe Drago | 5b596c4 | 2020-06-02 17:13:38 -0700 | [diff] [blame] | 264 | typedef avifBool (*avifCodecEncodeFinishFunc)(struct avifCodec * codec, avifCodecEncodeOutput * output); |
Joe Drago | 7a9a661 | 2019-07-17 11:21:24 -0700 | [diff] [blame] | 265 | typedef void (*avifCodecDestroyInternalFunc)(struct avifCodec * codec); |
Joe Drago | 3533b97 | 2019-07-12 14:32:20 -0700 | [diff] [blame] | 266 | |
Joe Drago | 33f1d36 | 2019-02-13 16:46:22 -0800 | [diff] [blame] | 267 | typedef struct avifCodec |
| 268 | { |
Wan-Teh Chang | 2792c0a | 2020-08-28 16:10:31 -0700 | [diff] [blame] | 269 | avifCodecSpecificOptions * csOptions; // Contains codec-specific key/value pairs for advanced tuning. |
Joe Drago | e1097bd | 2020-08-27 18:55:03 -0700 | [diff] [blame] | 270 | // If a codec uses a value, it must mark it as used. |
| 271 | // This array is NOT owned by avifCodec. |
| 272 | struct avifCodecInternal * internal; // up to each codec to use how it wants |
Joe Drago | bfc5aca | 2021-05-17 12:00:39 -0700 | [diff] [blame] | 273 | // |
| 274 | avifDiagnostics * diag; // Shallow copy; owned by avifEncoder or avifDecoder |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 275 | // |
Joe Drago | e79bc37 | 2021-06-09 17:54:08 -0700 | [diff] [blame] | 276 | uint8_t operatingPoint; // Operating point, defaults to 0. |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 277 | avifBool allLayers; // if true, the underlying codec must decode all layers, not just the best layer |
Joe Drago | 3533b97 | 2019-07-12 14:32:20 -0700 | [diff] [blame] | 278 | |
Joe Drago | 46ea058 | 2019-07-22 15:55:47 -0700 | [diff] [blame] | 279 | avifCodecGetNextImageFunc getNextImage; |
Joe Drago | 3533b97 | 2019-07-12 14:32:20 -0700 | [diff] [blame] | 280 | avifCodecEncodeImageFunc encodeImage; |
Joe Drago | 250221a | 2020-06-01 11:11:06 -0700 | [diff] [blame] | 281 | avifCodecEncodeFinishFunc encodeFinish; |
Joe Drago | 3533b97 | 2019-07-12 14:32:20 -0700 | [diff] [blame] | 282 | avifCodecDestroyInternalFunc destroyInternal; |
Joe Drago | 33f1d36 | 2019-02-13 16:46:22 -0800 | [diff] [blame] | 283 | } avifCodec; |
| 284 | |
Joe Drago | e7c95e0 | 2021-05-06 12:48:55 -0700 | [diff] [blame] | 285 | avifCodec * avifCodecCreate(avifCodecChoice choice, avifCodecFlags requiredFlags); |
Joe Drago | 33f1d36 | 2019-02-13 16:46:22 -0800 | [diff] [blame] | 286 | void avifCodecDestroy(avifCodec * codec); |
| 287 | |
Joe Drago | 5335535 | 2019-10-28 19:04:51 -0700 | [diff] [blame] | 288 | avifCodec * avifCodecCreateAOM(void); // requires AVIF_CODEC_AOM (codec_aom.c) |
| 289 | const char * avifCodecVersionAOM(void); // requires AVIF_CODEC_AOM (codec_aom.c) |
| 290 | avifCodec * avifCodecCreateDav1d(void); // requires AVIF_CODEC_DAV1D (codec_dav1d.c) |
| 291 | const char * avifCodecVersionDav1d(void); // requires AVIF_CODEC_DAV1D (codec_dav1d.c) |
wantehchang | 8d150b4 | 2020-02-21 14:08:38 -0800 | [diff] [blame] | 292 | avifCodec * avifCodecCreateGav1(void); // requires AVIF_CODEC_LIBGAV1 (codec_libgav1.c) |
| 293 | const char * avifCodecVersionGav1(void); // requires AVIF_CODEC_LIBGAV1 (codec_libgav1.c) |
Joe Drago | 5335535 | 2019-10-28 19:04:51 -0700 | [diff] [blame] | 294 | avifCodec * avifCodecCreateRav1e(void); // requires AVIF_CODEC_RAV1E (codec_rav1e.c) |
| 295 | const char * avifCodecVersionRav1e(void); // requires AVIF_CODEC_RAV1E (codec_rav1e.c) |
Joe Drago | a6fb22a | 2020-10-28 12:02:03 -0700 | [diff] [blame] | 296 | avifCodec * avifCodecCreateSvt(void); // requires AVIF_CODEC_SVT (codec_svt.c) |
| 297 | const char * avifCodecVersionSvt(void); // requires AVIF_CODEC_SVT (codec_svt.c) |
Joe Drago | 5335535 | 2019-10-28 19:04:51 -0700 | [diff] [blame] | 298 | |
Joe Drago | 33f1d36 | 2019-02-13 16:46:22 -0800 | [diff] [blame] | 299 | // --------------------------------------------------------------------------- |
Joe Drago | 4d5f4a4 | 2021-04-28 13:11:45 -0700 | [diff] [blame] | 300 | // avifDiagnostics |
| 301 | |
Joe Drago | 4886729 | 2021-05-04 13:23:08 -0700 | [diff] [blame] | 302 | #ifdef __clang__ |
| 303 | __attribute__((__format__(__printf__, 2, 3))) |
| 304 | #endif |
Joe Drago | 4d5f4a4 | 2021-04-28 13:11:45 -0700 | [diff] [blame] | 305 | void avifDiagnosticsPrintf(avifDiagnostics * diag, const char * format, ...); |
| 306 | |
| 307 | // --------------------------------------------------------------------------- |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 308 | // avifStream |
| 309 | |
| 310 | typedef size_t avifBoxMarker; |
| 311 | |
Joe Drago | 8f7a300 | 2019-02-07 19:35:37 -0800 | [diff] [blame] | 312 | typedef struct avifBoxHeader |
| 313 | { |
| 314 | size_t size; |
| 315 | uint8_t type[4]; |
| 316 | } avifBoxHeader; |
| 317 | |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 318 | typedef struct avifROStream |
| 319 | { |
| 320 | avifROData * raw; |
| 321 | size_t offset; |
Joe Drago | 618ed5f | 2021-05-04 12:13:24 -0700 | [diff] [blame] | 322 | avifDiagnostics * diag; |
| 323 | const char * diagContext; |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 324 | } avifROStream; |
Joe Drago | 8f7a300 | 2019-02-07 19:35:37 -0800 | [diff] [blame] | 325 | |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 326 | const uint8_t * avifROStreamCurrent(avifROStream * stream); |
Joe Drago | 618ed5f | 2021-05-04 12:13:24 -0700 | [diff] [blame] | 327 | void avifROStreamStart(avifROStream * stream, avifROData * raw, avifDiagnostics * diag, const char * diagContext); |
Wan-Teh Chang | 9f89df9 | 2020-07-08 18:54:26 -0700 | [diff] [blame] | 328 | size_t avifROStreamOffset(const avifROStream * stream); |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 329 | void avifROStreamSetOffset(avifROStream * stream, size_t offset); |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 330 | |
Wan-Teh Chang | 9f89df9 | 2020-07-08 18:54:26 -0700 | [diff] [blame] | 331 | avifBool avifROStreamHasBytesLeft(const avifROStream * stream, size_t byteCount); |
| 332 | size_t avifROStreamRemainingBytes(const avifROStream * stream); |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 333 | avifBool avifROStreamSkip(avifROStream * stream, size_t byteCount); |
| 334 | avifBool avifROStreamRead(avifROStream * stream, uint8_t * data, size_t size); |
| 335 | avifBool avifROStreamReadU16(avifROStream * stream, uint16_t * v); |
| 336 | avifBool avifROStreamReadU32(avifROStream * stream, uint32_t * v); |
| 337 | avifBool avifROStreamReadUX8(avifROStream * stream, uint64_t * v, uint64_t factor); // Reads a factor*8 sized uint, saves in v |
| 338 | avifBool avifROStreamReadU64(avifROStream * stream, uint64_t * v); |
| 339 | avifBool avifROStreamReadString(avifROStream * stream, char * output, size_t outputSize); |
Joe Drago | 76556c4 | 2020-09-24 14:25:00 -0700 | [diff] [blame] | 340 | avifBool avifROStreamReadBoxHeader(avifROStream * stream, avifBoxHeader * header); // This fails if the size reported by the header cannot fit in the stream |
Joe Drago | b86bc3c | 2020-09-24 12:32:31 -0700 | [diff] [blame] | 341 | avifBool avifROStreamReadBoxHeaderPartial(avifROStream * stream, avifBoxHeader * header); // This doesn't require that the full box can fit in the stream |
Joe Drago | 4a25c19 | 2020-06-03 16:29:58 -0700 | [diff] [blame] | 342 | avifBool avifROStreamReadVersionAndFlags(avifROStream * stream, uint8_t * version, uint32_t * flags); // version and flags ptrs are both optional |
| 343 | avifBool avifROStreamReadAndEnforceVersion(avifROStream * stream, uint8_t enforcedVersion); // currently discards flags |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 344 | |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 345 | typedef struct avifRWStream |
| 346 | { |
| 347 | avifRWData * raw; |
| 348 | size_t offset; |
| 349 | } avifRWStream; |
| 350 | |
| 351 | uint8_t * avifRWStreamCurrent(avifRWStream * stream); |
| 352 | void avifRWStreamStart(avifRWStream * stream, avifRWData * raw); |
Wan-Teh Chang | 9f89df9 | 2020-07-08 18:54:26 -0700 | [diff] [blame] | 353 | size_t avifRWStreamOffset(const avifRWStream * stream); |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 354 | void avifRWStreamSetOffset(avifRWStream * stream, size_t offset); |
| 355 | |
| 356 | void avifRWStreamFinishWrite(avifRWStream * stream); |
Wan-Teh Chang | 8557cd6 | 2020-07-08 18:42:10 -0700 | [diff] [blame] | 357 | void avifRWStreamWrite(avifRWStream * stream, const void * data, size_t size); |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 358 | void avifRWStreamWriteChars(avifRWStream * stream, const char * chars, size_t size); |
Joe Drago | 4a25c19 | 2020-06-03 16:29:58 -0700 | [diff] [blame] | 359 | avifBoxMarker avifRWStreamWriteBox(avifRWStream * stream, const char * type, size_t contentSize); |
| 360 | avifBoxMarker avifRWStreamWriteFullBox(avifRWStream * stream, const char * type, size_t contentSize, int version, uint32_t flags); |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 361 | void avifRWStreamFinishBox(avifRWStream * stream, avifBoxMarker marker); |
| 362 | void avifRWStreamWriteU8(avifRWStream * stream, uint8_t v); |
| 363 | void avifRWStreamWriteU16(avifRWStream * stream, uint16_t v); |
| 364 | void avifRWStreamWriteU32(avifRWStream * stream, uint32_t v); |
Joe Drago | 4a25c19 | 2020-06-03 16:29:58 -0700 | [diff] [blame] | 365 | void avifRWStreamWriteU64(avifRWStream * stream, uint64_t v); |
Joe Drago | 345aaa1 | 2019-09-25 13:42:12 -0700 | [diff] [blame] | 366 | void avifRWStreamWriteZeros(avifRWStream * stream, size_t byteCount); |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 367 | |
Joe Drago | 4a25c19 | 2020-06-03 16:29:58 -0700 | [diff] [blame] | 368 | // This is to make it clear that the box size is currently unknown, and will be determined later (with a call to avifRWStreamFinishBox) |
| 369 | #define AVIF_BOX_SIZE_TBD 0 |
| 370 | |
Joe Drago | da92a38 | 2020-06-09 17:08:45 -0700 | [diff] [blame] | 371 | typedef struct avifSequenceHeader |
| 372 | { |
| 373 | uint32_t maxWidth; |
| 374 | uint32_t maxHeight; |
Joe Drago | b840112 | 2020-06-19 11:45:49 -0700 | [diff] [blame] | 375 | uint32_t bitDepth; |
Joe Drago | da92a38 | 2020-06-09 17:08:45 -0700 | [diff] [blame] | 376 | avifPixelFormat yuvFormat; |
Joe Drago | b840112 | 2020-06-19 11:45:49 -0700 | [diff] [blame] | 377 | avifChromaSamplePosition chromaSamplePosition; |
Wan-Teh Chang | 559def5 | 2021-02-01 14:25:31 -0800 | [diff] [blame] | 378 | avifColorPrimaries colorPrimaries; |
| 379 | avifTransferCharacteristics transferCharacteristics; |
| 380 | avifMatrixCoefficients matrixCoefficients; |
Joe Drago | da92a38 | 2020-06-09 17:08:45 -0700 | [diff] [blame] | 381 | avifRange range; |
Joe Drago | 2172ed0 | 2020-11-04 18:04:44 -0800 | [diff] [blame] | 382 | avifCodecConfigurationBox av1C; |
Joe Drago | da92a38 | 2020-06-09 17:08:45 -0700 | [diff] [blame] | 383 | } avifSequenceHeader; |
Joe Drago | b840112 | 2020-06-19 11:45:49 -0700 | [diff] [blame] | 384 | avifBool avifSequenceHeaderParse(avifSequenceHeader * header, const avifROData * sample); |
Joe Drago | da92a38 | 2020-06-09 17:08:45 -0700 | [diff] [blame] | 385 | |
Joe Drago | c0d3d66 | 2019-04-12 14:10:16 -0700 | [diff] [blame] | 386 | #ifdef __cplusplus |
| 387 | } // extern "C" |
| 388 | #endif |
| 389 | |
Joe Drago | 444f051 | 2019-01-23 17:03:24 -0800 | [diff] [blame] | 390 | #endif // ifndef AVIF_INTERNAL_H |