blob: ace7611b25219d9e38d08061e0768ccf47da4fb8 [file] [log] [blame]
Joe Drago444f0512019-01-23 17:03:24 -08001// 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 Dragoc0d3d662019-04-12 14:10:16 -07009#ifdef __cplusplus
10extern "C" {
11#endif
12
Joe Drago444f0512019-01-23 17:03:24 -080013// Yes, clamp macros are nasty. Do not use them.
Wan-Teh Chang2c3c9672021-02-19 16:05:39 -080014#define AVIF_CLAMP(x, low, high) (((x) < (low)) ? (low) : (((high) < (x)) ? (high) : (x)))
Joe Dragoef595c92019-12-03 17:03:57 -080015#define AVIF_MIN(a, b) (((a) < (b)) ? (a) : (b))
Joe Drago4bcdfde2020-11-13 17:50:55 -080016#define AVIF_MAX(a, b) (((a) > (b)) ? (a) : (b))
Joe Drago444f0512019-01-23 17:03:24 -080017
18// Used by stream related things.
Joe Drago9c5ea372019-10-11 16:58:08 -070019#define CHECK(A) \
20 do { \
21 if (!(A)) \
22 return AVIF_FALSE; \
23 } while (0)
Joe Drago444f0512019-01-23 17:03:24 -080024
Joe Drago468ded82020-09-24 12:52:51 -070025// 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 Drago444f0512019-01-23 17:03:24 -080032// ---------------------------------------------------------------------------
Joe Dragof6a42272019-11-21 15:21:41 -080033// URNs and Content-Types
Joe Dragocd1e4c32019-02-08 11:26:31 -080034
35#define URN_ALPHA0 "urn:mpeg:mpegB:cicp:systems:auxiliary:alpha"
36#define URN_ALPHA1 "urn:mpeg:hevc:2015:auxid:1"
37
Joe Dragof6a42272019-11-21 15:21:41 -080038#define CONTENT_TYPE_XMP "application/rdf+xml"
39
Joe Dragocd1e4c32019-02-08 11:26:31 -080040// ---------------------------------------------------------------------------
Joe Drago444f0512019-01-23 17:03:24 -080041// Utils
42
43float avifRoundf(float v);
44
45uint16_t avifHTONS(uint16_t s);
46uint16_t avifNTOHS(uint16_t s);
47uint32_t avifHTONL(uint32_t l);
48uint32_t avifNTOHL(uint32_t l);
49uint64_t avifHTON64(uint64_t l);
50uint64_t avifNTOH64(uint64_t l);
51
Wan-Teh Change184dc12020-05-11 12:47:21 -070052void avifCalcYUVCoefficients(const avifImage * image, float * outR, float * outG, float * outB);
Joe Drago678b9382019-02-09 03:17:47 -080053
Joe Drago05559c92019-07-17 16:33:38 -070054#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 Drago399df4f2019-07-23 16:45:14 -070061 } TYPENAME
Wan-Teh Changf732a4d2022-01-21 15:56:35 -080062avifBool avifArrayCreate(void * arrayStruct, uint32_t elementSize, uint32_t initialCapacity);
Joe Drago05559c92019-07-17 16:33:38 -070063uint32_t avifArrayPushIndex(void * arrayStruct);
64void * avifArrayPushPtr(void * arrayStruct);
65void avifArrayPush(void * arrayStruct, void * element);
Wan-Teh Changf732a4d2022-01-21 15:56:35 -080066void avifArrayPop(void * arrayStruct);
Joe Drago05559c92019-07-17 16:33:38 -070067void avifArrayDestroy(void * arrayStruct);
68
Joe Dragoe2c3c872020-03-09 11:22:28 -070069typedef struct avifAlphaParams
70{
71 uint32_t width;
72 uint32_t height;
73
74 uint32_t srcDepth;
Joe Dragoe2c3c872020-03-09 11:22:28 -070075 uint8_t * srcPlane;
76 uint32_t srcRowBytes;
77 uint32_t srcOffsetBytes;
78 uint32_t srcPixelBytes;
79
80 uint32_t dstDepth;
Joe Dragoe2c3c872020-03-09 11:22:28 -070081 uint8_t * dstPlane;
82 uint32_t dstRowBytes;
83 uint32_t dstOffsetBytes;
84 uint32_t dstPixelBytes;
85
86} avifAlphaParams;
87
Joe Drago75296fe2020-03-25 16:16:09 -070088avifBool avifFillAlpha(const avifAlphaParams * const params);
89avifBool avifReformatAlpha(const avifAlphaParams * const params);
Joe Drago46ea0582019-07-22 15:55:47 -070090
Wan-Teh Change4ca51e2021-02-20 12:03:19 -080091typedef 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 Chang728d6702021-04-07 12:58:03 -070098typedef enum avifAlphaMultiplyMode
99{
Yuan Tongd4f317b2021-03-01 22:18:22 +0800100 AVIF_ALPHA_MULTIPLY_MODE_NO_OP = 0,
101 AVIF_ALPHA_MULTIPLY_MODE_MULTIPLY,
102 AVIF_ALPHA_MULTIPLY_MODE_UNMULTIPLY
103} avifAlphaMultiplyMode;
104
Wan-Teh Change4ca51e2021-02-20 12:03:19 -0800105typedef 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 Chang728d6702021-04-07 12:58:03 -0700138 // Used by avifImageYUVToRGB() only. avifImageRGBToYUV() uses a local variable (alphaMode) instead.
Yuan Tongd4f317b2021-03-01 22:18:22 +0800139 avifAlphaMultiplyMode toRGBAlphaMode;
Wan-Teh Change4ca51e2021-02-20 12:03:19 -0800140} avifReformatState;
141
Joe Dragoa6fb22a2020-10-28 12:02:03 -0700142// Returns:
Joe Drago6b235b42020-11-19 13:16:11 -0800143// * 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 Dragoa6fb22a2020-10-28 12:02:03 -0700146avifResult avifImageYUVToRGBLibYUV(const avifImage * image, avifRGBImage * rgb);
147
Yuan Tonge4850be2021-01-22 14:21:25 +0800148// Returns:
Vignesh Venkatasubramanianfb17c6a2022-01-18 18:13:50 -0800149// * 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.
152avifResult avifRGBImageToF16LibYUV(avifRGBImage * rgb);
153
154// Returns:
Yuan Tonge4850be2021-01-22 14:21:25 +0800155// * 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
158avifResult avifRGBImagePremultiplyAlphaLibYUV(avifRGBImage * rgb);
159avifResult avifRGBImageUnpremultiplyAlphaLibYUV(avifRGBImage * rgb);
160
Joe Drago444f0512019-01-23 17:03:24 -0800161// ---------------------------------------------------------------------------
Joe Drago46104d62021-05-27 18:17:29 -0700162// Scaling
163
164// This scales the YUV/A planes in-place.
Wan-Teh Chang980d5852021-08-03 20:02:38 -0700165avifBool avifImageScale(avifImage * image, uint32_t dstWidth, uint32_t dstHeight, uint32_t imageSizeLimit, avifDiagnostics * diag);
Joe Drago46104d62021-05-27 18:17:29 -0700166
167// ---------------------------------------------------------------------------
Yannis Guyonbf28a922022-02-09 23:19:32 +0100168// 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.
172AVIF_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 Drago46ea0582019-07-22 15:55:47 -0700180// avifCodecDecodeInput
181
Joe Drago9d195462021-06-14 14:14:35 -0700182// 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 Dragoe3e3bfa2020-06-02 16:33:53 -0700185typedef struct avifDecodeSample
Joe Drago22c1ad92019-09-26 12:46:50 -0700186{
187 avifROData data;
Joe Dragobe4cbb92020-09-21 12:14:05 -0700188 avifBool ownsData;
189 avifBool partialData; // if true, data exists but doesn't have all of the sample in it
190
Joe Drago9d195462021-06-14 14:14:35 -0700191 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 Chang46459a72021-07-13 15:14:49 -0700194 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 Drago9d195462021-06-14 14:14:35 -0700196 avifBool sync; // is sync sample (keyframe)
Joe Dragoe3e3bfa2020-06-02 16:33:53 -0700197} avifDecodeSample;
198AVIF_ARRAY_DECLARE(avifDecodeSampleArray, avifDecodeSample, sample);
Joe Drago22c1ad92019-09-26 12:46:50 -0700199
Joe Drago46ea0582019-07-22 15:55:47 -0700200typedef struct avifCodecDecodeInput
201{
Joe Dragoe3e3bfa2020-06-02 16:33:53 -0700202 avifDecodeSampleArray samples;
Joe Dragobffba3b2021-05-26 15:46:10 -0700203 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 Drago46ea0582019-07-22 15:55:47 -0700205} avifCodecDecodeInput;
206
Joe Drago399df4f2019-07-23 16:45:14 -0700207avifCodecDecodeInput * avifCodecDecodeInputCreate(void);
Joe Drago46ea0582019-07-22 15:55:47 -0700208void avifCodecDecodeInputDestroy(avifCodecDecodeInput * decodeInput);
209
210// ---------------------------------------------------------------------------
Joe Drago5b596c42020-06-02 17:13:38 -0700211// avifCodecEncodeOutput
212
213typedef struct avifEncodeSample
214{
215 avifRWData data;
216 avifBool sync; // is sync sample (keyframe)
217} avifEncodeSample;
218AVIF_ARRAY_DECLARE(avifEncodeSampleArray, avifEncodeSample, sample);
219
220typedef struct avifCodecEncodeOutput
221{
222 avifEncodeSampleArray samples;
223} avifCodecEncodeOutput;
224
225avifCodecEncodeOutput * avifCodecEncodeOutputCreate(void);
226void avifCodecEncodeOutputAddSample(avifCodecEncodeOutput * encodeOutput, const uint8_t * data, size_t len, avifBool sync);
227void avifCodecEncodeOutputDestroy(avifCodecEncodeOutput * encodeOutput);
228
229// ---------------------------------------------------------------------------
Wan-Teh Chang2792c0a2020-08-28 16:10:31 -0700230// avifCodecSpecificOptions (key/value string pairs for advanced tuning)
Joe Dragoe1097bd2020-08-27 18:55:03 -0700231
232typedef 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;
237AVIF_ARRAY_DECLARE(avifCodecSpecificOptions, avifCodecSpecificOption, entries);
238avifCodecSpecificOptions * avifCodecSpecificOptionsCreate(void);
239void avifCodecSpecificOptionsDestroy(avifCodecSpecificOptions * csOptions);
240void avifCodecSpecificOptionsSet(avifCodecSpecificOptions * csOptions, const char * key, const char * value); // if(value==NULL), key is deleted
Joe Dragoe1097bd2020-08-27 18:55:03 -0700241
242// ---------------------------------------------------------------------------
Joe Drago33f1d362019-02-13 16:46:22 -0800243// avifCodec (abstraction layer to use different AV1 implementations)
244
Joe Drago3533b972019-07-12 14:32:20 -0700245struct avifCodec;
Joe Drago33f1d362019-02-13 16:46:22 -0800246struct avifCodecInternal;
247
Joe Drago405e8722021-05-25 15:08:00 -0700248typedef avifBool (*avifCodecGetNextImageFunc)(struct avifCodec * codec,
249 struct avifDecoder * decoder,
250 const avifDecodeSample * sample,
251 avifBool alpha,
Vignesh Venkatasubramanian6aaea112022-04-29 13:14:40 -0700252 avifBool * isLimitedRangeAlpha,
Joe Drago405e8722021-05-25 15:08:00 -0700253 avifImage * image);
Joe Dragob8401122020-06-19 11:45:49 -0700254// EncodeImage and EncodeFinish are not required to always emit a sample, but when all images are
Wan-Teh Changa4681292020-07-09 11:08:33 -0700255// encoded and EncodeFinish is called, the number of samples emitted must match the number of submitted frames.
Joe Dragoe1097bd2020-08-27 18:55:03 -0700256// 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.
258typedef avifResult (*avifCodecEncodeImageFunc)(struct avifCodec * codec,
259 avifEncoder * encoder,
260 const avifImage * image,
261 avifBool alpha,
Joe Dragoe7c95e02021-05-06 12:48:55 -0700262 avifAddImageFlags addImageFlags,
Joe Dragoe1097bd2020-08-27 18:55:03 -0700263 avifCodecEncodeOutput * output);
Joe Drago5b596c42020-06-02 17:13:38 -0700264typedef avifBool (*avifCodecEncodeFinishFunc)(struct avifCodec * codec, avifCodecEncodeOutput * output);
Joe Drago7a9a6612019-07-17 11:21:24 -0700265typedef void (*avifCodecDestroyInternalFunc)(struct avifCodec * codec);
Joe Drago3533b972019-07-12 14:32:20 -0700266
Joe Drago33f1d362019-02-13 16:46:22 -0800267typedef struct avifCodec
268{
Wan-Teh Chang2792c0a2020-08-28 16:10:31 -0700269 avifCodecSpecificOptions * csOptions; // Contains codec-specific key/value pairs for advanced tuning.
Joe Dragoe1097bd2020-08-27 18:55:03 -0700270 // 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 Dragobfc5aca2021-05-17 12:00:39 -0700273 //
274 avifDiagnostics * diag; // Shallow copy; owned by avifEncoder or avifDecoder
Joe Dragobffba3b2021-05-26 15:46:10 -0700275 //
Joe Dragoe79bc372021-06-09 17:54:08 -0700276 uint8_t operatingPoint; // Operating point, defaults to 0.
Joe Dragobffba3b2021-05-26 15:46:10 -0700277 avifBool allLayers; // if true, the underlying codec must decode all layers, not just the best layer
Joe Drago3533b972019-07-12 14:32:20 -0700278
Joe Drago46ea0582019-07-22 15:55:47 -0700279 avifCodecGetNextImageFunc getNextImage;
Joe Drago3533b972019-07-12 14:32:20 -0700280 avifCodecEncodeImageFunc encodeImage;
Joe Drago250221a2020-06-01 11:11:06 -0700281 avifCodecEncodeFinishFunc encodeFinish;
Joe Drago3533b972019-07-12 14:32:20 -0700282 avifCodecDestroyInternalFunc destroyInternal;
Joe Drago33f1d362019-02-13 16:46:22 -0800283} avifCodec;
284
Joe Dragoe7c95e02021-05-06 12:48:55 -0700285avifCodec * avifCodecCreate(avifCodecChoice choice, avifCodecFlags requiredFlags);
Joe Drago33f1d362019-02-13 16:46:22 -0800286void avifCodecDestroy(avifCodec * codec);
287
Joe Drago53355352019-10-28 19:04:51 -0700288avifCodec * avifCodecCreateAOM(void); // requires AVIF_CODEC_AOM (codec_aom.c)
289const char * avifCodecVersionAOM(void); // requires AVIF_CODEC_AOM (codec_aom.c)
290avifCodec * avifCodecCreateDav1d(void); // requires AVIF_CODEC_DAV1D (codec_dav1d.c)
291const char * avifCodecVersionDav1d(void); // requires AVIF_CODEC_DAV1D (codec_dav1d.c)
wantehchang8d150b42020-02-21 14:08:38 -0800292avifCodec * avifCodecCreateGav1(void); // requires AVIF_CODEC_LIBGAV1 (codec_libgav1.c)
293const char * avifCodecVersionGav1(void); // requires AVIF_CODEC_LIBGAV1 (codec_libgav1.c)
Joe Drago53355352019-10-28 19:04:51 -0700294avifCodec * avifCodecCreateRav1e(void); // requires AVIF_CODEC_RAV1E (codec_rav1e.c)
295const char * avifCodecVersionRav1e(void); // requires AVIF_CODEC_RAV1E (codec_rav1e.c)
Joe Dragoa6fb22a2020-10-28 12:02:03 -0700296avifCodec * avifCodecCreateSvt(void); // requires AVIF_CODEC_SVT (codec_svt.c)
297const char * avifCodecVersionSvt(void); // requires AVIF_CODEC_SVT (codec_svt.c)
Joe Drago53355352019-10-28 19:04:51 -0700298
Joe Drago33f1d362019-02-13 16:46:22 -0800299// ---------------------------------------------------------------------------
Joe Drago4d5f4a42021-04-28 13:11:45 -0700300// avifDiagnostics
301
Joe Drago48867292021-05-04 13:23:08 -0700302#ifdef __clang__
303__attribute__((__format__(__printf__, 2, 3)))
304#endif
Joe Drago4d5f4a42021-04-28 13:11:45 -0700305void avifDiagnosticsPrintf(avifDiagnostics * diag, const char * format, ...);
306
307// ---------------------------------------------------------------------------
Joe Drago444f0512019-01-23 17:03:24 -0800308// avifStream
309
310typedef size_t avifBoxMarker;
311
Joe Drago8f7a3002019-02-07 19:35:37 -0800312typedef struct avifBoxHeader
313{
314 size_t size;
315 uint8_t type[4];
316} avifBoxHeader;
317
Joe Drago345aaa12019-09-25 13:42:12 -0700318typedef struct avifROStream
319{
320 avifROData * raw;
321 size_t offset;
Joe Drago618ed5f2021-05-04 12:13:24 -0700322 avifDiagnostics * diag;
323 const char * diagContext;
Joe Drago345aaa12019-09-25 13:42:12 -0700324} avifROStream;
Joe Drago8f7a3002019-02-07 19:35:37 -0800325
Joe Drago345aaa12019-09-25 13:42:12 -0700326const uint8_t * avifROStreamCurrent(avifROStream * stream);
Joe Drago618ed5f2021-05-04 12:13:24 -0700327void avifROStreamStart(avifROStream * stream, avifROData * raw, avifDiagnostics * diag, const char * diagContext);
Wan-Teh Chang9f89df92020-07-08 18:54:26 -0700328size_t avifROStreamOffset(const avifROStream * stream);
Joe Drago345aaa12019-09-25 13:42:12 -0700329void avifROStreamSetOffset(avifROStream * stream, size_t offset);
Joe Drago444f0512019-01-23 17:03:24 -0800330
Wan-Teh Chang9f89df92020-07-08 18:54:26 -0700331avifBool avifROStreamHasBytesLeft(const avifROStream * stream, size_t byteCount);
332size_t avifROStreamRemainingBytes(const avifROStream * stream);
Joe Drago345aaa12019-09-25 13:42:12 -0700333avifBool avifROStreamSkip(avifROStream * stream, size_t byteCount);
334avifBool avifROStreamRead(avifROStream * stream, uint8_t * data, size_t size);
335avifBool avifROStreamReadU16(avifROStream * stream, uint16_t * v);
336avifBool avifROStreamReadU32(avifROStream * stream, uint32_t * v);
337avifBool avifROStreamReadUX8(avifROStream * stream, uint64_t * v, uint64_t factor); // Reads a factor*8 sized uint, saves in v
338avifBool avifROStreamReadU64(avifROStream * stream, uint64_t * v);
339avifBool avifROStreamReadString(avifROStream * stream, char * output, size_t outputSize);
Joe Drago76556c42020-09-24 14:25:00 -0700340avifBool avifROStreamReadBoxHeader(avifROStream * stream, avifBoxHeader * header); // This fails if the size reported by the header cannot fit in the stream
Joe Dragob86bc3c2020-09-24 12:32:31 -0700341avifBool avifROStreamReadBoxHeaderPartial(avifROStream * stream, avifBoxHeader * header); // This doesn't require that the full box can fit in the stream
Joe Drago4a25c192020-06-03 16:29:58 -0700342avifBool avifROStreamReadVersionAndFlags(avifROStream * stream, uint8_t * version, uint32_t * flags); // version and flags ptrs are both optional
343avifBool avifROStreamReadAndEnforceVersion(avifROStream * stream, uint8_t enforcedVersion); // currently discards flags
Joe Drago444f0512019-01-23 17:03:24 -0800344
Joe Drago345aaa12019-09-25 13:42:12 -0700345typedef struct avifRWStream
346{
347 avifRWData * raw;
348 size_t offset;
349} avifRWStream;
350
351uint8_t * avifRWStreamCurrent(avifRWStream * stream);
352void avifRWStreamStart(avifRWStream * stream, avifRWData * raw);
Wan-Teh Chang9f89df92020-07-08 18:54:26 -0700353size_t avifRWStreamOffset(const avifRWStream * stream);
Joe Drago345aaa12019-09-25 13:42:12 -0700354void avifRWStreamSetOffset(avifRWStream * stream, size_t offset);
355
356void avifRWStreamFinishWrite(avifRWStream * stream);
Wan-Teh Chang8557cd62020-07-08 18:42:10 -0700357void avifRWStreamWrite(avifRWStream * stream, const void * data, size_t size);
Joe Drago345aaa12019-09-25 13:42:12 -0700358void avifRWStreamWriteChars(avifRWStream * stream, const char * chars, size_t size);
Joe Drago4a25c192020-06-03 16:29:58 -0700359avifBoxMarker avifRWStreamWriteBox(avifRWStream * stream, const char * type, size_t contentSize);
360avifBoxMarker avifRWStreamWriteFullBox(avifRWStream * stream, const char * type, size_t contentSize, int version, uint32_t flags);
Joe Drago345aaa12019-09-25 13:42:12 -0700361void avifRWStreamFinishBox(avifRWStream * stream, avifBoxMarker marker);
362void avifRWStreamWriteU8(avifRWStream * stream, uint8_t v);
363void avifRWStreamWriteU16(avifRWStream * stream, uint16_t v);
364void avifRWStreamWriteU32(avifRWStream * stream, uint32_t v);
Joe Drago4a25c192020-06-03 16:29:58 -0700365void avifRWStreamWriteU64(avifRWStream * stream, uint64_t v);
Joe Drago345aaa12019-09-25 13:42:12 -0700366void avifRWStreamWriteZeros(avifRWStream * stream, size_t byteCount);
Joe Drago444f0512019-01-23 17:03:24 -0800367
Joe Drago4a25c192020-06-03 16:29:58 -0700368// 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 Dragoda92a382020-06-09 17:08:45 -0700371typedef struct avifSequenceHeader
372{
373 uint32_t maxWidth;
374 uint32_t maxHeight;
Joe Dragob8401122020-06-19 11:45:49 -0700375 uint32_t bitDepth;
Joe Dragoda92a382020-06-09 17:08:45 -0700376 avifPixelFormat yuvFormat;
Joe Dragob8401122020-06-19 11:45:49 -0700377 avifChromaSamplePosition chromaSamplePosition;
Wan-Teh Chang559def52021-02-01 14:25:31 -0800378 avifColorPrimaries colorPrimaries;
379 avifTransferCharacteristics transferCharacteristics;
380 avifMatrixCoefficients matrixCoefficients;
Joe Dragoda92a382020-06-09 17:08:45 -0700381 avifRange range;
Joe Drago2172ed02020-11-04 18:04:44 -0800382 avifCodecConfigurationBox av1C;
Joe Dragoda92a382020-06-09 17:08:45 -0700383} avifSequenceHeader;
Joe Dragob8401122020-06-19 11:45:49 -0700384avifBool avifSequenceHeaderParse(avifSequenceHeader * header, const avifROData * sample);
Joe Dragoda92a382020-06-09 17:08:45 -0700385
Joe Dragoc0d3d662019-04-12 14:10:16 -0700386#ifdef __cplusplus
387} // extern "C"
388#endif
389
Joe Drago444f0512019-01-23 17:03:24 -0800390#endif // ifndef AVIF_INTERNAL_H