Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Gary Bisson <gary.bisson@boundarydevices.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 08/15] imx-codec: bump to version 4.2.1
Date: Thu,  4 Jan 2018 12:39:40 +0100	[thread overview]
Message-ID: <20180104113947.21235-9-gary.bisson@boundarydevices.com> (raw)
In-Reply-To: <20180104113947.21235-1-gary.bisson@boundarydevices.com>

Changelog:
1. Upgrade EULA to v18
2. Bugfix/Optimization
 - AACPlus: fixed playbe silence after 1s of stream
 - Removed duplicated code in aac_dec/aacplus_dec.
 - Removed unused code in flac_dec.

Note that this package now includes AARCH64 libraries for the upcoming
i.MX8 CPU family.

Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
---
Changelog v2:
- Fix imx-codec dependency to add AARCH64 (Baruch)
---
 package/freescale-imx/imx-codec/Config.in      | 4 ++--
 package/freescale-imx/imx-codec/imx-codec.hash | 2 +-
 package/freescale-imx/imx-codec/imx-codec.mk   | 6 +++++-
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/package/freescale-imx/imx-codec/Config.in b/package/freescale-imx/imx-codec/Config.in
index df248b0cf2..0ecb92bf02 100644
--- a/package/freescale-imx/imx-codec/Config.in
+++ b/package/freescale-imx/imx-codec/Config.in
@@ -1,6 +1,6 @@
 config BR2_PACKAGE_IMX_CODEC
 	bool "imx-codec"
-	depends on BR2_arm # Only relevant for i.MX
+	depends on BR2_arm || BR2_aarch64 # Only relevant for i.MX
 	depends on BR2_TOOLCHAIN_USES_GLIBC # prebuilt binaries
 	help
 	  Binary codec libraries for the NXP i.MX SoCs.
@@ -9,5 +9,5 @@ config BR2_PACKAGE_IMX_CODEC
 	  an upstream.
 
 comment "imx-codec needs a glibc toolchain"
-	depends on BR2_arm
+	depends on BR2_arm || BR2_aarch64
 	depends on !BR2_TOOLCHAIN_USES_GLIBC
diff --git a/package/freescale-imx/imx-codec/imx-codec.hash b/package/freescale-imx/imx-codec/imx-codec.hash
index 2bb7a242e9..53d8f71c39 100644
--- a/package/freescale-imx/imx-codec/imx-codec.hash
+++ b/package/freescale-imx/imx-codec/imx-codec.hash
@@ -1,2 +1,2 @@
 # locally computed
-sha256	98fe71cb44f7e858c64c5eda81741ed02f40afaadc3d4ed1e693c7d1e684b81d  imx-codec-4.1.4.bin
+sha256	20d3f9b4187fcd9e7007c94558a00bab1191513eee74b6f0d8c7b43f874e06ed  imx-codec-4.2.1.bin
diff --git a/package/freescale-imx/imx-codec/imx-codec.mk b/package/freescale-imx/imx-codec/imx-codec.mk
index 44be941fe2..ea4d90110f 100644
--- a/package/freescale-imx/imx-codec/imx-codec.mk
+++ b/package/freescale-imx/imx-codec/imx-codec.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-IMX_CODEC_VERSION = 4.1.4
+IMX_CODEC_VERSION = 4.2.1
 IMX_CODEC_SITE = $(FREESCALE_IMX_SITE)
 IMX_CODEC_SOURCE = imx-codec-$(IMX_CODEC_VERSION).bin
 IMX_CODEC_INSTALL_STAGING = YES
@@ -13,6 +13,10 @@ IMX_CODEC_LICENSE = NXP Semiconductor Software License Agreement, BSD-3-Clause (
 IMX_CODEC_LICENSE_FILES = EULA COPYING
 IMX_CODEC_REDISTRIBUTE = NO
 
+ifeq ($(BR2_aarch64),y)
+IMX_CODEC_CONF_OPTS += --enable-armv8
+endif
+
 ifeq ($(BR2_ARM_EABIHF),y)
 IMX_CODEC_CONF_OPTS += --enable-fhw
 endif
-- 
2.15.1

  parent reply	other threads:[~2018-01-04 11:39 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-04 11:39 [Buildroot] [PATCH v2 00/15] imx: update packages to 4.9.x_1.0.0_ga release Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 01/15] freescale-imx: add config options for i.MX6SL/SX and i.MX7D/ULP Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 02/15] imx-lib: bump to version imx_4.9.11_1.0.0_ga Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 03/15] imx-gpu-g2d: new package Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 04/15] imx-gpu-viv: bump to version 6.2.2.p0 Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 05/15] kernel-module-imx-gpu-viv: " Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 06/15] xdriver_xf86-video-imx-viv: " Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 07/15] firmware-imx: bump to version 6.0 Gary Bisson
2018-01-04 11:39 ` Gary Bisson [this message]
2018-01-04 11:39 ` [Buildroot] [PATCH v2 09/15] imx-parser: bump to version 4.2.1 Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 10/15] imx-vpu: bump to version 5.4.37 Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 11/15] imx-kobs: bump revision to a0e9adce Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 12/15] imx-uuc: bump revision to 2ae63428 Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 13/15] configs: freescale_imx*: bump to version 4.9.x_1.0.0_ga Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 14/15] configs: nitrogen*: bump kernel version to 4.9.x_1.0.0_ga Gary Bisson
2018-01-04 11:39 ` [Buildroot] [PATCH v2 15/15] configs: nitrogen*: bump u-boot version to 2017.07 Gary Bisson
  -- strict thread matches above, loose matches on Subject: below --
2018-01-05 14:39 [Buildroot] [PATCH v2 00/15] imx: update packages to 4.9.x_1.0.0_ga release Gary Bisson
2018-01-05 14:39 ` [Buildroot] [PATCH v2 08/15] imx-codec: bump to version 4.2.1 Gary Bisson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180104113947.21235-9-gary.bisson@boundarydevices.com \
    --to=gary.bisson@boundarydevices.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox