Line 0
Link Here
|
|
|
1 |
# Copyright 1999-2024 Gentoo Authors |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
|
4 |
EAPI=8 |
5 |
inherit gstreamer-meson |
6 |
|
7 |
MY_PN="gstreamer-vaapi" |
8 |
DESCRIPTION="Hardware accelerated video decoding through VA-API plugin for GStreamer" |
9 |
HOMEPAGE="https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi" |
10 |
SRC_URI="https://gstreamer.freedesktop.org/src/${MY_PN}/${MY_PN}-${PV}.tar.xz" |
11 |
|
12 |
LICENSE="LGPL-2.1+" |
13 |
SLOT="1.0" |
14 |
KEYWORDS="amd64 arm64 ~loong ppc64 ~riscv x86" |
15 |
IUSE="+drm +egl +gles2 opengl wayland +X" # Keep default enabled IUSE in sync with gst-plugins-base and libva |
16 |
|
17 |
# gst-vaapi configure is based around GL platform mainly, unlike gst-plugins-bad that goes by GL API mainly; for less surprises, |
18 |
# we design gst-vaapi ebuild in terms of GL API as main choice as well, meaning that USE opengl and/or gles2 is required to |
19 |
# enable opengl support at all and choices get chained from there. |
20 |
# One or multiple video output are required: drm, x11, glx, egl and/or wayland; |
21 |
# but GL API is our main trigger, thus USE=egl should be ineffective if neither gles2 or opengl is enabled; |
22 |
# So "|| ( drm egl opengl wayland X )" would be wrong, because egl isn't built with USE="egl -opengl -gles2", ending up with no video outputs. |
23 |
# As we ensure at least one working GL output with other REQUIRED_USE, we can put gles2/opengl in REQUIRED_USE instead of egl, solving the issue. |
24 |
# gles2 API only supported windowing system (on linux) is EGL, so require it |
25 |
# opengl API only supported windowing systems (on linux) are EGL and GLX, so require one of them (glx is enabled with USE="opengl X") |
26 |
REQUIRED_USE=" |
27 |
|| ( drm gles2 opengl wayland X ) |
28 |
gles2? ( egl ) |
29 |
opengl? ( || ( egl X ) ) |
30 |
wayland? ( drm ) |
31 |
" |
32 |
|
33 |
# glx doesn't require libva-glx (libva[opengl]) afaics, only by tests/test-display.c |
34 |
# USE flag behavior: |
35 |
# 'drm' enables vaapi drm support |
36 |
# 'egl' enables EGL platform support (but only if also 'opengl||gles2') |
37 |
# - 'egl' is exposed as a USE flag mainly to get EGL support instead of or in addition to GLX support with desktop GL while keeping it optional for pure GLX cases; |
38 |
# it's always required with USE=gles2, thus USE="gles2 opengl X" will require and build desktop GL EGL platform support as well on top of GLX, which doesn't add extra deps at that point. |
39 |
# 'gles2' enables GLESv2 or GLESv3 based GL API support |
40 |
# 'opengl' enables desktop OpenGL based GL API support |
41 |
# 'wayland' enables non-GL Wayland support; wayland EGL support when combined with 'egl' (but only if also 'opengl||gles2') |
42 |
# 'X' enables non-GL X support; GLX support when combined with 'opengl' |
43 |
# gst-plugins-bad still needed for codecparsers (GL libraries moved to -base); checked for 1.14 (recheck for 1.16) |
44 |
GST_REQ="${PV}" |
45 |
GL_DEPS=" |
46 |
>=media-libs/gst-plugins-base-${GST_REQ}:${SLOT}[egl?,gles2?,opengl?,wayland?,X?] |
47 |
|| ( |
48 |
>=media-libs/mesa-24.1.0_rc1[opengl,X?,${MULTILIB_USEDEP}] |
49 |
<media-libs/mesa-24.1.0_rc1[gles2?,egl(+)?,X?,${MULTILIB_USEDEP}] |
50 |
) |
51 |
" |
52 |
RDEPEND=" |
53 |
>=media-libs/gst-plugins-base-${GST_REQ}:${SLOT}[${MULTILIB_USEDEP}] |
54 |
>=media-libs/gst-plugins-bad-${GST_REQ}:${SLOT}[${MULTILIB_USEDEP}] |
55 |
>=media-libs/libva-1.10.0:=[drm(+)?,wayland?,X?,${MULTILIB_USEDEP}] |
56 |
drm? ( |
57 |
>=virtual/libudev-208:=[${MULTILIB_USEDEP}] |
58 |
>=x11-libs/libdrm-2.4.98[${MULTILIB_USEDEP}] |
59 |
) |
60 |
gles2? ( ${GL_DEPS} ) |
61 |
opengl? ( ${GL_DEPS} ) |
62 |
wayland? ( >=dev-libs/wayland-1.11.0[${MULTILIB_USEDEP}] ) |
63 |
X? ( |
64 |
>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] |
65 |
>=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}] |
66 |
x11-libs/libXrender[${MULTILIB_USEDEP}] ) |
67 |
" |
68 |
DEPEND="${RDEPEND}" |
69 |
|
70 |
S="${WORKDIR}/${MY_PN}-${PV}" |
71 |
|
72 |
# FIXME: "Failed to create vaapipostproc element" |
73 |
RESTRICT="test" |
74 |
|
75 |
multilib_src_configure() { |
76 |
GST_PLUGINS_NOAUTO="wayland" |
77 |
|
78 |
local emesonargs=( |
79 |
-Dencoders=enabled |
80 |
$(meson_feature drm) |
81 |
$(meson_feature X x11) |
82 |
$(meson_feature wayland) |
83 |
) |
84 |
|
85 |
if use opengl || use gles2; then |
86 |
emesonargs+=( $(meson_feature egl) ) |
87 |
else |
88 |
emesonargs+=( -Degl=disabled ) |
89 |
fi |
90 |
|
91 |
if use opengl && use X; then |
92 |
emesonargs+=( -Dglx=enabled ) |
93 |
else |
94 |
emesonargs+=( -Dglx=disabled ) |
95 |
fi |
96 |
|
97 |
# Workaround EGL/eglplatform.h being built with X11 present |
98 |
use X || export CFLAGS="${CFLAGS} -DEGL_NO_X11" |
99 |
|
100 |
gstreamer_multilib_src_configure |
101 |
} |