* [PR PATCH] X265 3.6
@ 2024-08-02 22:05 zlice
2024-08-03 0:57 ` x265: update to 3.6 zlice
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: zlice @ 2024-08-02 22:05 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 922 bytes --]
There is a new pull request by zlice against master on the void-packages repository
https://github.com/zlice/void-packages x265-3.6
https://github.com/void-linux/void-packages/pull/51611
X265 3.6
#### Testing the changes
- I tested the changes in this PR: **briefly**
#### Local build testing
- I built this PR locally for my native architecture, **x86_64**
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- **aarch64-musl**
#### Comments
Part #51478 - handbrake 1.8.1 needs newer x265 with some 'ambient light' patches, newer [libvpl](https://github.com/void-linux/void-packages/pull/51496) and ffmpeg6.0 down patches
When I forgot to revbump, xbps-src mentioned `digikam` needing a revbump? Not quite sure why as I don't see x265-devel in the template but I bumped anyway.
A patch file from https://github.com/void-linux/void-packages/pull/51611.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-x265-3.6-51611.patch --]
[-- Type: text/x-diff, Size: 13377 bytes --]
From 3e2a026c84acb1fb3471463aa7ca2d20b8cbb62d Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:25:28 -0400
Subject: [PATCH 01/11] x265: update to 3.6
---
common/shlibs | 2 +-
.../x265/patches/handbrake-ambientlight.patch | 115 ++++++++++++++++++
srcpkgs/x265/template | 4 +-
3 files changed, 118 insertions(+), 3 deletions(-)
create mode 100644 srcpkgs/x265/patches/handbrake-ambientlight.patch
diff --git a/common/shlibs b/common/shlibs
index 6f378121d0e4f4..ba31aee3e9b748 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1952,7 +1952,7 @@ libQt5TextToSpeech.so.5 qt5-speech-5.15.2_3
libQt5Bodymovin.so.5 qt5-lottie-5.15.2_3
libQt5WebKit.so.5 qt5-webkit-5.6.0_1
libQt5WebKitWidgets.so.5 qt5-webkit-5.6.0_1
-libx265.so.199 x265-3.5_1
+libx265.so.209 x265-3.6_1
libQt6Xdg.so.4 libqtxdg-4.0.0_1
libQt6XdgIconLoader.so.4 libqtxdg-4.0.0_1
libqwt-qt5.so.6.2 qwt-6.2.0_2
diff --git a/srcpkgs/x265/patches/handbrake-ambientlight.patch b/srcpkgs/x265/patches/handbrake-ambientlight.patch
new file mode 100644
index 00000000000000..ab36a9c35c9de4
--- /dev/null
+++ b/srcpkgs/x265/patches/handbrake-ambientlight.patch
@@ -0,0 +1,115 @@
+diff --git a/source/common/param.cpp b/source/common/param.cpp
+index 8c32fafa2..0b56235c9 100755
+--- a/source/common/param.cpp
++++ b/source/common/param.cpp
+@@ -378,6 +378,7 @@ void x265_param_default(x265_param* param)
+ param->preferredTransferCharacteristics = -1;
+ param->pictureStructure = -1;
+ param->bEmitCLL = 1;
++ param->bEmitAmbientViewingEnvironment = 0;
+
+ param->bEnableFrameDuplication = 0;
+ param->dupThreshold = 70;
+@@ -1880,6 +1881,7 @@ int x265_check_params(x265_param* param)
+ || param->bEmitIDRRecoverySEI
+ || !!param->interlaceMode
+ || param->preferredTransferCharacteristics > 1
++ || param->bEmitAmbientViewingEnvironment
+ || param->toneMapFile
+ || param->naluFile);
+
+@@ -2766,6 +2768,10 @@ void x265_copy_params(x265_param* dst, x265_param* src)
+ dst->bEmitCLL = src->bEmitCLL;
+ dst->maxCLL = src->maxCLL;
+ dst->maxFALL = src->maxFALL;
++ dst->ambientIlluminance = src->ambientIlluminance;
++ dst->ambientLightX = src->ambientLightX;
++ dst->ambientLightY = src->ambientLightY;
++ dst->bEmitAmbientViewingEnvironment = src->bEmitAmbientViewingEnvironment;
+ dst->log2MaxPocLsb = src->log2MaxPocLsb;
+ dst->bEmitVUIHRDInfo = src->bEmitVUIHRDInfo;
+ dst->bEmitVUITimingInfo = src->bEmitVUITimingInfo;
+diff --git a/source/encoder/encoder.cpp b/source/encoder/encoder.cpp
+index 5950f87e9..545283474 100644
+--- a/source/encoder/encoder.cpp
++++ b/source/encoder/encoder.cpp
+@@ -3276,6 +3276,15 @@ void Encoder::getStreamHeaders(NALList& list, Entropy& sbacCoder, Bitstream& bs)
+ }
+ }
+
++ if (m_param->bEmitAmbientViewingEnvironment)
++ {
++ SEIAmbientViewingEnvironment ambientsei;
++ ambientsei.ambientIlluminance = m_param->ambientIlluminance;
++ ambientsei.ambientLightX = m_param->ambientLightX;
++ ambientsei.ambientLightY = m_param->ambientLightY;
++ ambientsei.writeSEImessages(bs, m_sps, NAL_UNIT_PREFIX_SEI, list, m_param->bSingleSeiNal);
++ }
++
+ if (m_param->bEmitInfoSEI)
+ {
+ char *opts = x265_param2string(m_param, m_sps.conformanceWindow.rightOffset, m_sps.conformanceWindow.bottomOffset);
+diff --git a/source/encoder/sei.h b/source/encoder/sei.h
+index 03e210639..712e4efb4 100644
+--- a/source/encoder/sei.h
++++ b/source/encoder/sei.h
+@@ -242,6 +242,25 @@ public:
+ }
+ };
+
++class SEIAmbientViewingEnvironment : public SEI
++{
++public:
++ SEIAmbientViewingEnvironment()
++ {
++ m_payloadType = AMBIENT_VIEWING_ENVIRONMENT;
++ m_payloadSize = 8;
++ }
++ uint32_t ambientIlluminance;
++ uint16_t ambientLightX;
++ uint16_t ambientLightY;
++ void writeSEI(const SPS&)
++ {
++ WRITE_CODE(ambientIlluminance, 32, "ambient_illuminance");
++ WRITE_CODE(ambientLightX, 16, "ambient_light_x");
++ WRITE_CODE(ambientLightY, 16, "ambient_light_y");
++ }
++};
++
+ class SEIDecodedPictureHash : public SEI
+ {
+ public:
+diff --git a/source/x265.h b/source/x265.h
+index 9f3abd9d9..b6a4d3fe1 100644
+--- a/source/x265.h
++++ b/source/x265.h
+@@ -371,6 +371,7 @@ typedef enum
+ MASTERING_DISPLAY_INFO = 137,
+ CONTENT_LIGHT_LEVEL_INFO = 144,
+ ALTERNATIVE_TRANSFER_CHARACTERISTICS = 147,
++ AMBIENT_VIEWING_ENVIRONMENT = 148,
+ } SEIPayloadType;
+
+ typedef struct x265_sei_payload
+@@ -1903,6 +1904,11 @@ typedef struct x265_param
+ * value to that value. */
+ uint16_t maxLuma;
+
++ /* ISO/IEC 23008-2:2017, D.2.39 ambient viewing environment SEI message */
++ uint32_t ambientIlluminance;
++ uint16_t ambientLightX;
++ uint16_t ambientLightY;
++
+ /* Maximum of the picture order count */
+ int log2MaxPocLsb;
+
+@@ -2114,6 +2120,9 @@ typedef struct x265_param
+ /*Emit content light level info SEI*/
+ int bEmitCLL;
+
++ /* Emit ambient viewing environment SEI */
++ int bEmitAmbientViewingEnvironment;
++
+ /*
+ * Signals picture structure SEI timing message for every frame
+ * picture structure 7 is signalled for frame doubling
diff --git a/srcpkgs/x265/template b/srcpkgs/x265/template
index b55b56ed28df4c..08a365c512d108 100644
--- a/srcpkgs/x265/template
+++ b/srcpkgs/x265/template
@@ -1,6 +1,6 @@
# Template file for 'x265'
pkgname=x265
-version=3.5
+version=3.6
revision=1
_commit="f0c1022b6be1"
build_wrksrc=source
@@ -12,7 +12,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="http://x265.org/"
distfiles="https://bitbucket.org/multicoreware/x265_git/get/${version}.tar.gz"
-checksum=5ca3403c08de4716719575ec56c686b1eb55b078c0fe50a064dcf1ac20af1618
+checksum=206329b9599c78d06969a1b7b7bb939f7c99a459ab283b2e93f76854bd34ca7b
build_options="altivec assembly"
From b99eb33d6000c08bea583062fc22d3b541877aba Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:04 -0400
Subject: [PATCH 02/11] avidemux: revbump for x265-3.6
---
srcpkgs/avidemux/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/avidemux/template b/srcpkgs/avidemux/template
index 53519e72bd9822..d66f8524bd0e28 100644
--- a/srcpkgs/avidemux/template
+++ b/srcpkgs/avidemux/template
@@ -1,7 +1,7 @@
# Template file for 'avidemux'
pkgname=avidemux
version=2.8.1
-revision=1
+revision=2
# Can't be compiled for aarch64, arm* or mips*
archs="x86_64* i686*"
hostmakedepends="cmake pkg-config qt5-host-tools qt5-devel tar yasm"
From a059fb8986ae83d50b0f4de285cc0be6e4ddb120 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 03/11] baresip: revbump for x265-3.6
---
srcpkgs/baresip/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/baresip/template b/srcpkgs/baresip/template
index d005874699e9e0..e2a58b1a3e67e3 100644
--- a/srcpkgs/baresip/template
+++ b/srcpkgs/baresip/template
@@ -1,7 +1,7 @@
# Template file for 'baresip'
pkgname=baresip
version=3.14.0
-revision=2
+revision=3
build_style=cmake
hostmakedepends="pkg-config glib-devel"
makedepends="libgsm-devel libpng-devel openssl-devel libsndfile-devel
From 93b4f16e2530f58825fbef89f425120a9b916773 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 04/11] ffmpeg: revbump for x265-3.6
---
srcpkgs/ffmpeg/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/ffmpeg/template b/srcpkgs/ffmpeg/template
index 9c978d4d2f5f89..74bde86a04d97e 100644
--- a/srcpkgs/ffmpeg/template
+++ b/srcpkgs/ffmpeg/template
@@ -2,7 +2,7 @@
# audacity also needs to be bumped when a new ffmpeg version bumps libavformat's soname!
pkgname=ffmpeg
version=4.4.4
-revision=8
+revision=9
build_style=meta
short_desc="Decoding, encoding and streaming software (transitional dummy package)"
maintainer="Orphaned <orphan@voidlinux.org>"
From 7603a5ad1dd1da21101cab18664de828fae15694 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 05/11] ffmpeg6: revbump for x265-3.6
---
srcpkgs/ffmpeg6/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/ffmpeg6/template b/srcpkgs/ffmpeg6/template
index 1dcdd089c5354c..b779e9e2f4bce9 100644
--- a/srcpkgs/ffmpeg6/template
+++ b/srcpkgs/ffmpeg6/template
@@ -2,7 +2,7 @@
# audacity also needs to be bumped when a new ffmpeg version bumps libavformat's soname!
pkgname=ffmpeg6
version=6.0.1
-revision=2
+revision=3
hostmakedepends="pkg-config perl"
makedepends="zlib-devel bzip2-devel freetype-devel alsa-lib-devel libXfixes-devel
libXext-devel libXvMC-devel libxcb-devel lame-devel libtheora-devel
From 75edf55df89de1b49e0e9c003fa2b19e385f1251 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 06/11] gimp: revbump for x265-3.6
---
srcpkgs/gimp/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/gimp/template b/srcpkgs/gimp/template
index 3ed1fc7cc9c740..653c5c0f41154c 100644
--- a/srcpkgs/gimp/template
+++ b/srcpkgs/gimp/template
@@ -1,7 +1,7 @@
# Template file for 'gimp'
pkgname=gimp
version=2.10.38
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--disable-check-update --datadir=/usr/share --disable-python"
hostmakedepends="automake gegl gettext-devel glib-devel gtk+-devel intltool
From ff51fa1883389dd1eec8366eb9b1b1a9be65321f Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 07/11] gst-plugins-bad1: revbump for x265-3.6
---
srcpkgs/gst-plugins-bad1/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/gst-plugins-bad1/template b/srcpkgs/gst-plugins-bad1/template
index 92d87d7a661cbd..13fc9f8fe7f640 100644
--- a/srcpkgs/gst-plugins-bad1/template
+++ b/srcpkgs/gst-plugins-bad1/template
@@ -1,7 +1,7 @@
# Template file for 'gst-plugins-bad1'
pkgname=gst-plugins-bad1
version=1.24.6
-revision=1
+revision=2
build_helper="gir"
build_style=meson
configure_args="-Dpackage-origin=https://voidlinux.org -Ddoc=disabled
From 8f99c36154793286c573bd689c643e229565126c Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 08/11] handbrake: revbump for x265-3.6
---
srcpkgs/handbrake/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/handbrake/template b/srcpkgs/handbrake/template
index d0e04f3d49111e..3bb9d2ce3f0c32 100644
--- a/srcpkgs/handbrake/template
+++ b/srcpkgs/handbrake/template
@@ -1,7 +1,7 @@
# Template file for 'handbrake'
pkgname=handbrake
version=1.6.1
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--force --disable-gtk-update-checks --disable-df-fetch --harden
$(vopt_enable fdk_aac fdk-aac) $(vopt_enable nvenc) $(vopt_enable qsv)"
From 49b3754ead6fb4c54543d760ef4f05eb40949f17 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 09/11] libheif: revbump for x265-3.6
---
srcpkgs/libheif/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/libheif/template b/srcpkgs/libheif/template
index 5bd3133095f52b..9f5db189d908ef 100644
--- a/srcpkgs/libheif/template
+++ b/srcpkgs/libheif/template
@@ -1,7 +1,7 @@
# Template file for 'libheif'
pkgname=libheif
version=1.17.5
-revision=1
+revision=2
build_style=cmake
makedepends="libjpeg-turbo-devel libpng-devel libde265-devel x265-devel
libaom-devel"
From 866a00e0e32b33e0e59b7baa7e7a467e707a6e28 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 10/11] vlc: revbump for x265-3.6
---
srcpkgs/vlc/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/vlc/template b/srcpkgs/vlc/template
index 91ccd21acbeaf0..854e8815c90a9d 100644
--- a/srcpkgs/vlc/template
+++ b/srcpkgs/vlc/template
@@ -1,7 +1,7 @@
# Template file for 'vlc'
pkgname=vlc
version=3.0.21
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--disable-gme --disable-libtar --enable-jack
--enable-live555 --disable-fluidsynth --enable-dvdread
From 270fd9c62978055829b2cfbef284421ef824cc62 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:34:40 -0400
Subject: [PATCH 11/11] digikam: revbump for x265-3.6
---
srcpkgs/digikam/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/digikam/template b/srcpkgs/digikam/template
index 4d08bf39526c88..51611e192f39a9 100644
--- a/srcpkgs/digikam/template
+++ b/srcpkgs/digikam/template
@@ -1,7 +1,7 @@
# Template file for 'digikam'
pkgname=digikam
version=8.4.0
-revision=2
+revision=3
build_style=cmake
configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake
-DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DBUILD_WITH_QT6=ON
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: x265: update to 3.6
2024-08-02 22:05 [PR PATCH] X265 3.6 zlice
@ 2024-08-03 0:57 ` zlice
2024-08-03 1:27 ` [PR PATCH] [Updated] " zlice
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: zlice @ 2024-08-03 0:57 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 228 bytes --]
New comment by zlice on void-packages repository
https://github.com/void-linux/void-packages/pull/51611#issuecomment-2266308876
Comment:
`Failed to install 'x265' and 'handbrake-1.5.1_1'` riiiiiight... i686 ci-repo messed up?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PR PATCH] [Updated] x265: update to 3.6
2024-08-02 22:05 [PR PATCH] X265 3.6 zlice
2024-08-03 0:57 ` x265: update to 3.6 zlice
@ 2024-08-03 1:27 ` zlice
2024-08-03 1:28 ` zlice
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: zlice @ 2024-08-03 1:27 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 985 bytes --]
There is an updated pull request by zlice against master on the void-packages repository
https://github.com/zlice/void-packages x265-3.6
https://github.com/void-linux/void-packages/pull/51611
x265: update to 3.6
#### Testing the changes
- I tested the changes in this PR: **briefly**
#### Local build testing
- I built this PR locally for my native architecture, **x86_64**
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- **aarch64-musl**
#### Comments
Part #51478 - handbrake 1.8.1 needs newer x265 with some 'ambient light' patches, newer [libvpl](https://github.com/void-linux/void-packages/pull/51496) (this PR conflicts revbumps with libvpl) and ffmpeg6.0 down patches
When I forgot to update shlibs, xbps-src mentioned `digikam` needing a revbump? Not quite sure why as I don't see x265-devel in the template but I bumped anyway.
A patch file from https://github.com/void-linux/void-packages/pull/51611.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-x265-3.6-51611.patch --]
[-- Type: text/x-diff, Size: 14939 bytes --]
From f4c5ec019a7583728b4c8247a29525bf39e1602b Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:25:28 -0400
Subject: [PATCH 01/11] x265: update to 3.6
---
common/shlibs | 2 +-
.../x265/patches/handbrake-ambientlight.patch | 115 ++++++++++++++++++
srcpkgs/x265/template | 4 +-
3 files changed, 118 insertions(+), 3 deletions(-)
create mode 100644 srcpkgs/x265/patches/handbrake-ambientlight.patch
diff --git a/common/shlibs b/common/shlibs
index 6f378121d0e4f4..ba31aee3e9b748 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1952,7 +1952,7 @@ libQt5TextToSpeech.so.5 qt5-speech-5.15.2_3
libQt5Bodymovin.so.5 qt5-lottie-5.15.2_3
libQt5WebKit.so.5 qt5-webkit-5.6.0_1
libQt5WebKitWidgets.so.5 qt5-webkit-5.6.0_1
-libx265.so.199 x265-3.5_1
+libx265.so.209 x265-3.6_1
libQt6Xdg.so.4 libqtxdg-4.0.0_1
libQt6XdgIconLoader.so.4 libqtxdg-4.0.0_1
libqwt-qt5.so.6.2 qwt-6.2.0_2
diff --git a/srcpkgs/x265/patches/handbrake-ambientlight.patch b/srcpkgs/x265/patches/handbrake-ambientlight.patch
new file mode 100644
index 00000000000000..ab36a9c35c9de4
--- /dev/null
+++ b/srcpkgs/x265/patches/handbrake-ambientlight.patch
@@ -0,0 +1,115 @@
+diff --git a/source/common/param.cpp b/source/common/param.cpp
+index 8c32fafa2..0b56235c9 100755
+--- a/source/common/param.cpp
++++ b/source/common/param.cpp
+@@ -378,6 +378,7 @@ void x265_param_default(x265_param* param)
+ param->preferredTransferCharacteristics = -1;
+ param->pictureStructure = -1;
+ param->bEmitCLL = 1;
++ param->bEmitAmbientViewingEnvironment = 0;
+
+ param->bEnableFrameDuplication = 0;
+ param->dupThreshold = 70;
+@@ -1880,6 +1881,7 @@ int x265_check_params(x265_param* param)
+ || param->bEmitIDRRecoverySEI
+ || !!param->interlaceMode
+ || param->preferredTransferCharacteristics > 1
++ || param->bEmitAmbientViewingEnvironment
+ || param->toneMapFile
+ || param->naluFile);
+
+@@ -2766,6 +2768,10 @@ void x265_copy_params(x265_param* dst, x265_param* src)
+ dst->bEmitCLL = src->bEmitCLL;
+ dst->maxCLL = src->maxCLL;
+ dst->maxFALL = src->maxFALL;
++ dst->ambientIlluminance = src->ambientIlluminance;
++ dst->ambientLightX = src->ambientLightX;
++ dst->ambientLightY = src->ambientLightY;
++ dst->bEmitAmbientViewingEnvironment = src->bEmitAmbientViewingEnvironment;
+ dst->log2MaxPocLsb = src->log2MaxPocLsb;
+ dst->bEmitVUIHRDInfo = src->bEmitVUIHRDInfo;
+ dst->bEmitVUITimingInfo = src->bEmitVUITimingInfo;
+diff --git a/source/encoder/encoder.cpp b/source/encoder/encoder.cpp
+index 5950f87e9..545283474 100644
+--- a/source/encoder/encoder.cpp
++++ b/source/encoder/encoder.cpp
+@@ -3276,6 +3276,15 @@ void Encoder::getStreamHeaders(NALList& list, Entropy& sbacCoder, Bitstream& bs)
+ }
+ }
+
++ if (m_param->bEmitAmbientViewingEnvironment)
++ {
++ SEIAmbientViewingEnvironment ambientsei;
++ ambientsei.ambientIlluminance = m_param->ambientIlluminance;
++ ambientsei.ambientLightX = m_param->ambientLightX;
++ ambientsei.ambientLightY = m_param->ambientLightY;
++ ambientsei.writeSEImessages(bs, m_sps, NAL_UNIT_PREFIX_SEI, list, m_param->bSingleSeiNal);
++ }
++
+ if (m_param->bEmitInfoSEI)
+ {
+ char *opts = x265_param2string(m_param, m_sps.conformanceWindow.rightOffset, m_sps.conformanceWindow.bottomOffset);
+diff --git a/source/encoder/sei.h b/source/encoder/sei.h
+index 03e210639..712e4efb4 100644
+--- a/source/encoder/sei.h
++++ b/source/encoder/sei.h
+@@ -242,6 +242,25 @@ public:
+ }
+ };
+
++class SEIAmbientViewingEnvironment : public SEI
++{
++public:
++ SEIAmbientViewingEnvironment()
++ {
++ m_payloadType = AMBIENT_VIEWING_ENVIRONMENT;
++ m_payloadSize = 8;
++ }
++ uint32_t ambientIlluminance;
++ uint16_t ambientLightX;
++ uint16_t ambientLightY;
++ void writeSEI(const SPS&)
++ {
++ WRITE_CODE(ambientIlluminance, 32, "ambient_illuminance");
++ WRITE_CODE(ambientLightX, 16, "ambient_light_x");
++ WRITE_CODE(ambientLightY, 16, "ambient_light_y");
++ }
++};
++
+ class SEIDecodedPictureHash : public SEI
+ {
+ public:
+diff --git a/source/x265.h b/source/x265.h
+index 9f3abd9d9..b6a4d3fe1 100644
+--- a/source/x265.h
++++ b/source/x265.h
+@@ -371,6 +371,7 @@ typedef enum
+ MASTERING_DISPLAY_INFO = 137,
+ CONTENT_LIGHT_LEVEL_INFO = 144,
+ ALTERNATIVE_TRANSFER_CHARACTERISTICS = 147,
++ AMBIENT_VIEWING_ENVIRONMENT = 148,
+ } SEIPayloadType;
+
+ typedef struct x265_sei_payload
+@@ -1903,6 +1904,11 @@ typedef struct x265_param
+ * value to that value. */
+ uint16_t maxLuma;
+
++ /* ISO/IEC 23008-2:2017, D.2.39 ambient viewing environment SEI message */
++ uint32_t ambientIlluminance;
++ uint16_t ambientLightX;
++ uint16_t ambientLightY;
++
+ /* Maximum of the picture order count */
+ int log2MaxPocLsb;
+
+@@ -2114,6 +2120,9 @@ typedef struct x265_param
+ /*Emit content light level info SEI*/
+ int bEmitCLL;
+
++ /* Emit ambient viewing environment SEI */
++ int bEmitAmbientViewingEnvironment;
++
+ /*
+ * Signals picture structure SEI timing message for every frame
+ * picture structure 7 is signalled for frame doubling
diff --git a/srcpkgs/x265/template b/srcpkgs/x265/template
index b55b56ed28df4c..08a365c512d108 100644
--- a/srcpkgs/x265/template
+++ b/srcpkgs/x265/template
@@ -1,6 +1,6 @@
# Template file for 'x265'
pkgname=x265
-version=3.5
+version=3.6
revision=1
_commit="f0c1022b6be1"
build_wrksrc=source
@@ -12,7 +12,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="http://x265.org/"
distfiles="https://bitbucket.org/multicoreware/x265_git/get/${version}.tar.gz"
-checksum=5ca3403c08de4716719575ec56c686b1eb55b078c0fe50a064dcf1ac20af1618
+checksum=206329b9599c78d06969a1b7b7bb939f7c99a459ab283b2e93f76854bd34ca7b
build_options="altivec assembly"
From a7940257d8c21c2612493b015901fff44b7c8912 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:04 -0400
Subject: [PATCH 02/11] avidemux: revbump for x265-3.6
---
srcpkgs/avidemux/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/avidemux/template b/srcpkgs/avidemux/template
index 53519e72bd9822..d66f8524bd0e28 100644
--- a/srcpkgs/avidemux/template
+++ b/srcpkgs/avidemux/template
@@ -1,7 +1,7 @@
# Template file for 'avidemux'
pkgname=avidemux
version=2.8.1
-revision=1
+revision=2
# Can't be compiled for aarch64, arm* or mips*
archs="x86_64* i686*"
hostmakedepends="cmake pkg-config qt5-host-tools qt5-devel tar yasm"
From 487febc3640362bdbf24cb9c9fb17c560e7c6f8f Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 03/11] baresip: revbump for x265-3.6
---
srcpkgs/baresip/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/baresip/template b/srcpkgs/baresip/template
index d005874699e9e0..e2a58b1a3e67e3 100644
--- a/srcpkgs/baresip/template
+++ b/srcpkgs/baresip/template
@@ -1,7 +1,7 @@
# Template file for 'baresip'
pkgname=baresip
version=3.14.0
-revision=2
+revision=3
build_style=cmake
hostmakedepends="pkg-config glib-devel"
makedepends="libgsm-devel libpng-devel openssl-devel libsndfile-devel
From 54d21eab1ab1b4220345e03f4927aac6b8c9933a Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 04/11] ffmpeg: revbump for x265-3.6
---
srcpkgs/ffmpeg/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/ffmpeg/template b/srcpkgs/ffmpeg/template
index 9c978d4d2f5f89..74bde86a04d97e 100644
--- a/srcpkgs/ffmpeg/template
+++ b/srcpkgs/ffmpeg/template
@@ -2,7 +2,7 @@
# audacity also needs to be bumped when a new ffmpeg version bumps libavformat's soname!
pkgname=ffmpeg
version=4.4.4
-revision=8
+revision=9
build_style=meta
short_desc="Decoding, encoding and streaming software (transitional dummy package)"
maintainer="Orphaned <orphan@voidlinux.org>"
From c0091a103fc7a814c4a3bfeb242879a3dae2d7aa Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 05/11] ffmpeg6: revbump for x265-3.6
---
srcpkgs/ffmpeg6/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/ffmpeg6/template b/srcpkgs/ffmpeg6/template
index 1dcdd089c5354c..b779e9e2f4bce9 100644
--- a/srcpkgs/ffmpeg6/template
+++ b/srcpkgs/ffmpeg6/template
@@ -2,7 +2,7 @@
# audacity also needs to be bumped when a new ffmpeg version bumps libavformat's soname!
pkgname=ffmpeg6
version=6.0.1
-revision=2
+revision=3
hostmakedepends="pkg-config perl"
makedepends="zlib-devel bzip2-devel freetype-devel alsa-lib-devel libXfixes-devel
libXext-devel libXvMC-devel libxcb-devel lame-devel libtheora-devel
From 5606d3ce9f125399cdfa912be1efcaf688b4d96f Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 06/11] gimp: revbump for x265-3.6
---
srcpkgs/gimp/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/gimp/template b/srcpkgs/gimp/template
index 3ed1fc7cc9c740..653c5c0f41154c 100644
--- a/srcpkgs/gimp/template
+++ b/srcpkgs/gimp/template
@@ -1,7 +1,7 @@
# Template file for 'gimp'
pkgname=gimp
version=2.10.38
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--disable-check-update --datadir=/usr/share --disable-python"
hostmakedepends="automake gegl gettext-devel glib-devel gtk+-devel intltool
From 06478eddde7d09d16cebdb434f752101b7c616a2 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 07/11] gst-plugins-bad1: revbump for x265-3.6
---
srcpkgs/gst-plugins-bad1/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/gst-plugins-bad1/template b/srcpkgs/gst-plugins-bad1/template
index 92d87d7a661cbd..13fc9f8fe7f640 100644
--- a/srcpkgs/gst-plugins-bad1/template
+++ b/srcpkgs/gst-plugins-bad1/template
@@ -1,7 +1,7 @@
# Template file for 'gst-plugins-bad1'
pkgname=gst-plugins-bad1
version=1.24.6
-revision=1
+revision=2
build_helper="gir"
build_style=meson
configure_args="-Dpackage-origin=https://voidlinux.org -Ddoc=disabled
From 1ceee7fc5a89639ed543b614d6a9ca6bca9d6780 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 08/11] handbrake: revbump for x265-3.6
---
srcpkgs/handbrake/template | 23 ++++++++++++++++++-----
1 file changed, 18 insertions(+), 5 deletions(-)
diff --git a/srcpkgs/handbrake/template b/srcpkgs/handbrake/template
index d0e04f3d49111e..31d47f11f2133d 100644
--- a/srcpkgs/handbrake/template
+++ b/srcpkgs/handbrake/template
@@ -1,7 +1,7 @@
# Template file for 'handbrake'
pkgname=handbrake
version=1.6.1
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--force --disable-gtk-update-checks --disable-df-fetch --harden
$(vopt_enable fdk_aac fdk-aac) $(vopt_enable nvenc) $(vopt_enable qsv)"
@@ -12,7 +12,8 @@ makedepends="bzip2-devel ffmpeg6-devel gst-plugins-base1-devel gtk+3-devel
jansson-devel lame-devel libass-devel libbluray-devel libdav1d-devel
libdvdnav-devel libdvdread-devel libgudev-devel libnuma-devel
libsamplerate-devel libtheora-devel libvorbis-devel libvpx-devel libxml2-devel
- opus-devel speex-devel x264-devel x265-devel zimg-devel libsvt-av1-devel
+ opus-devel speex-devel x264-devel x265-devel zimg-devel
+ $(vopt_if svt_av1 libsvt-av1-devel)
$(vopt_if fdk_aac fdk-aac-devel)
$(vopt_if qsv 'libva-devel libdrm-devel oneVPL-devel')
$(vopt_if nvenc nv-codec-headers)"
@@ -26,12 +27,19 @@ distfiles="https://github.com/HandBrake/HandBrake/releases/download/${version}/H
checksum=94ccfe03db917a91650000c510f7fd53f844da19f19ad4b4be1b8f6bc31a8d4c
nocross=yes
-build_options="fdk_aac nvenc qsv"
+build_options="fdk_aac nvenc svt_av1 qsv"
case "$XBPS_TARGET_MACHINE" in
- x86_64*|i686*)
+ x86_64*)
CFLAGS="-msse"
- build_options_default="nvenc qsv"
+ build_options_default="nvenc svt_av1 qsv"
+ ;;
+ i686*)
+ CFLAGS="-msse"
+ build_options_default="nvenc"
+ ;;
+ *)
+ build_options_default="svt_av1"
;;
esac
@@ -42,6 +50,11 @@ pre_configure() {
x265 zimg svt-av1 libvpl; do
vsed -i "/MODULES += contrib\/${module}/d" make/include/main.defs
done
+ if [[ "$XBPS_TARGET_MACHINE" = "i686"* ]] ; then
+ sed -e 's/-lSvtAv1Enc //g' -i gtk/configure.ac
+ sed -e 's/ SvtAv1Enc//g' -i test/module.defs
+ sed -e 's/ SvtAv1Enc//g' -i libhb/module.defs
+ fi
}
pre_build() {
From a2f1f141ee79837ee4941127be2af1fdadfc7ff2 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 09/11] libheif: revbump for x265-3.6
---
srcpkgs/libheif/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/libheif/template b/srcpkgs/libheif/template
index 5bd3133095f52b..9f5db189d908ef 100644
--- a/srcpkgs/libheif/template
+++ b/srcpkgs/libheif/template
@@ -1,7 +1,7 @@
# Template file for 'libheif'
pkgname=libheif
version=1.17.5
-revision=1
+revision=2
build_style=cmake
makedepends="libjpeg-turbo-devel libpng-devel libde265-devel x265-devel
libaom-devel"
From d6a91ad708c0de3ff45d7485e4984a6b3e9c48d9 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 10/11] vlc: revbump for x265-3.6
---
srcpkgs/vlc/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/vlc/template b/srcpkgs/vlc/template
index 91ccd21acbeaf0..854e8815c90a9d 100644
--- a/srcpkgs/vlc/template
+++ b/srcpkgs/vlc/template
@@ -1,7 +1,7 @@
# Template file for 'vlc'
pkgname=vlc
version=3.0.21
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--disable-gme --disable-libtar --enable-jack
--enable-live555 --disable-fluidsynth --enable-dvdread
From 676bcef7b1f3a973eefe77be870f96293e0adfc2 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:34:40 -0400
Subject: [PATCH 11/11] digikam: revbump for x265-3.6
---
srcpkgs/digikam/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/digikam/template b/srcpkgs/digikam/template
index 4d08bf39526c88..51611e192f39a9 100644
--- a/srcpkgs/digikam/template
+++ b/srcpkgs/digikam/template
@@ -1,7 +1,7 @@
# Template file for 'digikam'
pkgname=digikam
version=8.4.0
-revision=2
+revision=3
build_style=cmake
configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake
-DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DBUILD_WITH_QT6=ON
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: x265: update to 3.6
2024-08-02 22:05 [PR PATCH] X265 3.6 zlice
2024-08-03 0:57 ` x265: update to 3.6 zlice
2024-08-03 1:27 ` [PR PATCH] [Updated] " zlice
@ 2024-08-03 1:28 ` zlice
2024-08-03 18:31 ` [PR PATCH] [Updated] " zlice
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: zlice @ 2024-08-03 1:28 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 570 bytes --]
New comment by zlice on void-packages repository
https://github.com/void-linux/void-packages/pull/51611#issuecomment-2266318354
Comment:
it would appear handbrake i686 was never built because of svt-av1. worked around that...though i doubt many people are using 32bit handbrake. if `archs=` is better i can do that
https://github.com/void-linux/void-packages/blob/master/srcpkgs/svt-av1/template
```
=> ERROR: libsvt-av1-devel-1.7.0_1: cannot be built, it's currently broken; see the build log:
=> ERROR: libsvt-av1-devel-1.7.0_1: 32-bit is not supported
```
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PR PATCH] [Updated] x265: update to 3.6
2024-08-02 22:05 [PR PATCH] X265 3.6 zlice
` (2 preceding siblings ...)
2024-08-03 1:28 ` zlice
@ 2024-08-03 18:31 ` zlice
2024-08-06 18:47 ` zlice
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: zlice @ 2024-08-03 18:31 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 985 bytes --]
There is an updated pull request by zlice against master on the void-packages repository
https://github.com/zlice/void-packages x265-3.6
https://github.com/void-linux/void-packages/pull/51611
x265: update to 3.6
#### Testing the changes
- I tested the changes in this PR: **briefly**
#### Local build testing
- I built this PR locally for my native architecture, **x86_64**
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- **aarch64-musl**
#### Comments
Part #51478 - handbrake 1.8.1 needs newer x265 with some 'ambient light' patches, newer [libvpl](https://github.com/void-linux/void-packages/pull/51496) (this PR conflicts revbumps with libvpl) and ffmpeg6.0 down patches
When I forgot to update shlibs, xbps-src mentioned `digikam` needing a revbump? Not quite sure why as I don't see x265-devel in the template but I bumped anyway.
A patch file from https://github.com/void-linux/void-packages/pull/51611.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-x265-3.6-51611.patch --]
[-- Type: text/x-diff, Size: 14994 bytes --]
From 5fb9f4a50a587156891f69d4561b7c7f4ab182df Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:25:28 -0400
Subject: [PATCH 01/11] x265: update to 3.6
---
common/shlibs | 2 +-
.../x265/patches/handbrake-ambientlight.patch | 115 ++++++++++++++++++
srcpkgs/x265/template | 5 +-
3 files changed, 118 insertions(+), 4 deletions(-)
create mode 100644 srcpkgs/x265/patches/handbrake-ambientlight.patch
diff --git a/common/shlibs b/common/shlibs
index 6f378121d0e4f4..ba31aee3e9b748 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -1952,7 +1952,7 @@ libQt5TextToSpeech.so.5 qt5-speech-5.15.2_3
libQt5Bodymovin.so.5 qt5-lottie-5.15.2_3
libQt5WebKit.so.5 qt5-webkit-5.6.0_1
libQt5WebKitWidgets.so.5 qt5-webkit-5.6.0_1
-libx265.so.199 x265-3.5_1
+libx265.so.209 x265-3.6_1
libQt6Xdg.so.4 libqtxdg-4.0.0_1
libQt6XdgIconLoader.so.4 libqtxdg-4.0.0_1
libqwt-qt5.so.6.2 qwt-6.2.0_2
diff --git a/srcpkgs/x265/patches/handbrake-ambientlight.patch b/srcpkgs/x265/patches/handbrake-ambientlight.patch
new file mode 100644
index 00000000000000..ab36a9c35c9de4
--- /dev/null
+++ b/srcpkgs/x265/patches/handbrake-ambientlight.patch
@@ -0,0 +1,115 @@
+diff --git a/source/common/param.cpp b/source/common/param.cpp
+index 8c32fafa2..0b56235c9 100755
+--- a/source/common/param.cpp
++++ b/source/common/param.cpp
+@@ -378,6 +378,7 @@ void x265_param_default(x265_param* param)
+ param->preferredTransferCharacteristics = -1;
+ param->pictureStructure = -1;
+ param->bEmitCLL = 1;
++ param->bEmitAmbientViewingEnvironment = 0;
+
+ param->bEnableFrameDuplication = 0;
+ param->dupThreshold = 70;
+@@ -1880,6 +1881,7 @@ int x265_check_params(x265_param* param)
+ || param->bEmitIDRRecoverySEI
+ || !!param->interlaceMode
+ || param->preferredTransferCharacteristics > 1
++ || param->bEmitAmbientViewingEnvironment
+ || param->toneMapFile
+ || param->naluFile);
+
+@@ -2766,6 +2768,10 @@ void x265_copy_params(x265_param* dst, x265_param* src)
+ dst->bEmitCLL = src->bEmitCLL;
+ dst->maxCLL = src->maxCLL;
+ dst->maxFALL = src->maxFALL;
++ dst->ambientIlluminance = src->ambientIlluminance;
++ dst->ambientLightX = src->ambientLightX;
++ dst->ambientLightY = src->ambientLightY;
++ dst->bEmitAmbientViewingEnvironment = src->bEmitAmbientViewingEnvironment;
+ dst->log2MaxPocLsb = src->log2MaxPocLsb;
+ dst->bEmitVUIHRDInfo = src->bEmitVUIHRDInfo;
+ dst->bEmitVUITimingInfo = src->bEmitVUITimingInfo;
+diff --git a/source/encoder/encoder.cpp b/source/encoder/encoder.cpp
+index 5950f87e9..545283474 100644
+--- a/source/encoder/encoder.cpp
++++ b/source/encoder/encoder.cpp
+@@ -3276,6 +3276,15 @@ void Encoder::getStreamHeaders(NALList& list, Entropy& sbacCoder, Bitstream& bs)
+ }
+ }
+
++ if (m_param->bEmitAmbientViewingEnvironment)
++ {
++ SEIAmbientViewingEnvironment ambientsei;
++ ambientsei.ambientIlluminance = m_param->ambientIlluminance;
++ ambientsei.ambientLightX = m_param->ambientLightX;
++ ambientsei.ambientLightY = m_param->ambientLightY;
++ ambientsei.writeSEImessages(bs, m_sps, NAL_UNIT_PREFIX_SEI, list, m_param->bSingleSeiNal);
++ }
++
+ if (m_param->bEmitInfoSEI)
+ {
+ char *opts = x265_param2string(m_param, m_sps.conformanceWindow.rightOffset, m_sps.conformanceWindow.bottomOffset);
+diff --git a/source/encoder/sei.h b/source/encoder/sei.h
+index 03e210639..712e4efb4 100644
+--- a/source/encoder/sei.h
++++ b/source/encoder/sei.h
+@@ -242,6 +242,25 @@ public:
+ }
+ };
+
++class SEIAmbientViewingEnvironment : public SEI
++{
++public:
++ SEIAmbientViewingEnvironment()
++ {
++ m_payloadType = AMBIENT_VIEWING_ENVIRONMENT;
++ m_payloadSize = 8;
++ }
++ uint32_t ambientIlluminance;
++ uint16_t ambientLightX;
++ uint16_t ambientLightY;
++ void writeSEI(const SPS&)
++ {
++ WRITE_CODE(ambientIlluminance, 32, "ambient_illuminance");
++ WRITE_CODE(ambientLightX, 16, "ambient_light_x");
++ WRITE_CODE(ambientLightY, 16, "ambient_light_y");
++ }
++};
++
+ class SEIDecodedPictureHash : public SEI
+ {
+ public:
+diff --git a/source/x265.h b/source/x265.h
+index 9f3abd9d9..b6a4d3fe1 100644
+--- a/source/x265.h
++++ b/source/x265.h
+@@ -371,6 +371,7 @@ typedef enum
+ MASTERING_DISPLAY_INFO = 137,
+ CONTENT_LIGHT_LEVEL_INFO = 144,
+ ALTERNATIVE_TRANSFER_CHARACTERISTICS = 147,
++ AMBIENT_VIEWING_ENVIRONMENT = 148,
+ } SEIPayloadType;
+
+ typedef struct x265_sei_payload
+@@ -1903,6 +1904,11 @@ typedef struct x265_param
+ * value to that value. */
+ uint16_t maxLuma;
+
++ /* ISO/IEC 23008-2:2017, D.2.39 ambient viewing environment SEI message */
++ uint32_t ambientIlluminance;
++ uint16_t ambientLightX;
++ uint16_t ambientLightY;
++
+ /* Maximum of the picture order count */
+ int log2MaxPocLsb;
+
+@@ -2114,6 +2120,9 @@ typedef struct x265_param
+ /*Emit content light level info SEI*/
+ int bEmitCLL;
+
++ /* Emit ambient viewing environment SEI */
++ int bEmitAmbientViewingEnvironment;
++
+ /*
+ * Signals picture structure SEI timing message for every frame
+ * picture structure 7 is signalled for frame doubling
diff --git a/srcpkgs/x265/template b/srcpkgs/x265/template
index b55b56ed28df4c..7991e00bac7642 100644
--- a/srcpkgs/x265/template
+++ b/srcpkgs/x265/template
@@ -1,8 +1,7 @@
# Template file for 'x265'
pkgname=x265
-version=3.5
+version=3.6
revision=1
-_commit="f0c1022b6be1"
build_wrksrc=source
build_style=cmake
configure_args="-DENABLE_PIC=1"
@@ -12,7 +11,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="http://x265.org/"
distfiles="https://bitbucket.org/multicoreware/x265_git/get/${version}.tar.gz"
-checksum=5ca3403c08de4716719575ec56c686b1eb55b078c0fe50a064dcf1ac20af1618
+checksum=206329b9599c78d06969a1b7b7bb939f7c99a459ab283b2e93f76854bd34ca7b
build_options="altivec assembly"
From 6917b9d22e403a72ed2930736abd5e7e4146130a Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:04 -0400
Subject: [PATCH 02/11] avidemux: revbump for x265-3.6
---
srcpkgs/avidemux/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/avidemux/template b/srcpkgs/avidemux/template
index 53519e72bd9822..d66f8524bd0e28 100644
--- a/srcpkgs/avidemux/template
+++ b/srcpkgs/avidemux/template
@@ -1,7 +1,7 @@
# Template file for 'avidemux'
pkgname=avidemux
version=2.8.1
-revision=1
+revision=2
# Can't be compiled for aarch64, arm* or mips*
archs="x86_64* i686*"
hostmakedepends="cmake pkg-config qt5-host-tools qt5-devel tar yasm"
From c8aea8496688d37858ba7bef53f34e1315ce40de Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 03/11] baresip: revbump for x265-3.6
---
srcpkgs/baresip/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/baresip/template b/srcpkgs/baresip/template
index d005874699e9e0..e2a58b1a3e67e3 100644
--- a/srcpkgs/baresip/template
+++ b/srcpkgs/baresip/template
@@ -1,7 +1,7 @@
# Template file for 'baresip'
pkgname=baresip
version=3.14.0
-revision=2
+revision=3
build_style=cmake
hostmakedepends="pkg-config glib-devel"
makedepends="libgsm-devel libpng-devel openssl-devel libsndfile-devel
From e65dc38a850af58cb9ef83eec30a6d1487b0782e Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 04/11] ffmpeg: revbump for x265-3.6
---
srcpkgs/ffmpeg/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/ffmpeg/template b/srcpkgs/ffmpeg/template
index 9c978d4d2f5f89..74bde86a04d97e 100644
--- a/srcpkgs/ffmpeg/template
+++ b/srcpkgs/ffmpeg/template
@@ -2,7 +2,7 @@
# audacity also needs to be bumped when a new ffmpeg version bumps libavformat's soname!
pkgname=ffmpeg
version=4.4.4
-revision=8
+revision=9
build_style=meta
short_desc="Decoding, encoding and streaming software (transitional dummy package)"
maintainer="Orphaned <orphan@voidlinux.org>"
From 3345a98be1dfe6abc42fadc24ba01f1a8c2c634f Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 05/11] ffmpeg6: revbump for x265-3.6
---
srcpkgs/ffmpeg6/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/ffmpeg6/template b/srcpkgs/ffmpeg6/template
index 1dcdd089c5354c..b779e9e2f4bce9 100644
--- a/srcpkgs/ffmpeg6/template
+++ b/srcpkgs/ffmpeg6/template
@@ -2,7 +2,7 @@
# audacity also needs to be bumped when a new ffmpeg version bumps libavformat's soname!
pkgname=ffmpeg6
version=6.0.1
-revision=2
+revision=3
hostmakedepends="pkg-config perl"
makedepends="zlib-devel bzip2-devel freetype-devel alsa-lib-devel libXfixes-devel
libXext-devel libXvMC-devel libxcb-devel lame-devel libtheora-devel
From 81467f4b8a329eea564917353132d39f6cc9f65d Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 06/11] gimp: revbump for x265-3.6
---
srcpkgs/gimp/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/gimp/template b/srcpkgs/gimp/template
index 3ed1fc7cc9c740..653c5c0f41154c 100644
--- a/srcpkgs/gimp/template
+++ b/srcpkgs/gimp/template
@@ -1,7 +1,7 @@
# Template file for 'gimp'
pkgname=gimp
version=2.10.38
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--disable-check-update --datadir=/usr/share --disable-python"
hostmakedepends="automake gegl gettext-devel glib-devel gtk+-devel intltool
From a87091a96df53f0f448203e3be675fa7dfe5e487 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 07/11] gst-plugins-bad1: revbump for x265-3.6
---
srcpkgs/gst-plugins-bad1/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/gst-plugins-bad1/template b/srcpkgs/gst-plugins-bad1/template
index 92d87d7a661cbd..13fc9f8fe7f640 100644
--- a/srcpkgs/gst-plugins-bad1/template
+++ b/srcpkgs/gst-plugins-bad1/template
@@ -1,7 +1,7 @@
# Template file for 'gst-plugins-bad1'
pkgname=gst-plugins-bad1
version=1.24.6
-revision=1
+revision=2
build_helper="gir"
build_style=meson
configure_args="-Dpackage-origin=https://voidlinux.org -Ddoc=disabled
From ff4768bf06e35a64b3a6b8d9fa357362e51f7132 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 08/11] handbrake: revbump for x265-3.6
---
srcpkgs/handbrake/template | 23 ++++++++++++++++++-----
1 file changed, 18 insertions(+), 5 deletions(-)
diff --git a/srcpkgs/handbrake/template b/srcpkgs/handbrake/template
index d0e04f3d49111e..07dee21e6f2823 100644
--- a/srcpkgs/handbrake/template
+++ b/srcpkgs/handbrake/template
@@ -1,7 +1,7 @@
# Template file for 'handbrake'
pkgname=handbrake
version=1.6.1
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--force --disable-gtk-update-checks --disable-df-fetch --harden
$(vopt_enable fdk_aac fdk-aac) $(vopt_enable nvenc) $(vopt_enable qsv)"
@@ -12,7 +12,8 @@ makedepends="bzip2-devel ffmpeg6-devel gst-plugins-base1-devel gtk+3-devel
jansson-devel lame-devel libass-devel libbluray-devel libdav1d-devel
libdvdnav-devel libdvdread-devel libgudev-devel libnuma-devel
libsamplerate-devel libtheora-devel libvorbis-devel libvpx-devel libxml2-devel
- opus-devel speex-devel x264-devel x265-devel zimg-devel libsvt-av1-devel
+ opus-devel speex-devel x264-devel x265-devel zimg-devel
+ $(vopt_if svt_av1 libsvt-av1-devel)
$(vopt_if fdk_aac fdk-aac-devel)
$(vopt_if qsv 'libva-devel libdrm-devel oneVPL-devel')
$(vopt_if nvenc nv-codec-headers)"
@@ -26,12 +27,19 @@ distfiles="https://github.com/HandBrake/HandBrake/releases/download/${version}/H
checksum=94ccfe03db917a91650000c510f7fd53f844da19f19ad4b4be1b8f6bc31a8d4c
nocross=yes
-build_options="fdk_aac nvenc qsv"
+build_options="fdk_aac nvenc svt_av1 qsv"
case "$XBPS_TARGET_MACHINE" in
- x86_64*|i686*)
+ x86_64*)
CFLAGS="-msse"
- build_options_default="nvenc qsv"
+ build_options_default="nvenc svt_av1 qsv"
+ ;;
+ i686*)
+ CFLAGS="-msse"
+ build_options_default="nvenc"
+ ;;
+ *)
+ build_options_default="svt_av1"
;;
esac
@@ -42,6 +50,11 @@ pre_configure() {
x265 zimg svt-av1 libvpl; do
vsed -i "/MODULES += contrib\/${module}/d" make/include/main.defs
done
+ if [[ "$XBPS_TARGET_MACHINE" = "i686"* ]] ; then
+ vsed -e 's/-lSvtAv1Enc //g' -i gtk/configure.ac
+ vsed -e 's/ SvtAv1Enc//g' -i test/module.defs
+ vsed -e 's/ SvtAv1Enc//g' -i libhb/module.defs
+ fi
}
pre_build() {
From 9bb1fe51fe4f2e2f27d4dd85bb4b3b65fe460889 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 09/11] libheif: revbump for x265-3.6
---
srcpkgs/libheif/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/libheif/template b/srcpkgs/libheif/template
index 5bd3133095f52b..9f5db189d908ef 100644
--- a/srcpkgs/libheif/template
+++ b/srcpkgs/libheif/template
@@ -1,7 +1,7 @@
# Template file for 'libheif'
pkgname=libheif
version=1.17.5
-revision=1
+revision=2
build_style=cmake
makedepends="libjpeg-turbo-devel libpng-devel libde265-devel x265-devel
libaom-devel"
From 0ef9ad4d6245aa7d67a18ef3414aa3cf9a48dbb3 Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:33:05 -0400
Subject: [PATCH 10/11] vlc: revbump for x265-3.6
---
srcpkgs/vlc/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/vlc/template b/srcpkgs/vlc/template
index 91ccd21acbeaf0..854e8815c90a9d 100644
--- a/srcpkgs/vlc/template
+++ b/srcpkgs/vlc/template
@@ -1,7 +1,7 @@
# Template file for 'vlc'
pkgname=vlc
version=3.0.21
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--disable-gme --disable-libtar --enable-jack
--enable-live555 --disable-fluidsynth --enable-dvdread
From 246d6e1ac57d8eef6925c55c3a9dde447a96cefc Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Fri, 2 Aug 2024 17:34:40 -0400
Subject: [PATCH 11/11] digikam: revbump for x265-3.6
---
srcpkgs/digikam/template | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srcpkgs/digikam/template b/srcpkgs/digikam/template
index 4d08bf39526c88..51611e192f39a9 100644
--- a/srcpkgs/digikam/template
+++ b/srcpkgs/digikam/template
@@ -1,7 +1,7 @@
# Template file for 'digikam'
pkgname=digikam
version=8.4.0
-revision=2
+revision=3
build_style=cmake
configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake
-DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DBUILD_WITH_QT6=ON
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: x265: update to 3.6
2024-08-02 22:05 [PR PATCH] X265 3.6 zlice
` (3 preceding siblings ...)
2024-08-03 18:31 ` [PR PATCH] [Updated] " zlice
@ 2024-08-06 18:47 ` zlice
2024-08-06 18:47 ` zlice
2024-08-06 19:01 ` [PR PATCH] [Closed]: " classabbyamp
6 siblings, 0 replies; 8+ messages in thread
From: zlice @ 2024-08-06 18:47 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 240 bytes --]
New comment by zlice on void-packages repository
https://github.com/void-linux/void-packages/pull/51611#issuecomment-2271928207
Comment:
merged ? https://github.com/void-linux/void-packages/commit/724210e09f279de12dd6d2c9676609922c22e857
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: x265: update to 3.6
2024-08-02 22:05 [PR PATCH] X265 3.6 zlice
` (4 preceding siblings ...)
2024-08-06 18:47 ` zlice
@ 2024-08-06 18:47 ` zlice
2024-08-06 19:01 ` [PR PATCH] [Closed]: " classabbyamp
6 siblings, 0 replies; 8+ messages in thread
From: zlice @ 2024-08-06 18:47 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 273 bytes --]
New comment by zlice on void-packages repository
https://github.com/void-linux/void-packages/pull/51611#issuecomment-2271928207
Comment:
merged ? https://github.com/void-linux/void-packages/commit/724210e09f279de12dd6d2c9676609922c22e857
@classabbyamp good to close ?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PR PATCH] [Closed]: x265: update to 3.6
2024-08-02 22:05 [PR PATCH] X265 3.6 zlice
` (5 preceding siblings ...)
2024-08-06 18:47 ` zlice
@ 2024-08-06 19:01 ` classabbyamp
6 siblings, 0 replies; 8+ messages in thread
From: classabbyamp @ 2024-08-06 19:01 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 832 bytes --]
There's a closed pull request on the void-packages repository
x265: update to 3.6
https://github.com/void-linux/void-packages/pull/51611
Description:
#### Testing the changes
- I tested the changes in this PR: **briefly**
#### Local build testing
- I built this PR locally for my native architecture, **x86_64**
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- **aarch64-musl**
#### Comments
Part #51478 - handbrake 1.8.1 needs newer x265 with some 'ambient light' patches, newer [libvpl](https://github.com/void-linux/void-packages/pull/51496) (this PR conflicts revbumps with libvpl) and ffmpeg6.0 down patches
When I forgot to update shlibs, xbps-src mentioned `digikam` needing a revbump? Not quite sure why as I don't see x265-devel in the template but I bumped anyway.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-08-06 19:01 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-02 22:05 [PR PATCH] X265 3.6 zlice
2024-08-03 0:57 ` x265: update to 3.6 zlice
2024-08-03 1:27 ` [PR PATCH] [Updated] " zlice
2024-08-03 1:28 ` zlice
2024-08-03 18:31 ` [PR PATCH] [Updated] " zlice
2024-08-06 18:47 ` zlice
2024-08-06 18:47 ` zlice
2024-08-06 19:01 ` [PR PATCH] [Closed]: " classabbyamp
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).