diff options
author | wiz <wiz@pkgsrc.org> | 2022-09-09 15:35:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2022-09-09 15:35:16 +0000 |
commit | 7663b01942ff0aabda67e17f239406dbb6b273bc (patch) | |
tree | 1b4436287fb6a498674532db05e109b583d7384c /graphics/libheif | |
parent | eab6b0e7017ed450a6bc43163f90c4ea0334efb7 (diff) | |
download | pkgsrc-7663b01942ff0aabda67e17f239406dbb6b273bc.tar.gz |
libheif: update to 1.13.0.
pay attention to the correct chroma sample positions
heif_image now holds a list of decoding warnings
use AOM AOM_USAGE_ALL_INTRA mode instead of AOM_USAGE_GOOD_QUALITY
'strict' decoding mode with more checks for standard conformity of input
support for EXIF data >64k in JPEG output
proper library initialization and cleanup
separate quality settings for alpha channel (AOM)
improve color conversion speed (no lroundf)
build and packaging fixes
Diffstat (limited to 'graphics/libheif')
-rw-r--r-- | graphics/libheif/Makefile | 5 | ||||
-rw-r--r-- | graphics/libheif/distinfo | 9 | ||||
-rw-r--r-- | graphics/libheif/patches/patch-configure | 15 |
3 files changed, 6 insertions, 23 deletions
diff --git a/graphics/libheif/Makefile b/graphics/libheif/Makefile index 1aca48e2f7d..932ec05d7c0 100644 --- a/graphics/libheif/Makefile +++ b/graphics/libheif/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2021/10/09 15:35:06 nia Exp $ +# $NetBSD: Makefile,v 1.14 2022/09/09 15:35:16 wiz Exp $ -DISTNAME= libheif-1.12.0 -PKGREVISION= 1 +DISTNAME= libheif-1.13.0 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_GITHUB:=strukturag/} GITHUB_PROJECT= libheif diff --git a/graphics/libheif/distinfo b/graphics/libheif/distinfo index a164efc855d..d6deb95512c 100644 --- a/graphics/libheif/distinfo +++ b/graphics/libheif/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.12 2021/10/26 10:46:27 nia Exp $ +$NetBSD: distinfo,v 1.13 2022/09/09 15:35:16 wiz Exp $ -BLAKE2s (libheif-1.12.0.tar.gz) = c6dfcacc7ab97be3dfc50feeceac98c16812d46e0e048f684fac1f597953a679 -SHA512 (libheif-1.12.0.tar.gz) = 9e6f74dd52841a33b6021a1581ab28c56123d927caa7972acd284444e90888bbdae983b6d847d20eac7651dacea2193d27eb8df45928cb0774229ef8eea23294 -Size (libheif-1.12.0.tar.gz) = 1684355 bytes -SHA1 (patch-configure) = 859f4ae06e77a79a723f2760d426c88787916a9c +BLAKE2s (libheif-1.13.0.tar.gz) = 799cad7e279ed63829a89a55a1685547c713bb96aca9dd70fed87d42f3f05811 +SHA512 (libheif-1.13.0.tar.gz) = 44cb12ec7191bdf8ef2193c075d5d7a064a7a90c00625e5346624de1ebbedd064601998d042c8336d6c5b2aaef4cd3b439b850d0ab5882daa2e22dcc8722c779 +Size (libheif-1.13.0.tar.gz) = 1703950 bytes SHA1 (patch-examples_heif__info.cc) = ecc286a3a93741c57c2c717b0eba5861027bbe39 SHA1 (patch-libheif_heif__hevc.cc) = 341b7c2a96ff6448b757bfe70b5d7e19acb04f1b diff --git a/graphics/libheif/patches/patch-configure b/graphics/libheif/patches/patch-configure deleted file mode 100644 index 576c779a94a..00000000000 --- a/graphics/libheif/patches/patch-configure +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-configure,v 1.1 2020/08/31 17:24:12 ryoon Exp $ - -* POSIX shell portability. - ---- configure.orig 2020-08-14 12:12:13.000000000 +0000 -+++ configure -@@ -17595,7 +17595,7 @@ if test "x$enable_tests" = "xyes"; then - CFLAG_VISIBILITY= - - fi -- if test "x$HAVE_TESTS" == "x1"; then -+ if test "x$HAVE_TESTS" = "x1"; then - HAVE_TESTS_TRUE= - HAVE_TESTS_FALSE='#' - else |