f2af493fd9
- imx-vpu version changed to internal version
- VPU share memory file open fixes
- Upgrade ion usage
- Remove obey-variables patch -now included in release
This patch is based on the Yocto equivalent:
db343da3e4
The IOGetVirtMem return value patch has now been included into the upstream
package.
This package has been implicitely tested through gstreamer as the plugins
rely on it for vpu decoding:
# gst-launch-0.10 playbin uri=file:///root/tears_of_steel_1080p.webm
# gst-launch-1.0 playbin uri=file:///root/tears_of_steel_1080p.webm
# gst-launch-1.0 filesrc location=/root/tears_of_steel_1080p.webm ! \
matroskademux ! imxvpudec ! imxipuvideosink
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# imx-vpu
|
|
#
|
|
################################################################################
|
|
|
|
IMX_VPU_VERSION = 5.4.27
|
|
IMX_VPU_SITE = $(FREESCALE_IMX_SITE)
|
|
IMX_VPU_SOURCE = imx-vpu-$(IMX_VPU_VERSION).bin
|
|
|
|
IMX_VPU_INSTALL_STAGING = YES
|
|
|
|
# imx-vpu needs access to imx-specific kernel headers
|
|
IMX_VPU_DEPENDENCIES += linux
|
|
IMX_VPU_MAKE_ENV = \
|
|
$(TARGET_MAKE_ENV) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CROSS_COMPILE="$(CCACHE) $(TARGET_CROSS)" \
|
|
PLATFORM=$(BR2_PACKAGE_FREESCALE_IMX_PLATFORM) \
|
|
INCLUDE="-idirafter $(LINUX_DIR)/include"
|
|
|
|
IMX_VPU_LICENSE = Freescale Semiconductor Software License Agreement
|
|
IMX_VPU_LICENSE_FILES = EULA vpu/EULA.txt
|
|
IMX_VPU_REDISTRIBUTE = NO
|
|
|
|
define IMX_VPU_EXTRACT_CMDS
|
|
$(call FREESCALE_IMX_EXTRACT_HELPER,$(DL_DIR)/$(IMX_VPU_SOURCE))
|
|
endef
|
|
|
|
define IMX_VPU_BUILD_CMDS
|
|
$(IMX_VPU_MAKE_ENV) $(MAKE1) -C $(@D)
|
|
endef
|
|
|
|
define IMX_VPU_INSTALL_STAGING_CMDS
|
|
$(IMX_VPU_MAKE_ENV) $(MAKE1) -C $(@D) DEST_DIR=$(STAGING_DIR) install
|
|
endef
|
|
|
|
define IMX_VPU_INSTALL_TARGET_CMDS
|
|
$(IMX_VPU_MAKE_ENV) $(MAKE1) -C $(@D) DEST_DIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|