Files
Arch-R/packages/debug/libva-utils/package.mk
Rudi Heitbaum 8f90cae860 libva-utils: update to 2.21.0
Version 2.21.0 - 12.Mar.2024
* vainfo: Print VAConfigAttribEncMaxTileRows and VAConfigAttribEncMaxTileCols
* test: Add Prime3 memtype support
* sample: Add back buffer size options for AV1e
* sample: simplify cbr/vbr interface and refine codes for AV1e
* fix: clean some unused variables and functions
* fix: unify the coding style
* fix: Fix coverity issues exposed in encode/decode/vpp
* fix: options in AV1 encode sample
* fix: fix typo of version in NEWS
* ci: harden permission for freebsd.yml
* ci: add workflow permission for all jobs
* ci: update freebsd vm to the v1 version
* meson: use meson setup instead of meson options

log:
- https://github.com/intel/libva-utils/compare/2.20.1...2.21.0
2024-04-21 12:43:19 +00:00

24 lines
839 B
Makefile

# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="libva-utils"
PKG_VERSION="2.21.0"
PKG_SHA256="15ca12bd11c7001c04af5079512754fea6ba8d79151b9f07908c99b27622714e"
PKG_LICENSE="GPL"
PKG_SITE="https://github.com/01org/libva-utils"
PKG_URL="https://github.com/intel/libva-utils/archive/${PKG_VERSION}.tar.gz"
PKG_LONGDESC="Libva-utils is a collection of tests for VA-API (VIdeo Acceleration API)"
if [ "${DISPLAYSERVER}" = "x11" ]; then
PKG_DEPENDS_TARGET="toolchain libva libdrm libX11"
DISPLAYSERVER_LIBVA="-Dx11=true"
else
PKG_DEPENDS_TARGET="toolchain libva libdrm"
DISPLAYSERVER_LIBVA="-Dx11=false"
fi
PKG_MESON_OPTS_TARGET="-Ddrm=true \
${DISPLAYSERVER_LIBVA} \
-Dwayland=false \
-Dtests=false"