imx-vpuwrap: Upgrade to LF6.12.20-2.0.0

Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
This commit is contained in:
Zelan Zou 2025-08-11 17:53:13 +08:00
parent 2de59942c0
commit 50b97a4d17
2 changed files with 5 additions and 40 deletions

View File

@ -1,32 +0,0 @@
From a3c2f61649afd05e4bab457370f0b32d7644505c Mon Sep 17 00:00:00 2001
From: Max Krummenacher <max.krummenacher@toradex.com>
Date: Mon, 3 Mar 2025 08:24:51 +0000
Subject: [PATCH] vpu_wrapper_hantro_encoder: fix missing include
gettimeofday is declared in sys/time.h. Add the include.
Fixes the build error:
| ../git/vpu_wrapper_hantro_encoder.c:953:3: error: implicit declaration of function 'gettimeofday' [-Wimplicit-function-declaration]
| 953 | gettimeofday (&pObj->tvEnd, NULL);
Upstream-Status: Pending
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
---
vpu_wrapper_hantro_encoder.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/vpu_wrapper_hantro_encoder.c b/vpu_wrapper_hantro_encoder.c
index 3819c389320c..a0bdb2f4f6c0 100755
--- a/vpu_wrapper_hantro_encoder.c
+++ b/vpu_wrapper_hantro_encoder.c
@@ -25,6 +25,7 @@
#include <string.h>
#include <time.h>
#include <semaphore.h>
+#include <sys/time.h>
#include "headers/OMX_Video.h"
#include "headers/OMX_VideoExt.h"
--
2.42.0

View File

@ -1,21 +1,18 @@
# Copyright (C) 2013-2016 Freescale Semiconductor # Copyright (C) 2013-2016 Freescale Semiconductor
# Copyright (C) 2017-2023 NXP # Copyright (C) 2017-2023,2025 NXP
# Released under the MIT license (see COPYING.MIT for the terms) # Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "Freescale Multimedia VPU wrapper" DESCRIPTION = "Freescale Multimedia VPU wrapper"
LICENSE = "Proprietary" LICENSE = "Proprietary"
SECTION = "multimedia" SECTION = "multimedia"
LIC_FILES_CHKSUM = "file://COPYING;md5=c0fb372b5d7f12181de23ef480f225f3" LIC_FILES_CHKSUM = "file://COPYING;md5=a93b654673e1bc8398ed1f30e0813359"
DEPENDS = "virtual/imxvpu" DEPENDS = "virtual/imxvpu"
DEPENDS:append:mx8mp-nxp-bsp = " imx-vpu-hantro-vc" DEPENDS:append:mx8mp-nxp-bsp = " imx-vpu-hantro-vc"
SRC_URI = " \ SRC_URI = "git://github.com/NXP/imx-vpuwrap.git;protocol=https;branch=${SRCBRANCH}"
git://github.com/NXP/imx-vpuwrap.git;protocol=https;branch=${SRCBRANCH} \ SRCBRANCH = "MM_04.10.0_2505_L6.12.20"
file://0001-vpu_wrapper_hantro_encoder-fix-missing-include.patch \ SRCREV = "feeb9109a027d3a0f040b0bddb5f79a1daad3587"
"
SRCBRANCH = "MM_04.09.03_2412_L6.12.y"
SRCREV = "d8703ee3245797111ad21c52982efa8b6db33241"
inherit autotools pkgconfig inherit autotools pkgconfig