summaryrefslogtreecommitdiffstats
path: root/rules/libva.in
blob: 498ecf0665bd12f2066f6a182d7259b7b182c49f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
## SECTION=multimedia_libs

menuconfig LIBVA
	tristate
	select LIBDRM
	select XORG_LIB_X11		if LIBVA_X11 || LIBVA_GLX
	select XORG_LIB_XEXT		if LIBVA_X11
	select XORG_LIB_XFIXES		if LIBVA_X11
	select MESALIB			if LIBVA_GLX
	select MESALIB_GLX		if LIBVA_GLX
	select MESALIB_OPENGL		if LIBVA_GLX
	select WAYLAND			if LIBVA_WAYLAND
	prompt "libva                         "
	help
	  libva an implementation of VA-API for Linux

if LIBVA

config LIBVA_X11
	bool
	prompt "X11 API support"

config LIBVA_GLX
	bool
	select LIBVA_X11
	prompt "GLX API support"

config LIBVA_WAYLAND
	bool
	prompt "Wayland API support"

endif