imx-parser: rename from libfslparser and bump version to 4.0.9
Changelog: --Add aac latm parser in parser_libs, support aac latm in mpeg2 parser This patch is based on the Yocto equivalent: https://github.com/Freescale/meta-fsl-arm/commit/e2c6f10 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
47e6203f63
commit
6499890700
@ -145,6 +145,13 @@ endif
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
comment "Legacy options removed in 2016.08"
|
comment "Legacy options removed in 2016.08"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_LIBFSLPARSER
|
||||||
|
bool "libfslparser has been renamed to imx-parser"
|
||||||
|
select BR2_LEGACY
|
||||||
|
select BR2_PACKAGE_IMX_PARSER
|
||||||
|
help
|
||||||
|
The libfslparser has been renamed to match the renamed package.
|
||||||
|
|
||||||
config BR2_PACKAGE_LIBFSLCODEC
|
config BR2_PACKAGE_LIBFSLCODEC
|
||||||
bool "libfslcodec has been renamed to imx-codec"
|
bool "libfslcodec has been renamed to imx-codec"
|
||||||
select BR2_LEGACY
|
select BR2_LEGACY
|
||||||
|
@ -1102,7 +1102,6 @@ menu "Multimedia"
|
|||||||
source "package/libdvdnav/Config.in"
|
source "package/libdvdnav/Config.in"
|
||||||
source "package/libdvdread/Config.in"
|
source "package/libdvdread/Config.in"
|
||||||
source "package/libebml/Config.in"
|
source "package/libebml/Config.in"
|
||||||
source "package/libfslparser/Config.in"
|
|
||||||
source "package/libfslvpuwrap/Config.in"
|
source "package/libfslvpuwrap/Config.in"
|
||||||
source "package/libhdhomerun/Config.in"
|
source "package/libhdhomerun/Config.in"
|
||||||
source "package/libimxvpuapi/Config.in"
|
source "package/libimxvpuapi/Config.in"
|
||||||
|
@ -52,6 +52,7 @@ config BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
|
|||||||
source "package/freescale-imx/imx-codec/Config.in"
|
source "package/freescale-imx/imx-codec/Config.in"
|
||||||
source "package/freescale-imx/imx-kobs/Config.in"
|
source "package/freescale-imx/imx-kobs/Config.in"
|
||||||
source "package/freescale-imx/imx-lib/Config.in"
|
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-uuc/Config.in"
|
||||||
source "package/freescale-imx/imx-vpu/Config.in"
|
source "package/freescale-imx/imx-vpu/Config.in"
|
||||||
source "package/freescale-imx/firmware-imx/Config.in"
|
source "package/freescale-imx/firmware-imx/Config.in"
|
||||||
|
8
package/freescale-imx/imx-parser/Config.in
Normal file
8
package/freescale-imx/imx-parser/Config.in
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
config BR2_PACKAGE_IMX_PARSER
|
||||||
|
bool "imx-parser"
|
||||||
|
depends on BR2_arm # Only relevant for i.MX
|
||||||
|
help
|
||||||
|
Binary parser libraries for the NXP i.MX SoCs.
|
||||||
|
|
||||||
|
This library is provided by NXP as-is and doesn't have
|
||||||
|
an upstream.
|
2
package/freescale-imx/imx-parser/imx-parser.hash
Normal file
2
package/freescale-imx/imx-parser/imx-parser.hash
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# locally computed
|
||||||
|
sha256 1bec0101843db2e95d61e3dbe9e35172d874e54be19cc5d8bf72a735d5e3236f imx-parser-4.0.9.bin
|
23
package/freescale-imx/imx-parser/imx-parser.mk
Normal file
23
package/freescale-imx/imx-parser/imx-parser.mk
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# imx-parser
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
IMX_PARSER_VERSION = 4.0.9
|
||||||
|
IMX_PARSER_SITE = $(FREESCALE_IMX_SITE)
|
||||||
|
IMX_PARSER_SOURCE = imx-parser-$(IMX_PARSER_VERSION).bin
|
||||||
|
IMX_PARSER_INSTALL_STAGING = YES
|
||||||
|
|
||||||
|
IMX_PARSER_LICENSE = NXP Semiconductor Software License Agreement
|
||||||
|
IMX_PARSER_LICENSE_FILES = EULA COPYING
|
||||||
|
IMX_PARSER_REDISTRIBUTE = NO
|
||||||
|
|
||||||
|
define IMX_PARSER_EXTRACT_CMDS
|
||||||
|
$(call FREESCALE_IMX_EXTRACT_HELPER,$(DL_DIR)/$(IMX_PARSER_SOURCE))
|
||||||
|
endef
|
||||||
|
|
||||||
|
# The Makefile installs several versions of the libraries, but we only
|
||||||
|
# need one of them, depending on the platform.
|
||||||
|
|
||||||
|
$(eval $(autotools-package))
|
@ -13,7 +13,7 @@ config BR2_PACKAGE_GST_FSL_PLUGINS
|
|||||||
select BR2_PACKAGE_GST_PLUGINS_BASE
|
select BR2_PACKAGE_GST_PLUGINS_BASE
|
||||||
select BR2_PACKAGE_LIBFSLVPUWRAP if BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
|
select BR2_PACKAGE_LIBFSLVPUWRAP if BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
|
||||||
select BR2_PACKAGE_IMX_LIB
|
select BR2_PACKAGE_IMX_LIB
|
||||||
select BR2_PACKAGE_LIBFSLPARSER
|
select BR2_PACKAGE_IMX_PARSER
|
||||||
select BR2_PACKAGE_IMX_CODEC
|
select BR2_PACKAGE_IMX_CODEC
|
||||||
select BR2_PACKAGE_FREESCALE_IMX
|
select BR2_PACKAGE_FREESCALE_IMX
|
||||||
help
|
help
|
||||||
|
@ -16,7 +16,7 @@ GST_FSL_PLUGINS_INSTALL_STAGING = YES
|
|||||||
GST_FSL_PLUGINS_AUTORECONF = YES
|
GST_FSL_PLUGINS_AUTORECONF = YES
|
||||||
|
|
||||||
GST_FSL_PLUGINS_DEPENDENCIES += host-pkgconf gstreamer gst-plugins-base \
|
GST_FSL_PLUGINS_DEPENDENCIES += host-pkgconf gstreamer gst-plugins-base \
|
||||||
imx-lib libfslparser imx-codec
|
imx-lib imx-parser imx-codec
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_FREESCALE_IMX_HAS_VPU),y)
|
ifeq ($(BR2_PACKAGE_FREESCALE_IMX_HAS_VPU),y)
|
||||||
GST_FSL_PLUGINS_DEPENDENCIES += libfslvpuwrap
|
GST_FSL_PLUGINS_DEPENDENCIES += libfslvpuwrap
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
config BR2_PACKAGE_LIBFSLPARSER
|
|
||||||
bool "libfslparser"
|
|
||||||
depends on BR2_arm # Only relevant for i.MX
|
|
||||||
help
|
|
||||||
Binary parser libraries for the Freescale i.MX SoCs.
|
|
||||||
|
|
||||||
This library is provided by Freescale as-is and doesn't have
|
|
||||||
an upstream.
|
|
@ -1,2 +0,0 @@
|
|||||||
# locally computed
|
|
||||||
sha256 a04621783c84a9776216caff9563c7f840fddd584b0b2d27738d6ca6d2c77f32 libfslparser-4.0.8.bin
|
|
@ -1,23 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
#
|
|
||||||
# libfslparser
|
|
||||||
#
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
LIBFSLPARSER_VERSION = 4.0.8
|
|
||||||
LIBFSLPARSER_SITE = $(FREESCALE_IMX_SITE)
|
|
||||||
LIBFSLPARSER_SOURCE = libfslparser-$(LIBFSLPARSER_VERSION).bin
|
|
||||||
LIBFSLPARSER_INSTALL_STAGING = YES
|
|
||||||
|
|
||||||
LIBFSLPARSER_LICENSE = Freescale Semiconductor Software License Agreement
|
|
||||||
LIBFSLPARSER_LICENSE_FILES = EULA COPYING
|
|
||||||
LIBFSLPARSER_REDISTRIBUTE = NO
|
|
||||||
|
|
||||||
define LIBFSLPARSER_EXTRACT_CMDS
|
|
||||||
$(call FREESCALE_IMX_EXTRACT_HELPER,$(DL_DIR)/$(LIBFSLPARSER_SOURCE))
|
|
||||||
endef
|
|
||||||
|
|
||||||
# The Makefile installs several versions of the libraries, but we only
|
|
||||||
# need one of them, depending on the platform.
|
|
||||||
|
|
||||||
$(eval $(autotools-package))
|
|
Loading…
Reference in New Issue
Block a user