5961332dc4
- add upstream patch to fix the following compile failure: gstvaapipluginutil.c:259:12: error: ‘GstGLDisplay’ undeclared (first use in this function); did you mean ‘GstVaapiDisplay’? (GstGLDisplay **) & plugin->gl_display, ^~~~~~~~~~~~ GstVaapiDisplay gstvaapipluginutil.c:259:12: note: each undeclared identifier is reported only once for each function it appears in gstvaapipluginutil.c:259:27: error: expected expression before ‘)’ token (GstGLDisplay **) & plugin->gl_display, ^ Also add hash for license file. Signed-off-by: Adam Duskett <aduskett@gmail.com> [Update to 1.14.1] Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
34 lines
811 B
Makefile
34 lines
811 B
Makefile
################################################################################
|
|
#
|
|
# gst1-vaapi
|
|
#
|
|
################################################################################
|
|
|
|
GST1_VAAPI_VERSION = 1.14.1
|
|
GST1_VAAPI_SITE = https://gstreamer.freedesktop.org/src/gstreamer-vaapi
|
|
GST1_VAAPI_SOURCE = gstreamer-vaapi-$(GST1_VAAPI_VERSION).tar.xz
|
|
GST1_VAAPI_LICENSE = LGPL-2.1+
|
|
GST1_VAAPI_LICENSE_FILES = COPYING.LIB
|
|
|
|
GST1_VAAPI_DEPENDENCIES += \
|
|
gstreamer1 \
|
|
gst1-plugins-base \
|
|
gst1-plugins-bad \
|
|
libva \
|
|
libdrm
|
|
|
|
GST1_VAAPI_CONF_OPTS += \
|
|
--disable-x11 \
|
|
--disable-glx \
|
|
--disable-wayland \
|
|
--disable-egl \
|
|
--disable-gtk-doc-html
|
|
|
|
ifeq ($(BR2_PACKAGE_GST1_VAAPI_ENCODERS),y)
|
|
GST1_VAAPI_CONF_OPTS += --enable-encoders
|
|
else
|
|
GST1_VAAPI_CONF_OPTS += --disable-encoders
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|