87fcc08993
Changelog since 4.0.7: -Support hevc in MPG2 parser. -Enhance the parsing conditions in SPS nal unit. Parse system header to get stream id. For mpeg video, don't call parseh264 to avoid mistakes. -Fix memory leak, free temp data buffer after parsing header. This patch is based on the Yocto equivalent: https://github.com/Freescale/meta-fsl-arm/commit/c3aa06b3 This package has been implicitely 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: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
24 lines
759 B
Makefile
24 lines
759 B
Makefile
################################################################################
|
|
#
|
|
# 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))
|