39 lines
1.5 KiB
Diff
39 lines
1.5 KiB
Diff
diff --git a/src/imageformats/avif.cpp b/src/imageformats/avif.cpp
|
|
index ccb4c56b3746775ab0f9eecdde5692b7383848d9..7721c1b79bf6e6ca7261fedc4d9c8c147e71ccbb 100644
|
|
--- a/src/imageformats/avif.cpp
|
|
+++ b/src/imageformats/avif.cpp
|
|
@@ -336,7 +336,7 @@ bool QAVIFHandler::decode_one_frame()
|
|
rgb.format = AVIF_RGB_FORMAT_ARGB;
|
|
#endif
|
|
|
|
-#if (AVIF_VERSION >= 80400) && (AVIF_VERSION <= 100100)
|
|
+#if AVIF_VERSION >= 80400
|
|
if (m_decoder->imageCount > 1) {
|
|
/* accelerate animated AVIF */
|
|
rgb.chromaUpsampling = AVIF_CHROMA_UPSAMPLING_FASTEST;
|
|
@@ -351,12 +351,7 @@ bool QAVIFHandler::decode_one_frame()
|
|
rgb.rowBytes = result.bytesPerLine();
|
|
rgb.pixels = result.bits();
|
|
|
|
-#if AVIF_VERSION >= 100101
|
|
- // use faster decoding for animations
|
|
- avifResult res = avifImageYUVToRGB(m_decoder->image, &rgb, (m_decoder->imageCount > 1) ? AVIF_CHROMA_UPSAMPLING_NEAREST : AVIF_YUV_TO_RGB_DEFAULT);
|
|
-#else
|
|
avifResult res = avifImageYUVToRGB(m_decoder->image, &rgb);
|
|
-#endif
|
|
if (res != AVIF_RESULT_OK) {
|
|
qWarning("ERROR in avifImageYUVToRGB: %s", avifResultToString(res));
|
|
return false;
|
|
@@ -782,11 +777,7 @@ bool QAVIFHandler::write(const QImage &image)
|
|
}
|
|
}
|
|
|
|
-#if AVIF_VERSION >= 100101
|
|
- res = avifImageRGBToYUV(avif, &rgb, AVIF_RGB_TO_YUV_DEFAULT);
|
|
-#else
|
|
res = avifImageRGBToYUV(avif, &rgb);
|
|
-#endif
|
|
if (res != AVIF_RESULT_OK) {
|
|
qWarning("ERROR in avifImageRGBToYUV: %s", avifResultToString(res));
|
|
return false;
|