ec8a413078
Changelog: - Support AVcVuiInfo for Decoder through DecInitialInfo or DecOutputInfo - Clear structure iram IOGetIramBase() fails to set them to avoid using uninitialized variables. This patch is based on the Yocto equivalent: https://github.com/Freescale/meta-fsl-arm/commit/be030922 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: Peter Korsgaard <peter@korsgaard.com>
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# imx-vpu
|
|
#
|
|
################################################################################
|
|
|
|
IMX_VPU_VERSION = 5.4.32
|
|
IMX_VPU_SITE = $(FREESCALE_IMX_SITE)
|
|
IMX_VPU_SOURCE = imx-vpu-$(IMX_VPU_VERSION).bin
|
|
|
|
IMX_VPU_INSTALL_STAGING = YES
|
|
|
|
IMX_VPU_MAKE_ENV = \
|
|
$(TARGET_MAKE_ENV) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
PLATFORM=$(BR2_PACKAGE_FREESCALE_IMX_PLATFORM)
|
|
|
|
IMX_VPU_LICENSE = Freescale Semiconductor Software License Agreement
|
|
IMX_VPU_LICENSE_FILES = EULA COPYING
|
|
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))
|