Skip to content

Commit 9253060

Browse files
committed
1 parent e1931ab commit 9253060

14 files changed

Lines changed: 76 additions & 13 deletions

File tree

graphics/libavif/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
PORTNAME= libavif
22
PORTVERSION= 1.1.1
33
DISTVERSIONPREFIX= v
4+
PORTREVISION= 1
45
CATEGORIES= graphics
56

7+
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
8+
PATCHFILES+= e649830525d3.patch:-p1 # https://github.com/AOMediaCodec/libavif/pull/2607
9+
610
MAINTAINER= sunpoet@FreeBSD.org
711
COMMENT= Library for encoding and decoding .avif files
812
WWW= https://github.com/AOMediaCodec/libavif

graphics/libavif/distinfo

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
TIMESTAMP = 1722711161
22
SHA256 (AOMediaCodec-libavif-v1.1.1_GH0.tar.gz) = 914662e16245e062ed73f90112fbb4548241300843a7772d8d441bb6859de45b
33
SIZE (AOMediaCodec-libavif-v1.1.1_GH0.tar.gz) = 13644189
4+
SHA256 (e649830525d3.patch) = 27bb6a863a4749137c5f5a0a9a0866a658d903f9e7b27ec99b0425662cf7caad
5+
SIZE (e649830525d3.patch) = 3252

graphics/libheif/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
PORTNAME= libheif
22
DISTVERSION= 1.19.5
3-
PORTREVISION= 1
3+
PORTREVISION= 2
44
CATEGORIES= graphics
55
MASTER_SITES= https://github.com/strukturag/${PORTNAME}/releases/download/v${DISTVERSION}/
66

7+
PATCH_SITES= https://github.com/strukturag/${PORTNAME}/commit/
8+
PATCHFILES+= 4bc4cfb66055.patch:-p1 # https://github.com/strukturag/libheif/pull/1475
9+
710
MAINTAINER= makc@FreeBSD.org
811
COMMENT= ISO/IEC 23008-12:2017 HEIF file format de- and encoder
912
WWW= https://github.com/strukturag/libheif

graphics/libheif/distinfo

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
TIMESTAMP = 1733234194
22
SHA256 (libheif-1.19.5.tar.gz) = d3cf0a76076115a070f9bc87cf5259b333a1f05806500045338798486d0afbaf
33
SIZE (libheif-1.19.5.tar.gz) = 1716856
4+
SHA256 (4bc4cfb66055.patch) = e5f7eaee94aebeef387e10be6d515d2ba25b250fb15829d160a0c1a3cebe5e24
5+
SIZE (4bc4cfb66055.patch) = 2755

multimedia/ffmpeg/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PORTNAME= ffmpeg
22
PORTVERSION= 6.1.2
3-
PORTREVISION= 7
3+
PORTREVISION= 8
44
PORTEPOCH= 1
55
CATEGORIES= multimedia audio net
66
MASTER_SITES= https://ffmpeg.org/releases/
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/d1ed5c06e3ed
2+
3+
--- libavcodec/libsvtav1.c.orig 2024-08-01 23:22:48 UTC
4+
+++ libavcodec/libsvtav1.c
5+
@@ -389,7 +389,11 @@ static av_cold int eb_enc_init(AVCodecContext *avctx)
6+
7+
svt_enc->eos_flag = EOS_NOT_REACHED;
8+
9+
+#if SVT_AV1_CHECK_VERSION(3, 0, 0)
10+
+ svt_ret = svt_av1_enc_init_handle(&svt_enc->svt_handle, &svt_enc->enc_params);
11+
+#else
12+
svt_ret = svt_av1_enc_init_handle(&svt_enc->svt_handle, svt_enc, &svt_enc->enc_params);
13+
+#endif
14+
if (svt_ret != EB_ErrorNone) {
15+
return svt_print_error(avctx, svt_ret, "Error initializing encoder handle");
16+
}

multimedia/ffmpeg4/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PORTNAME= ffmpeg
22
PORTVERSION= 4.4.4
3-
PORTREVISION= 17
3+
PORTREVISION= 18
44
CATEGORIES= multimedia audio net
55
MASTER_SITES= https://ffmpeg.org/releases/
66
PKGNAMESUFFIX= 4
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/d1ed5c06e3ed
2+
3+
--- libavcodec/libsvtav1.c.orig 2024-08-01 23:22:48 UTC
4+
+++ libavcodec/libsvtav1.c
5+
@@ -389,7 +389,11 @@ static av_cold int eb_enc_init(AVCodecContext *avctx)
6+
7+
svt_enc->eos_flag = EOS_NOT_REACHED;
8+
9+
+#if SVT_AV1_CHECK_VERSION(3, 0, 0)
10+
+ svt_ret = svt_av1_enc_init_handle(&svt_enc->svt_handle, &svt_enc->enc_params);
11+
+#else
12+
svt_ret = svt_av1_enc_init_handle(&svt_enc->svt_handle, svt_enc, &svt_enc->enc_params);
13+
+#endif
14+
if (svt_ret != EB_ErrorNone) {
15+
return svt_print_error(avctx, svt_ret, "Error initializing encoder handle");
16+
}

multimedia/gstreamer1-plugins-svt-av1/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PORTNAME= svt-av1
22
DISTVERSIONPREFIX= v
3-
DISTVERSION= 2.3.0
3+
DISTVERSION= 3.0.0
44
CATEGORIES= multimedia
55
PKGNAMEPREFIX= gstreamer1-plugins-
66

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
TIMESTAMP = 1730216648
2-
SHA256 (SVT-AV1-v2.3.0.tar.bz2) = f65358499f572a47d6b076dda73681a8162b02c0b619a551bc2d62ead8ee719a
3-
SIZE (SVT-AV1-v2.3.0.tar.bz2) = 10168419
1+
TIMESTAMP = 1740063071
2+
SHA256 (1480c1-cpuinfo-e649baa_GH0.tar.gz) = 32ab977a4344944beaa18058e6223fdc2740b2849c7c8b46d4361dbfb4550f11
3+
SIZE (1480c1-cpuinfo-e649baa_GH0.tar.gz) = 3542464
4+
SHA256 (SVT-AV1-v3.0.0.tar.bz2) = 852d3be2cea244dc76747a948dfcffb82d42dc42e1bd86830e591ea29b91c4fd
5+
SIZE (SVT-AV1-v3.0.0.tar.bz2) = 10177183

0 commit comments

Comments
 (0)