Commit 4e68d91a authored by Bernd Kuhls's avatar Bernd Kuhls Committed by Thomas Petazzoni
Browse files

package/xbmc: add option to enable libva



[Thomas: add the comment about the dynamic library dependency.]

Signed-off-by: default avatarBernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent c24f5594
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -210,6 +210,16 @@ config BR2_PACKAGE_XBMC_LIBUSB
	help
	  Enable libusb support.

config BR2_PACKAGE_XBMC_LIBVA
	bool "va"
	select BR2_PACKAGE_LIBVA
	depends on !BR2_PREFER_STATIC_LIB
	help
	  Enable libva support.

comment "libva support needs toolchain w/ dynamic library"
	depends on BR2_PREFER_STATIC_LIB

config BR2_PACKAGE_XBMC_WAVPACK
	bool "wavpack"
	select BR2_PACKAGE_WAVPACK
+1 −1
Original line number Diff line number Diff line
@@ -193,7 +193,7 @@ XBMC_DEPENDENCIES += libtheora
endif

# xbmc needs libva & libva-glx
ifeq ($(BR2_PACKAGE_LIBVA)$(BR2_PACKAGE_MESA3D_DRI_DRIVER),yy)
ifeq ($(BR2_PACKAGE_XBMC_LIBVA)$(BR2_PACKAGE_MESA3D_DRI_DRIVER),yy)
XBMC_DEPENDENCIES += mesa3d libva
XBMC_CONF_OPT += --enable-vaapi
else