Package Details: mingw-w64-libheif 1.21.2-4

Git Clone URL: https://aur.archlinux.org/mingw-w64-libheif.git (read-only, click to copy)
Package Base: mingw-w64-libheif
Description: HEIF file format decoder and encoder (mingw-w64)
Upstream URL: https://github.com/strukturag/libheif
Licenses: LGPL-3.0-or-later
Submitter: patlefort
Maintainer: patlefort
Last Packager: patlefort
Votes: 1
Popularity: 0.000000
First Submitted: 2020-09-19 14:43 (UTC)
Last Updated: 2026-05-12 01:01 (UTC)

Pinned Comments

Latest Comments

Blaadick commented on 2026-05-11 16:28 (UTC) (edited on 2026-05-11 16:28 (UTC) by Blaadick)

The package no longer compiles with newer versions of GCC. Apply this patch pls:

--- libheif-1.21.2/libheif/plugins/encoder_svt.cc   2026-05-11 19:21:52.359856462 +0300
+++ libheif-1.21.2/libheif/plugins/encoder_svt2.cc  2026-05-11 19:22:13.221166699 +0300
@@ -847,7 +847,7 @@
         //svt_config.pred_structure = 1; // LOW_DELAY
         break;
       case heif_sequence_gop_structure_unrestricted:
-        svt_config.pred_structure = 2; // RANDOM_ACCESS
+        svt_config.pred_structure = PredStructure::RANDOM_ACCESS; // RANDOM_ACCESS
         break;
     }
 #else