c1e4e8545d
gstreamer-vaapi consists in a collection of VA-API based plugins for GStreamer and helper libraries. These libraries are used for hardware decoding and encoding of several video formats. decoding formats: JPEG, MPEG-2, MPEG-4:2, H.264 AVC, H.264 MVC, VP8, VC-1, WMV3, and HEVC. encoding formats: MPEG-2, H.264 AVC, H.264 MVC, JPEG, VP8, HEVC The package won't compile without at least one renderer enabled, so I chose to enable DRM by default, as X11, GLX, and wayland are heavy handed with the dependencies. As such, I have disabled every option defaulting to yes except for DRM for the first patch. Also, these codecs are only for x86 and require a Intel CPU (See Hardware Requirements on line 82 of the README file.) Signed-off-by: Adam Duskett <Adamduskett@outlook.com> [Thomas: - Add entry to DEVELOPERS file. - Add BR2_TOOLCHAIN_HAS_THREADS dependency to the main Config.in option. - Add BR2_PACKAGE_HAS_UDEV dependency to the main Config.in option. - Add comments about the BR2_STATIC_LIBS config option. - Rewrap Config.in help text and removing trailing tabs/spaces. - Remove restriction to i386/x86-64 - Add patch to fix build with uClibc.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
692 B
Makefile
29 lines
692 B
Makefile
################################################################################
|
|
#
|
|
# gst1-vaapi
|
|
#
|
|
################################################################################
|
|
|
|
GST1_VAAPI_VERSION = 1.10.3
|
|
GST1_VAAPI_SITE = https://gstreamer.freedesktop.org/src/gstreamer-vaapi
|
|
GST1_VAAPI_SOURCE = gstreamer-vaapi-$(GST1_VAAPI_VERSION).tar.xz
|
|
GST1_VAAPI_LICENSE = LGPLv2.1+
|
|
GST1_VAAPI_LICENSE_FILES = COPYING.LIB
|
|
|
|
GST1_VAAPI_DEPENDENCIES += \
|
|
gstreamer1 \
|
|
gst1-plugins-base \
|
|
gst1-plugins-bad \
|
|
libva \
|
|
libdrm
|
|
|
|
GST1_VAAPI_CONF_OPTS += \
|
|
--disable-encoders \
|
|
--disable-x11 \
|
|
--disable-glx \
|
|
--disable-wayland \
|
|
--disable-egl \
|
|
--disable-gtk-doc-html
|
|
|
|
$(eval $(autotools-package))
|