You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.0 KiB
22 lines
1.0 KiB
From a911b26a902c5f89fee2dc20ac4dfaafcb8144ec Mon Sep 17 00:00:00 2001 |
|
From: Andrey Semashev <Lastique@users.noreply.github.com> |
|
Date: Fri, 15 Mar 2024 17:46:48 +0300 |
|
Subject: [PATCH] Fix compilation with libsvtav1 2.0.0. |
|
|
|
--- |
|
libheif/plugins/encoder_svt.cc | 2 +- |
|
1 file changed, 1 insertion(+), 1 deletion(-) |
|
|
|
diff --git a/libheif/plugins/encoder_svt.cc b/libheif/plugins/encoder_svt.cc |
|
index 4597d7b8fc..1ff3bce2d5 100644 |
|
--- a/libheif/plugins/encoder_svt.cc |
|
+++ b/libheif/plugins/encoder_svt.cc |
|
@@ -646,7 +646,7 @@ struct heif_error svt_encode_image(void* encoder_raw, const struct heif_image* i |
|
|
|
if (nclx) { |
|
svt_config.color_description_present_flag = true; |
|
-#if SVT_AV1_VERSION_MAJOR == 1 |
|
+#if SVT_AV1_VERSION_MAJOR >= 1 |
|
svt_config.color_primaries = static_cast<EbColorPrimaries>(nclx->color_primaries); |
|
svt_config.transfer_characteristics = static_cast<EbTransferCharacteristics>(nclx->transfer_characteristics); |
|
svt_config.matrix_coefficients = static_cast<EbMatrixCoefficients>(nclx->matrix_coefficients);
|
|
|