summaryrefslogtreecommitdiff
path: root/src/gd_avif.c
diff options
context:
space:
mode:
authorBen Morss <morss@google.com>2021-03-03 21:35:56 -0500
committerGitHub <noreply@github.com>2021-03-03 21:35:56 -0500
commitf2aa2836ed910ca3510585a47a8a064b5140e148 (patch)
tree0830fdcac9308d28bc8d911b43f4e1ccb7ed1f8d /src/gd_avif.c
parente697147788720da40eb3e9c3e17ef385c08191b7 (diff)
downloadlibgd-f2aa2836ed910ca3510585a47a8a064b5140e148.tar.gz
AVIF support (#671)
Demand for AVIF support on the web is growing, as the word gets out about this new file format which allows higher-quality encoding at smaller sizes. Core contributors to major open-source CMSs are interested in auto-generating AVIF images! They've been simply waiting for support to appear in libgd. This PR aims to meet the growing demand, and to help bring smaller, more beautiful images to more of the web - to sites created by experienced developers and CMS users alike. This PR adds support by incorporating libavif in addition to the existing libheif support. It's generally felt that libavif has more complete support for the AVIF format. libavif is also used by the Chromium project and squoosh.app. In this PR, I've endeavored to incorporate the latest research into best practices for AVIF encoding - not just for default quantizer values, but also an algorithm for determining the number of horizontal tiles, vertical tiles, and threads. Fixes #557.
Diffstat (limited to 'src/gd_avif.c')
-rw-r--r--src/gd_avif.c680
1 files changed, 680 insertions, 0 deletions
diff --git a/src/gd_avif.c b/src/gd_avif.c
new file mode 100644
index 0000000..d8f8284
--- /dev/null
+++ b/src/gd_avif.c
@@ -0,0 +1,680 @@
+/**
+ * File: AVIF IO
+ *
+ * Read and write AVIF images using libavif (https://github.com/AOMediaCodec/libavif) .
+ * Currently, the only ICC profile we support is sRGB.
+ * Since that's what web browsers use, it's sufficient for now.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <limits.h>
+#include <math.h>
+
+#include "gd.h"
+#include "gd_errors.h"
+#include "gdhelpers.h"
+#include "gd_intern.h"
+
+#ifdef HAVE_LIBAVIF
+#include <avif/avif.h>
+
+/*
+ Define defaults for encoding images:
+ CHROMA_SUBSAMPLING_DEFAULT: 4:2:0 is commonly used for Chroma subsampling.
+ CHROMA_SUBAMPLING_HIGH_QUALITY: Use 4:4:4, or no subsampling, when a sufficient high quality is requested.
+ SUBAMPLING_HIGH_QUALITY_THRESHOLD: At or above this value, use CHROMA_SUBAMPLING_HIGH_QUALITY
+ QUANTIZER_DEFAULT:
+ We need more testing to really know what quantizer settings are optimal,
+ but teams at Google have been using maximum=30 as a starting point.
+ QUALITY_DEFAULT: following gd conventions, -1 indicates the default.
+ SPEED_DEFAULT: AVIF_SPEED_DEFAULT is -1. This simply tells the AVIF encoder to use the default speed.
+*/
+
+#define CHROMA_SUBSAMPLING_DEFAULT AVIF_PIXEL_FORMAT_YUV420
+#define CHROMA_SUBAMPLING_HIGH_QUALITY AVIF_PIXEL_FORMAT_YUV444
+#define HIGH_QUALITY_SUBSAMPLING_THRESHOLD 90
+#define QUANTIZER_DEFAULT 30
+#define QUALITY_DEFAULT -1
+#define SPEED_DEFAULT AVIF_SPEED_DEFAULT
+
+// This initial size for the gdIOCtx is standard among GD image conversion functions.
+#define NEW_DYNAMIC_CTX_SIZE 2048
+
+// Our quality param ranges from 0 to 100.
+// To calculate quality, we convert from AVIF's quantizer scale, which runs from 63 to 0.
+#define MAX_QUALITY 100
+
+// These constants are for computing the number of tiles and threads to use during encoding.
+// Maximum threads are from libavif/contrib/gkd-pixbuf/loader.c.
+#define MIN_TILE_AREA (512 * 512)
+#define MAX_TILES 8
+#define MAX_THREADS 64
+
+/*** Macros ***/
+
+/*
+ From gd_png.c:
+ convert the 7-bit alpha channel to an 8-bit alpha channel.
+ We do a little bit-flipping magic, repeating the MSB
+ as the LSB, to ensure that 0 maps to 0 and
+ 127 maps to 255. We also have to invert to match
+ PNG's convention in which 255 is opaque.
+*/
+#define alpha7BitTo8Bit(alpha7Bit) \
+ (alpha7Bit == 127 ? \
+ 0 : \
+ 255 - ((alpha7Bit << 1) + (alpha7Bit >> 6)))
+
+#define alpha8BitTo7Bit(alpha8Bit) (gdAlphaMax - (alpha8Bit >> 1))
+
+
+/*** Helper functions ***/
+
+/* Convert the quality param we expose to the quantity params used by libavif.
+ The *Quantizer* params values can range from 0 to 63, with 0 = highest quality and 63 = worst.
+ We make the scale 0-100, and we reverse this, so that 0 = worst quality and 100 = highest.
+
+ Values below 0 are set to 0, and values below MAX_QUALITY are set to MAX_QUALITY.
+*/
+static int quality2Quantizer(int quality) {
+ int clampedQuality = CLAMP(quality, 0, MAX_QUALITY);
+
+ float scaleFactor = (float) AVIF_QUANTIZER_WORST_QUALITY / (float) MAX_QUALITY;
+
+ return round(scaleFactor * (MAX_QUALITY - clampedQuality));
+}
+
+/*
+ As of February 2021, this algorithm reflects the latest research on how many tiles
+ and threads to include for a given image size.
+ This is subject to change as research continues.
+
+ Returns false if there was an error, true if all was well.
+ */
+static avifBool setEncoderTilesAndThreads(avifEncoder *encoder, avifRGBImage *rgb) {
+ int imageArea, tiles, tilesLog2, encoderTiles;
+
+ // _gdImageAvifCtx(), the calling function, checks this operation for overflow
+ imageArea = rgb->width * rgb->height;
+
+ tiles = (int) ceil((double) imageArea / MIN_TILE_AREA);
+ tiles = MIN(tiles, MAX_TILES);
+ tiles = MIN(tiles, MAX_THREADS);
+
+ // The number of tiles in any dimension will always be a power of 2. We can only specify log(2)tiles.
+
+ tilesLog2 = floor(log2(tiles));
+
+ // If the image's width is greater than the height, use more tile columns
+ // than tile rows to make the tile size close to a square.
+
+ if (rgb->width >= rgb->height) {
+ encoder->tileRowsLog2 = tilesLog2 / 2;
+ encoder->tileColsLog2 = tilesLog2 - encoder->tileRowsLog2;
+ } else {
+ encoder->tileColsLog2 = tilesLog2 / 2;
+ encoder->tileRowsLog2 = tilesLog2 - encoder->tileColsLog2;
+ }
+
+ // It's good to have one thread per tile.
+ encoderTiles = (1 << encoder->tileRowsLog2) * (1 << encoder->tileColsLog2);
+ encoder->maxThreads = encoderTiles;
+
+ return AVIF_TRUE;
+}
+
+/*
+ We can handle AVIF images whose color profile is sRGB, or whose color profile isn't set.
+*/
+static avifBool isAvifSrgbImage(avifImage *avifIm) {
+ return
+ (avifIm->colorPrimaries == AVIF_COLOR_PRIMARIES_BT709 ||
+ avifIm->colorPrimaries == AVIF_COLOR_PRIMARIES_UNSPECIFIED) &&
+ (avifIm->transferCharacteristics == AVIF_TRANSFER_CHARACTERISTICS_SRGB ||
+ avifIm->transferCharacteristics == AVIF_TRANSFER_CHARACTERISTICS_UNSPECIFIED)
+ ;
+}
+
+/*
+ Check the result from an Avif function to see if it's an error.
+ If so, decode the error and output it, and return true.
+ Otherwise, return false.
+*/
+static avifBool isAvifError(avifResult result, const char *msg) {
+ if (result != AVIF_RESULT_OK) {
+ gd_error("avif error - %s: %s", msg, avifResultToString(result));
+ return AVIF_TRUE;
+ }
+
+ return AVIF_FALSE;
+}
+
+
+/*
+ <readfromCtx> implements the avifIOReadFunc interface by calling the relevant functions
+ in the gdIOCtx. Our logic is inspired by avifIOMemoryReaderRead() and avifIOFileReaderRead().
+ We don't know whether we're reading from a file or from memory. We don't have to know,
+ since we rely on the helper functions in the gdIOCtx.
+ We assume we've stashed the gdIOCtx in io->data, as we do in createAvifIOFromCtx().
+
+ We ignore readFlags, just as the avifIO*ReaderRead() functions do.
+
+ If there's a problem, this returns an avifResult error.
+ If things go well, return AVIF_RESULT_OK.
+ Of course these AVIF codes shouldn't be returned by any top-level GD function.
+*/
+static avifResult readFromCtx(avifIO *io, uint32_t readFlags, uint64_t offset, size_t size, avifROData *out)
+{
+ void *dataBuf = NULL;
+ gdIOCtx *ctx = (gdIOCtx *) io->data;
+
+ // TODO: if we set sizeHint, this will be more efficient.
+
+ if (offset > LONG_MAX || size < 0)
+ return AVIF_RESULT_IO_ERROR;
+
+ // Try to seek offset bytes forward. If we pass the end of the buffer, throw an error.
+ if (!ctx->seek(ctx, offset))
+ return AVIF_RESULT_IO_ERROR;
+
+ dataBuf = gdMalloc(size);
+ if (!dataBuf) {
+ gd_error("avif error - couldn't allocate memory");
+ return AVIF_RESULT_UNKNOWN_ERROR;
+ }
+
+ // Read the number of bytes requested.
+ // If getBuf() returns a negative value, that means there was an error.
+ int charsRead = ctx->getBuf(ctx, dataBuf, size);
+ if (charsRead < 0) {
+ gdFree(dataBuf);
+ return AVIF_RESULT_IO_ERROR;
+ }
+
+ out->data = dataBuf;
+ out->size = charsRead;
+ return charsRead == size ? AVIF_RESULT_OK : AVIF_RESULT_TRUNCATED_DATA;
+}
+
+// avif.h says this is optional, but it seemed easy to implement.
+static void destroyAvifIO(struct avifIO *io) {
+ avifFree(io);
+}
+
+/* Set up an avifIO object.
+ The functions in the gdIOCtx struct may point either to a file or a memory buffer.
+ To us, that's immaterial.
+ Our task is simply to assign avifIO functions to the proper functions from gdIOCtx.
+ The destroy function needs to destroy the avifIO object and anything else it uses.
+
+ Returns NULL if memory for the object can't be allocated.
+*/
+
+// TODO: can we get sizeHint somehow?
+static avifIO *createAvifIOFromCtx(gdIOCtx *ctx) {
+ avifIO *io;
+
+ io = gdMalloc(sizeof(*io));
+ if (io == NULL)
+ return NULL;
+
+ // TODO: setting persistent=FALSE is safe, but it's less efficient. Is it necessary?
+ io->persistent = AVIF_FALSE;
+ io->read = readFromCtx;
+ io->write = NULL; // this function is currently unused; see avif.h
+ io->destroy = destroyAvifIO;
+ io->sizeHint = 0; // sadly, we don't get this information from the gdIOCtx.
+ io->data = ctx;
+
+ return io;
+}
+
+
+/*** Decoding functions ***/
+
+/*
+ Function: gdImageCreateFromAvif
+
+ <gdImageCreateFromAvif> is called to load truecolor images from
+ AVIF format files. Invoke <gdImageCreateFromAvif> with an
+ already opened pointer to a file containing the desired
+ image. <gdImageCreateFromAvif> returns a <gdImagePtr> to the new
+ truecolor image, or NULL if unable to load the image (most often
+ because the file is corrupt or does not contain a AVIF
+ image). <gdImageCreateFromAvif> does not close the file.
+
+ This function creates a gdIOCtx struct from the file pointer it's passed.
+ And then it relies on <gdImageCreateFromAvifCtx> to do the real decoding work.
+ If the file contains an image sequence, we simply read the first one, discarding the rest.
+
+ Variants:
+
+ <gdImageCreateFromAvifPtr> creates an image from AVIF data
+ already in memory.
+
+ <gdImageCreateFromAvifCtx> reads data from the function
+ pointers in a <gdIOCtx> structure.
+
+ Parameters:
+
+ infile - pointer to the input file
+
+ Returns:
+
+ A pointer to the new truecolor image. This will need to be
+ destroyed with <gdImageDestroy> once it is no longer needed.
+
+ On error, returns 0.
+*/
+BGD_DECLARE(gdImagePtr) gdImageCreateFromAvif(FILE *infile)
+{
+ gdImagePtr im;
+ gdIOCtx *ctx = gdNewFileCtx(infile);
+
+ if (!ctx)
+ return NULL;
+
+ im = gdImageCreateFromAvifCtx(ctx);
+ ctx->gd_free(ctx);
+
+ return im;
+}
+
+/*
+ Function: gdImageCreateFromAvifPtr
+
+ See <gdImageCreateFromAvif>.
+
+ Parameters:
+
+ size - size of Avif data in bytes.
+ data - pointer to Avif data.
+*/
+BGD_DECLARE(gdImagePtr) gdImageCreateFromAvifPtr(int size, void *data)
+{
+ gdImagePtr im;
+ gdIOCtx *ctx = gdNewDynamicCtxEx(size, data, 0);
+
+ if (!ctx)
+ return 0;
+
+ im = gdImageCreateFromAvifCtx(ctx);
+ ctx->gd_free(ctx);
+
+ return im;
+}
+
+/*
+ Function: gdImageCreateFromAvifCtx
+
+ See <gdImageCreateFromAvif>.
+
+ Additional details: the AVIF library comes with functions to create an IO object from
+ a file and from a memory pointer. Of course, it doesn't have a way to create an IO object
+ from a gdIOCtx. So, here, we use our own helper function, <createAvifIOfromCtx>.
+
+ Otherwise, we create the image by calling AVIF library functions in order:
+ * avifDecoderCreate(), to create the decoder
+ * avifDecoderSetIO(), to tell libavif how to read from our data structure
+ * avifDecoderParse(), to parse the image
+ * avifDecoderNextImage(), to read the first image from the decoder
+ * avifRGBImageSetDefaults(), to create the avifRGBImage
+ * avifRGBImageAllocatePixels(), to allocate memory for the pixels
+ * avifImageYUVToRGB(), to convert YUV to RGB
+
+ Finally, we create a new gd image and copy over the pixel data.
+
+ Parameters:
+
+ ctx - a gdIOCtx struct
+*/
+BGD_DECLARE(gdImagePtr) gdImageCreateFromAvifCtx (gdIOCtx *ctx)
+{
+ int x, y;
+ gdImage *im = NULL;
+ avifResult result;
+ avifIO *io;
+ avifDecoder *decoder;
+ avifRGBImage rgb;
+
+ // this lets us know that memory hasn't been allocated yet for the pixels
+ rgb.pixels = NULL;
+
+ decoder = avifDecoderCreate();
+
+ io = createAvifIOFromCtx(ctx);
+ if (!io) {
+ gd_error("avif error - Could not allocate memory");
+ goto cleanup;
+ }
+
+ avifDecoderSetIO(decoder, io);
+
+ result = avifDecoderParse(decoder);
+ if (isAvifError(result, "Could not parse image"))
+ goto cleanup;
+
+ // Note again that, for an image sequence, we read only the first image, ignoring the rest.
+ result = avifDecoderNextImage(decoder);
+ if (isAvifError(result, "Could not decode image"))
+ goto cleanup;
+
+ if (!isAvifSrgbImage(decoder->image))
+ gd_error_ex(LOG_WARNING, "Image's color profile is not sRGB");
+
+ // Set up the avifRGBImage, and convert it from YUV to an 8-bit RGB image.
+ // (While AVIF image pixel depth can be 8, 10, or 12 bits, GD truecolor images are 8-bit.)
+ avifRGBImageSetDefaults(&rgb, decoder->image);
+ rgb.depth = 8;
+ avifRGBImageAllocatePixels(&rgb);
+
+ result = avifImageYUVToRGB(decoder->image, &rgb);
+ if (isAvifError(result, "Conversion from YUV to RGB failed"))
+ goto cleanup;
+
+ im = gdImageCreateTrueColor(decoder->image->width, decoder->image->height);
+ if (!im) {
+ gd_error("avif error - Could not create GD truecolor image");
+ goto cleanup;
+ }
+
+ im->saveAlphaFlag = 1;
+
+ // Read the pixels from the AVIF image and copy them into the GD image.
+
+ uint8_t *p = rgb.pixels;
+
+ for (y = 0; y < decoder->image->height; y++) {
+ for (x = 0; x < decoder->image->width; x++) {
+ uint8_t r = *(p++);
+ uint8_t g = *(p++);
+ uint8_t b = *(p++);
+ uint8_t a = alpha8BitTo7Bit(*(p++));
+ im->tpixels[y][x] = gdTrueColorAlpha(r, g, b, a);
+ }
+ }
+
+cleanup:
+ // if io has been allocated, this frees it
+ avifDecoderDestroy(decoder);
+
+ if (rgb.pixels)
+ avifRGBImageFreePixels(&rgb);
+
+ return im;
+}
+
+
+/*** Encoding functions ***/
+
+/*
+ Function: gdImageAvifEx
+
+ <gdImageAvifEx> outputs the specified image to the specified file in
+ AVIF format. The file must be open for writing. Under MSDOS and
+ all versions of Windows, it is important to use "wb" as opposed to
+ simply "w" as the mode when opening the file, and under Unix there
+ is no penalty for doing so. <gdImageAvifEx> does not close the file;
+ your code must do so.
+
+ Variants:
+
+ <gdImageAvifEx> writes the image to a file, encoding with the default quality and speed.
+
+ <gdImageAvifPtrEx> stores the image in RAM.
+
+ <gdImageAvifPtr> stores the image in RAM, encoding with the default quality and speed.
+
+ <gdImageAvifCtx> stores the image using a <gdIOCtx> struct.
+
+ Parameters:
+
+ im - The image to save.
+ outFile - The FILE pointer to write to.
+ quality - Compression quality (0-100). 0 is lowest-quality, 100 is highest.
+ speed - The speed of compression (0-10). 0 is slowest, 10 is fastest.
+
+ Notes on parameters:
+ quality - If quality = -1, we use a default quality as defined in QUALITY_DEFAULT.
+ For information on how we convert this quality to libavif's quantity param, see <quality2Quantizer>.
+
+ speed - At slower speeds, encoding may be quite slow. Use judiciously.
+
+ Qualities or speeds that are lower than the minimum value get clamped to the minimum value,
+ abd qualities or speeds that are lower than the maximum value get clamped to the maxmum value.
+
+
+ Returns:
+
+ * for <gdImageAvifEx>, <gdImageAvif>, and <gdImageAvifCtx>, nothing.
+ * for <gdImageAvifPtrEx> and <gdImageAvifPtr>, a pointer to the image in memory.
+*/
+
+/*
+ Function: _gdImageAvifCtx
+
+ We need this underscored function because gdImageAvifCtx() can't return anything.
+ And our functions that operate on a memory buffer need to know whether the encoding has succeeded.
+
+ If we're passed the QUALITY_DEFAULT of -1, set the quantizer params to QUANTIZER_DEFAULT.
+
+ This function returns 0 on success, or 1 on failure.
+ */
+static avifBool _gdImageAvifCtx(gdImagePtr im, gdIOCtx *outfile, int quality, int speed)
+{
+ avifResult result;
+ avifRGBImage rgb;
+ avifRWData avifOutput = AVIF_DATA_EMPTY;
+ avifBool failed = AVIF_FALSE;
+ avifBool lossless = quality == 100;
+ avifEncoder *encoder = NULL;
+
+ uint32_t val;
+ uint8_t *p;
+ uint8_t a;
+ int x, y;
+
+ if (im == NULL)
+ return 1;
+
+ if (!gdImageTrueColor(im)) {
+ gd_error("avif doesn't support palette images");
+ return 1;
+ }
+
+ if (!gdImageSX(im) || !gdImageSY(im)) {
+ gd_error("image dimensions must not be zero");
+ return 1;
+ }
+
+ if (overflow2(gdImageSX(im), gdImageSY(im))) {
+ gd_error("image dimensions are too large");
+ return 1;
+ }
+
+ if (speed != AVIF_SPEED_DEFAULT)
+ speed = CLAMP(speed, AVIF_SPEED_SLOWEST, AVIF_SPEED_FASTEST);
+
+ avifPixelFormat subsampling = quality >= HIGH_QUALITY_SUBSAMPLING_THRESHOLD ?
+ CHROMA_SUBAMPLING_HIGH_QUALITY : CHROMA_SUBSAMPLING_DEFAULT;
+
+ // Create the AVIF image.
+ // Set the ICC to sRGB, as that's what gd supports right now.
+ // Note that MATRIX_COEFFICIENTS_IDENTITY enables lossless conversion from RGB to YUV.
+
+ avifImage *avifIm = avifImageCreate(gdImageSX(im), gdImageSY(im), 8, subsampling);
+
+ avifIm->colorPrimaries = AVIF_COLOR_PRIMARIES_BT709;
+ avifIm->transferCharacteristics = AVIF_TRANSFER_CHARACTERISTICS_SRGB;
+ avifIm->matrixCoefficients = lossless ? AVIF_MATRIX_COEFFICIENTS_IDENTITY : AVIF_MATRIX_COEFFICIENTS_BT709;
+
+ avifRGBImageSetDefaults(&rgb, avifIm);
+ // this allocates memory, and sets rgb.rowBytes and rgb.pixels.
+ avifRGBImageAllocatePixels(&rgb);
+
+ // Parse RGB data from the GD image, and copy it into the AVIF RGB image.
+ // Convert 7-bit GD alpha channel values to 8-bit AVIF values.
+
+ p = rgb.pixels;
+ for (y = 0; y < rgb.height; y++) {
+ for (x = 0; x < rgb.width; x++) {
+ val = im->tpixels[y][x];
+
+ *(p++) = gdTrueColorGetRed(val);
+ *(p++) = gdTrueColorGetGreen(val);
+ *(p++) = gdTrueColorGetBlue(val);
+ *(p++) = alpha7BitTo8Bit(gdTrueColorGetAlpha(val));
+ }
+ }
+
+ // Convert the RGB image to YUV.
+
+ result = avifImageRGBToYUV(avifIm, &rgb);
+ failed = isAvifError(result, "Could not convert image to YUV");
+ if (failed)
+ goto cleanup;
+
+ // Encode the image in AVIF format.
+
+ encoder = avifEncoderCreate();
+ int quantizerQuality = quality == QUALITY_DEFAULT ?
+ QUANTIZER_DEFAULT : quality2Quantizer(quality);
+
+ encoder->minQuantizer = quantizerQuality;
+ encoder->maxQuantizer = quantizerQuality;
+ encoder->minQuantizerAlpha = quantizerQuality;
+ encoder->maxQuantizerAlpha = quantizerQuality;
+ encoder->speed = speed;
+
+ failed = !setEncoderTilesAndThreads(encoder, &rgb);
+ if (failed)
+ goto cleanup;
+
+ //TODO: is there a reason to use timeSscales != 1?
+ result = avifEncoderAddImage(encoder, avifIm, 1, AVIF_ADD_IMAGE_FLAG_SINGLE);
+ failed = isAvifError(result, "Could not encode image");
+ if (failed)
+ goto cleanup;
+
+ result = avifEncoderFinish(encoder, &avifOutput);
+ failed = isAvifError(result, "Could not finish encoding");
+ if (failed)
+ goto cleanup;
+
+ // Write the AVIF image bytes to the GD ctx.
+
+ gdPutBuf(avifOutput.data, avifOutput.size, outfile);
+
+cleanup:
+ if (rgb.pixels)
+ avifRGBImageFreePixels(&rgb);
+
+ if (encoder)
+ avifEncoderDestroy(encoder);
+
+ if (avifOutput.data)
+ avifRWDataFree(&avifOutput);
+
+ return failed;
+}
+
+BGD_DECLARE(void) gdImageAvifEx(gdImagePtr im, FILE *outFile, int quality, int speed)
+{
+ gdIOCtx *out = gdNewFileCtx(outFile);
+
+ if (out == NULL)
+ return;
+
+ gdImageAvifCtx(im, out, quality, speed);
+ out->gd_free(out);
+}
+
+BGD_DECLARE(void) gdImageAvif(gdImagePtr im, FILE *outFile)
+{
+ gdImageAvifEx(im, outFile, QUALITY_DEFAULT, AVIF_SPEED_DEFAULT);
+}
+
+BGD_DECLARE(void *) gdImageAvifPtrEx(gdImagePtr im, int *size, int quality, int speed)
+{
+ void *rv;
+ gdIOCtx *out = gdNewDynamicCtx(NEW_DYNAMIC_CTX_SIZE, NULL);
+
+ if (out == NULL) {
+ return NULL;
+ }
+
+ if (_gdImageAvifCtx(im, out, quality, speed))
+ rv = NULL;
+ else
+ rv = gdDPExtractData(out, size);
+
+ out->gd_free(out);
+ return rv;
+}
+
+BGD_DECLARE(void *) gdImageAvifPtr(gdImagePtr im, int *size)
+{
+ return gdImageAvifPtrEx(im, size, QUALITY_DEFAULT, AVIF_SPEED_DEFAULT);
+}
+
+
+BGD_DECLARE(void) gdImageAvifCtx(gdImagePtr im, gdIOCtx *outfile, int quality, int speed)
+{
+ _gdImageAvifCtx(im, outfile, quality, speed);
+}
+
+#else /* !HAVE_LIBAVIF */
+
+static void *_noAvifError(void)
+{
+ gd_error("AVIF image support has been disabled\n");
+ return NULL;
+}
+
+BGD_DECLARE(gdImagePtr) gdImageCreateFromAvif(FILE *ctx)
+{
+ return _noAvifError();
+}
+
+BGD_DECLARE(gdImagePtr) gdImageCreateFromAvifPtr(int size, void *data)
+{
+ return _noAvifError();
+}
+
+BGD_DECLARE(gdImagePtr) gdImageCreateFromAvifCtx(gdIOCtx *ctx)
+{
+ return _noAvifError();
+}
+
+BGD_DECLARE(void) gdImageAvifCtx(gdImagePtr im, gdIOCtx *outfile, int quality, int speed)
+{
+ _noAvifError();
+}
+
+BGD_DECLARE(void) gdImageAvifEx(gdImagePtr im, FILE *outFile, int quality, int speed)
+{
+ _noAvifError();
+}
+
+BGD_DECLARE(void) gdImageAvif(gdImagePtr im, FILE *outFile)
+{
+ _noAvifError();
+}
+
+BGD_DECLARE(void *) gdImageAvifPtr(gdImagePtr im, int *size)
+{
+ return _noAvifError();
+}
+
+BGD_DECLARE(void *) gdImageAvifPtrEx(gdImagePtr im, int *size, int quality, int speed)
+{
+ return _noAvifError();
+}
+
+#endif /* HAVE_LIBAVIF */