diff options
author | wangmy <wangmy@fujitsu.com> | 2022-10-11 16:05:55 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-26 12:28:38 +0100 |
commit | 80e7b3d1dcc499ecf9863c6447adb737920a252a (patch) | |
tree | 96009948254b4a6e712c80b0ef44e7454a16a77c /meta/recipes-graphics/libva/libva_2.16.0.bb | |
parent | a7873c4f77075445bb0fcebf0b0f4afaae6e115a (diff) | |
download | poky-80e7b3d1dcc499ecf9863c6447adb737920a252a.tar.gz |
libva: upgrade 2.15.0 -> 2.16.0
Changelog:
===========
add: Add HierarchicalFlag & hierarchical_level_plus1 for AV1e.
dep: Update README.md to remove badge links
dep: Removed waffle-io badge from README to fix broken link
dep: Drop mailing list, IRC and Slack
autotools: use wayland-scanner private-code
autotools: use the wayland-scanner.pc to locate the prog
meson: use wayland-scanner private-code
meson: request native wayland-scanner
meson: use the wayland-scanner.pc to locate the prog
meson: set HAVE_VA_X11 when applicable
style:Correct slight coding style in several new commits
trace: add Linux ftrace mode for va trace
trace: Add missing pthread_mutex_destroy
drm: remove no-longer needed X == X mappings
drm: fallback to drm driver name == va driver name
drm: simplify the mapping table
x11: simplify the mapping table
android: open() with O_CLOEXEC for device fd
android: remove convoluted open_device() helper
android: drop va_fool references
ci: strengthen ci with -Werror
ci: va/x11/nvctl: fix Wdeprecated-non-prototype on close_display
ci: add clang-15 coverage and rearrange runners
ci: upgrade FreeBSD to 13.1
(From OE-Core rev: ccf646a933fb0274a5fe6ab1055cbfc556351ef2)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/libva/libva_2.16.0.bb')
-rw-r--r-- | meta/recipes-graphics/libva/libva_2.16.0.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-graphics/libva/libva_2.16.0.bb b/meta/recipes-graphics/libva/libva_2.16.0.bb new file mode 100644 index 0000000000..63dc5af8f2 --- /dev/null +++ b/meta/recipes-graphics/libva/libva_2.16.0.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | require libva.inc | ||
2 | |||
3 | PACKAGECONFIG ??= " \ | ||
4 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'glx', '', d)} \ | ||
5 | ${@bb.utils.filter('DISTRO_FEATURES', 'x11 wayland', d)} \ | ||
6 | " | ||
7 | |||
8 | PACKAGES =+ "${PN}-x11 ${PN}-glx ${PN}-wayland" | ||
9 | |||
10 | RDEPENDS:${PN}-x11 =+ "${PN}" | ||
11 | RDEPENDS:${PN}-glx =+ "${PN}-x11" | ||
12 | |||
13 | FILES:${PN}-x11 =+ "${libdir}/libva-x11*${SOLIBS}" | ||
14 | FILES:${PN}-glx =+ "${libdir}/libva-glx*${SOLIBS}" | ||
15 | FILES:${PN}-wayland =+ "${libdir}/libva-wayland*${SOLIBS}" | ||