From 532d1b34bb5a0947b07b79d6874ae25387cbe933 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 2 Feb 2017 22:05:05 +0100 Subject: [PATCH] Add HAVE_VIDEOPROCESSOR switch --- qb/config.libs.sh | 2 +- qb/config.params.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index f02696e57b..6ef3ac614d 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -496,7 +496,7 @@ if [ "$HAVE_THREADS" = 'no' ] && [ "HAVE_LIBUSB" != 'no' ]; then echo "Notice: Threads are not available, libusb will also be disabled." fi -if [ "$HAVE_V4L2" != 'no' ]; then +if [ "$HAVE_V4L2" != 'no' ] && [ "HAVE_VIDEOPROCESSOR" != 'no' ]; then HAVE_VIDEO_PROCESSOR=yes fi diff --git a/qb/config.params.sh b/qb/config.params.sh index fde0c1af31..36e7eda08f 100644 --- a/qb/config.params.sh +++ b/qb/config.params.sh @@ -97,3 +97,4 @@ HAVE_RTGA=yes # RTGA support HAVE_HID=yes # Low-level HID (Human Interface Device) support HAVE_LANGEXTRA=yes # Multi-language support HAVE_OSMESA=no # Off-screen Mesa rendering +HAVE_VIDEOPROCESSOR=auto # Enable video processor core