imx-vpuwrap: rename from libfslvpuwrap and bump version to 1.0.65
Changelog: --Update 'nLastFrameEndPosPhy' in seqinit stage to avoid feed the same SPS to vpu repeatedly. This patch is based on the Yocto equivalent: https://github.com/Freescale/meta-fsl-arm/commit/d6b9490 Implicitly tested through gstreamer as the 0.10 plugin relies on it: # gst-launch-0.10 playbin uri=file:///root/tears_of_steel_1080p.webm Signed-off-by: Andrew Webster <awebster@arcx.com> Reviewed-by: Gary Bisson <gary.bisson@boundarydevices.com> Tested-by: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
6499890700
commit
0f92b19dd6
@ -145,6 +145,13 @@ endif
|
||||
###############################################################################
|
||||
comment "Legacy options removed in 2016.08"
|
||||
|
||||
config BR2_PACKAGE_LIBFSLVPUWRAP
|
||||
bool "libfslvpuwrap has been renamed to imx-vpuwrap"
|
||||
select BR2_LEGACY
|
||||
select BR2_PACKAGE_IMX_VPUWRAP
|
||||
help
|
||||
The libfslvpuwrap has been renamed to match the renamed package.
|
||||
|
||||
config BR2_PACKAGE_LIBFSLPARSER
|
||||
bool "libfslparser has been renamed to imx-parser"
|
||||
select BR2_LEGACY
|
||||
|
@ -1102,7 +1102,6 @@ menu "Multimedia"
|
||||
source "package/libdvdnav/Config.in"
|
||||
source "package/libdvdread/Config.in"
|
||||
source "package/libebml/Config.in"
|
||||
source "package/libfslvpuwrap/Config.in"
|
||||
source "package/libhdhomerun/Config.in"
|
||||
source "package/libimxvpuapi/Config.in"
|
||||
source "package/libmatroska/Config.in"
|
||||
|
@ -55,6 +55,7 @@ source "package/freescale-imx/imx-lib/Config.in"
|
||||
source "package/freescale-imx/imx-parser/Config.in"
|
||||
source "package/freescale-imx/imx-uuc/Config.in"
|
||||
source "package/freescale-imx/imx-vpu/Config.in"
|
||||
source "package/freescale-imx/imx-vpuwrap/Config.in"
|
||||
source "package/freescale-imx/firmware-imx/Config.in"
|
||||
if (BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51 || BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53)
|
||||
source "package/freescale-imx/gpu-amd-bin-mx51/Config.in"
|
||||
|
@ -1,13 +1,13 @@
|
||||
comment "libfslvpuwrap needs an imx-specific Linux kernel to be built"
|
||||
comment "imx-vpuwrap needs an imx-specific Linux kernel to be built"
|
||||
depends on BR2_arm
|
||||
depends on !BR2_LINUX_KERNEL
|
||||
|
||||
comment "libfslvpuwrap needs an i.MX platform with VPU support"
|
||||
comment "imx-vpuwrap needs an i.MX platform with VPU support"
|
||||
depends on BR2_arm
|
||||
depends on BR2_LINUX_KERNEL && !BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
|
||||
|
||||
config BR2_PACKAGE_LIBFSLVPUWRAP
|
||||
bool "libfslvpuwrap"
|
||||
config BR2_PACKAGE_IMX_VPUWRAP
|
||||
bool "imx-vpuwrap"
|
||||
depends on BR2_LINUX_KERNEL
|
||||
depends on BR2_arm # Only relevant for i.MX
|
||||
depends on BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
|
||||
@ -15,5 +15,5 @@ config BR2_PACKAGE_LIBFSLVPUWRAP
|
||||
help
|
||||
Wrapper library for the vpu library, giving it a different API.
|
||||
|
||||
This library is provided by Freescale as-is and doesn't have
|
||||
This library is provided by NXP as-is and doesn't have
|
||||
an upstream.
|
2
package/freescale-imx/imx-vpuwrap/imx-vpuwrap.hash
Normal file
2
package/freescale-imx/imx-vpuwrap/imx-vpuwrap.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# locally computed
|
||||
sha256 ddeacb7d9cb26c8864374df6d3f090aad47cd2ae409c2b9c817b773447252d61 imx-vpuwrap-1.0.65.bin
|
21
package/freescale-imx/imx-vpuwrap/imx-vpuwrap.mk
Normal file
21
package/freescale-imx/imx-vpuwrap/imx-vpuwrap.mk
Normal file
@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# imx-vpuwrap
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IMX_VPUWRAP_VERSION = 1.0.65
|
||||
IMX_VPUWRAP_SITE = $(FREESCALE_IMX_SITE)
|
||||
IMX_VPUWRAP_SOURCE = imx-vpuwrap-$(IMX_VPUWRAP_VERSION).bin
|
||||
IMX_VPUWRAP_DEPENDENCIES = imx-vpu
|
||||
IMX_VPUWRAP_INSTALL_STAGING = YES
|
||||
|
||||
IMX_VPUWRAP_LICENSE = NXP Semiconductor Software License Agreement
|
||||
IMX_VPUWRAP_LICENSE_FILES = EULA COPYING
|
||||
IMX_VPUWRAP_REDISTRIBUTE = NO
|
||||
|
||||
define IMX_VPUWRAP_EXTRACT_CMDS
|
||||
$(call FREESCALE_IMX_EXTRACT_HELPER,$(DL_DIR)/$(IMX_VPUWRAP_SOURCE))
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
@ -11,7 +11,7 @@ config BR2_PACKAGE_GST_FSL_PLUGINS
|
||||
depends on BR2_arm # Only relevant for i.MX
|
||||
depends on BR2_TOOLCHAIN_USES_GLIBC # imx-codec
|
||||
select BR2_PACKAGE_GST_PLUGINS_BASE
|
||||
select BR2_PACKAGE_LIBFSLVPUWRAP if BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
|
||||
select BR2_PACKAGE_IMX_VPUWRAP if BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
|
||||
select BR2_PACKAGE_IMX_LIB
|
||||
select BR2_PACKAGE_IMX_PARSER
|
||||
select BR2_PACKAGE_IMX_CODEC
|
||||
|
@ -19,7 +19,7 @@ GST_FSL_PLUGINS_DEPENDENCIES += host-pkgconf gstreamer gst-plugins-base \
|
||||
imx-lib imx-parser imx-codec
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FREESCALE_IMX_HAS_VPU),y)
|
||||
GST_FSL_PLUGINS_DEPENDENCIES += libfslvpuwrap
|
||||
GST_FSL_PLUGINS_DEPENDENCIES += imx-vpuwrap
|
||||
endif
|
||||
|
||||
GST_FSL_PLUGINS_CONF_ENV = \
|
||||
|
@ -53,8 +53,8 @@ KODI_CONF_ENV += INCLUDES="-I$(STAGING_DIR)/usr/include/interface/vcos/pthreads
|
||||
LIBS="-lvcos -lvchostif"
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBFSLVPUWRAP),y)
|
||||
KODI_DEPENDENCIES += libfslvpuwrap
|
||||
ifeq ($(BR2_PACKAGE_IMX_VPUWRAP),y)
|
||||
KODI_DEPENDENCIES += imx-vpuwrap
|
||||
KODI_CONF_OPTS += --enable-codec=imxvpu
|
||||
endif
|
||||
|
||||
|
@ -1,2 +0,0 @@
|
||||
# locally computed
|
||||
sha256 0717faccb5413dc95ce9ad919400095ecf722320478c924366793a6cc450ae16 libfslvpuwrap-1.0.62.bin
|
@ -1,21 +0,0 @@
|
||||
################################################################################
|
||||
#
|
||||
# libfslvpuwrap
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBFSLVPUWRAP_VERSION = 1.0.62
|
||||
LIBFSLVPUWRAP_SITE = $(FREESCALE_IMX_SITE)
|
||||
LIBFSLVPUWRAP_SOURCE = libfslvpuwrap-$(LIBFSLVPUWRAP_VERSION).bin
|
||||
LIBFSLVPUWRAP_DEPENDENCIES = imx-vpu
|
||||
LIBFSLVPUWRAP_INSTALL_STAGING = YES
|
||||
|
||||
LIBFSLVPUWRAP_LICENSE = Freescale Semiconductor Software License Agreement
|
||||
LIBFSLVPUWRAP_LICENSE_FILES = EULA COPYING
|
||||
LIBFSLVPUWRAP_REDISTRIBUTE = NO
|
||||
|
||||
define LIBFSLVPUWRAP_EXTRACT_CMDS
|
||||
$(call FREESCALE_IMX_EXTRACT_HELPER,$(DL_DIR)/$(LIBFSLVPUWRAP_SOURCE))
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user