diff options
| author | Zelan Zou <zelan.zou@nxp.com> | 2026-03-20 18:19:20 +0800 |
|---|---|---|
| committer | Zelan Zou <zelan.zou@nxp.com> | 2026-03-23 10:46:17 +0800 |
| commit | cf625182d6cef5fbf199011602b29b0c43c977e8 (patch) | |
| tree | 45f36c64be2722c81416193166ddd75da4b2dec5 | |
| parent | 738739b1c087ccd937d5f731dbf6957ed24118d4 (diff) | |
| download | meta-freescale-cf625182d6cef5fbf199011602b29b0c43c977e8.tar.gz | |
imx-vpu-hantro-vc: Bump 1.10.1 -> 1.11.0
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
| -rw-r--r-- | recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc/0001-base_type.h-make-header-compatible-with-c23.patch | 39 | ||||
| -rw-r--r-- | recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc_1.11.0.bb (renamed from recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc_1.10.1.bb) | 13 |
2 files changed, 5 insertions, 47 deletions
diff --git a/recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc/0001-base_type.h-make-header-compatible-with-c23.patch b/recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc/0001-base_type.h-make-header-compatible-with-c23.patch deleted file mode 100644 index 8d017ab71..000000000 --- a/recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc/0001-base_type.h-make-header-compatible-with-c23.patch +++ /dev/null | |||
| @@ -1,39 +0,0 @@ | |||
| 1 | From e7f6097c9e7cb30f130502cc4804e1a1b01342de Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Max Krummenacher <max.krummenacher@toradex.com> | ||
| 3 | Date: Wed, 7 May 2025 16:13:38 +0000 | ||
| 4 | Subject: [PATCH] base_type.h: make header compatible with c23 | ||
| 5 | |||
| 6 | With C23 bool, true and false are built in keywords and cannot be | ||
| 7 | redefined. | ||
| 8 | |||
| 9 | Upstream-Status: Pending | ||
| 10 | Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> | ||
| 11 | --- | ||
| 12 | usr/include/hantro_VC8000E_enc/base_type.h | 4 ++++ | ||
| 13 | 1 file changed, 4 insertions(+) | ||
| 14 | |||
| 15 | diff --git a/usr/include/hantro_VC8000E_enc/base_type.h b/usr/include/hantro_VC8000E_enc/base_type.h | ||
| 16 | index 282fc81b8eba..af4212eed2bd 100755 | ||
| 17 | --- a/usr/include/hantro_VC8000E_enc/base_type.h | ||
| 18 | +++ b/usr/include/hantro_VC8000E_enc/base_type.h | ||
| 19 | @@ -67,6 +67,9 @@ typedef unsigned int UInt; | ||
| 20 | #define HANTRO_FALSE 0 | ||
| 21 | #define HANTRO_TRUE 1 | ||
| 22 | |||
| 23 | +#if defined __STDC_VERSION__ && __STDC_VERSION__ > 201710L | ||
| 24 | +/* bool, true and false are keywords. */ | ||
| 25 | +#else | ||
| 26 | #ifndef bool | ||
| 27 | typedef enum | ||
| 28 | { | ||
| 29 | @@ -74,6 +77,7 @@ typedef enum | ||
| 30 | true = HANTRO_TRUE | ||
| 31 | } bool; | ||
| 32 | #endif | ||
| 33 | +#endif | ||
| 34 | |||
| 35 | enum | ||
| 36 | { | ||
| 37 | -- | ||
| 38 | 2.42.0 | ||
| 39 | |||
diff --git a/recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc_1.10.1.bb b/recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc_1.11.0.bb index 68c2a4979..528b05e17 100644 --- a/recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc_1.10.1.bb +++ b/recipes-bsp/imx-vpu-hantro-vc/imx-vpu-hantro-vc_1.11.0.bb | |||
| @@ -2,18 +2,14 @@ | |||
| 2 | 2 | ||
| 3 | DESCRIPTION = "i.MX VC8000E Encoder library" | 3 | DESCRIPTION = "i.MX VC8000E Encoder library" |
| 4 | LICENSE = "Proprietary" | 4 | LICENSE = "Proprietary" |
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=ca53281cc0caa7e320d4945a896fb837" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=bc649096ad3928ec06a8713b8d787eac" |
| 6 | 6 | ||
| 7 | inherit fsl-eula-unpack | 7 | inherit fsl-eula-unpack |
| 8 | 8 | ||
| 9 | SRC_URI = " \ | 9 | SRC_URI = " ${FSL_MIRROR}/${BP}-${IMX_SRCREV_ABBREV}.bin;fsl-eula=true" |
| 10 | ${FSL_MIRROR}/${BP}-${IMX_SRCREV_ABBREV}.bin;fsl-eula=true \ | 10 | IMX_SRCREV_ABBREV = "5e18a84" |
| 11 | file://0001-base_type.h-make-header-compatible-with-c23.patch \ | ||
| 12 | " | ||
| 13 | IMX_SRCREV_ABBREV = "c0244a1" | ||
| 14 | |||
| 15 | SRC_URI[sha256sum] = "713ba375f25490727fcc62bab5d5508f74de03204b4c153464b696b652c5c7df" | ||
| 16 | 11 | ||
| 12 | SRC_URI[sha256sum] = "04d2a9c5c75804a11a4500a0133dfc7d8e84f74254cee52c42075f5ecc229550" | ||
| 17 | S = "${UNPACKDIR}/${BP}-${IMX_SRCREV_ABBREV}" | 13 | S = "${UNPACKDIR}/${BP}-${IMX_SRCREV_ABBREV}" |
| 18 | 14 | ||
| 19 | # SCR is the location and name of the Software Content Register file | 15 | # SCR is the location and name of the Software Content Register file |
| @@ -36,4 +32,5 @@ do_install () { | |||
| 36 | FILES:${PN} = "/" | 32 | FILES:${PN} = "/" |
| 37 | 33 | ||
| 38 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | 34 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" |
| 35 | |||
| 39 | COMPATIBLE_MACHINE = "(mx8mp-nxp-bsp)" | 36 | COMPATIBLE_MACHINE = "(mx8mp-nxp-bsp)" |
