mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
log: - https://github.com/intel/libva-utils/compare/2.17.1...2.18.1 Version 2.18.0 - 17.Mar.2023 * doc:Add build and install libva-utils steps * test: Add VAProfileH264High10 * test: Don't assume our DRM node is first * add: va_display_drm: Allow VGEM for WSL2 * win: win32 compat: Fix setenv/unsetenv return values * fix: Add Th limitation by HUFFMAN_TABLES Count * fix: Add refresh_frame_flags in PPS * fix: Add checking of stream_scan size * fix: Add Scan Num limitation * fix: Changed H2S configuration template. * fix: Correct maximum display luminance per VAAPI definition. * fix: Fix possible memory leak * fix: Fix coding issues of function return type & ref_frame_idx idx too large
24 lines
839 B
Makefile
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.18.1"
|
|
PKG_SHA256="79da4a683dc4b10639edd7ad4c9434789ef208f5361f87aca9bc986a4ebcb155"
|
|
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"
|