git: 9846c828d429 - main - graphics/mesa: Enable AV1 and VP9
Date: Wed, 03 Apr 2024 07:56:23 UTC
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/ports/commit/?id=9846c828d429111914471d738a467492ec401342 commit 9846c828d429111914471d738a467492ec401342 Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2024-04-03 05:52:58 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2024-04-03 07:56:13 +0000 graphics/mesa: Enable AV1 and VP9 This should help AMD users with hardware that can decode those. Sponsored by: Beckhoff Automation GmbH & Co. KG --- graphics/mesa-dri/Makefile | 3 ++- graphics/mesa-gallium-va/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/graphics/mesa-dri/Makefile b/graphics/mesa-dri/Makefile index 2f57b3e5c328..9ccc31588659 100644 --- a/graphics/mesa-dri/Makefile +++ b/graphics/mesa-dri/Makefile @@ -1,5 +1,6 @@ PORTNAME= mesa-dri PORTVERSION= ${MESAVERSION} +PORTREVISION= 1 CATEGORIES= graphics COMMENT= OpenGL hardware acceleration drivers for DRI2+ @@ -73,7 +74,7 @@ MESON_ARGS+= -Dgallium-drivers="${GALLIUM_DRIVERS:ts,:tl}" \ -Dplatforms="${MESA_PLATFORMS:ts,:tl}" # Vulkan Video extensions (keep in sync with mesa-gallium-va) -MESON_ARGS+= -Dvideo-codecs="vc1dec,h264dec,h264enc,h265dec,h265enc" +MESON_ARGS+= -Dvideo-codecs="vc1dec,h264dec,h264enc,h265dec,h265enc,av1dec,av1enc,vp9dec" # Disable some options MESON_ARGS+= -Dandroid-libbacktrace=disabled \ diff --git a/graphics/mesa-gallium-va/Makefile b/graphics/mesa-gallium-va/Makefile index 91a565557ce9..e2c1d36bc88f 100644 --- a/graphics/mesa-gallium-va/Makefile +++ b/graphics/mesa-gallium-va/Makefile @@ -1,6 +1,6 @@ PORTNAME= mesa-gallium-va PORTVERSION= ${MESAVERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics COMMENT= Mesa Gallium VAAPI drivers @@ -26,7 +26,7 @@ X11_USE= xorg=xorgproto,x11,xcb,xdamage,xext,xfixes,xshmfence,xxf86vm,xrandr .include <bsd.port.options.mk> .include "${.CURDIR:H:H}/graphics/mesa-dri/Makefile.common" -MESON_ARGS+= -Dvideo-codecs="vc1dec,h264dec,h264enc,h265dec,h265enc" \ +MESON_ARGS+= -Dvideo-codecs="vc1dec,h264dec,h264enc,h265dec,h265enc,av1dec,av1enc,vp9dec" \ -Dgallium-drivers="radeonsi,r600" \ -Dvulkan-drivers="" \ -Dandroid-libbacktrace=disabled \