e95190db7c
Changelog: Coverity fixes for resources leaks, null dereference, string overflows and checking return. This patch is based on the Yocto equivalent: https://github.com/Freescale/meta-freescale/commit/b138b5b0 Implicitly tested through gstreamer as the plugins rely on it: # 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>
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# imx-vpu
|
|
#
|
|
################################################################################
|
|
|
|
IMX_VPU_VERSION = 5.4.35
|
|
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 = NXP 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))
|