Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,109 @@
|
||||
From 35c1ed84a158354c37e329bad0e236b156836ac7 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Tue, 23 May 2023 14:59:26 -0700
|
||||
Subject: [PATCH] subpel_variance_neon: Provide prototypes for missing
|
||||
functions
|
||||
|
||||
Fixes build with clang-15
|
||||
aom_dsp/arm/subpel_variance_neon.c:121:10: error: call to undeclared function 'aom_variance8x8_neon'; ISO C99 and later do not support implicit function dec
|
||||
larations [-Wimplicit-function-declaration]
|
||||
| return aom_variance8x8_neon(temp2, 8, dst, dst_stride, sse);
|
||||
| ^
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
aom_dsp/arm/subpel_variance_neon.c | 76 ++++++++++++++++++++++++++++++
|
||||
1 file changed, 76 insertions(+)
|
||||
|
||||
diff --git a/aom_dsp/arm/subpel_variance_neon.c b/aom_dsp/arm/subpel_variance_neon.c
|
||||
index a05886066c4..ea6bada224d 100644
|
||||
--- a/aom_dsp/arm/subpel_variance_neon.c
|
||||
+++ b/aom_dsp/arm/subpel_variance_neon.c
|
||||
@@ -20,6 +20,82 @@
|
||||
#include "aom_dsp/variance.h"
|
||||
#include "aom_dsp/arm/mem_neon.h"
|
||||
|
||||
+extern unsigned int aom_variance8x8_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance16x16_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance16x32_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance16x64_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance32x8_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance32x16_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance32x32_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance32x64_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance32x128_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance64x8_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance64x16_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance64x32_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance64x64_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance64x128_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance128x8_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance128x16_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance128x32_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance128x64_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
+extern unsigned int aom_variance128x128_neon(const uint8_t *a, int a_stride,
|
||||
+ const uint8_t *b, int b_stride,
|
||||
+ unsigned int *sse);
|
||||
+
|
||||
static void var_filter_block2d_bil_w4(const uint8_t *src_ptr, uint8_t *dst_ptr,
|
||||
int src_stride, int pixel_step,
|
||||
int dst_height, int filter_offset) {
|
||||
--
|
||||
2.40.1
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
SUMMARY = "Alliance for Open Media - AV1 Codec Library"
|
||||
DESCRIPTION = "Alliance for Open Media AV1 codec library"
|
||||
|
||||
LICENSE = "BSD-2-Clause & AOM-Patent-License-1.0"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=6ea91368c1bbdf877159435572b931f5 \
|
||||
file://PATENTS;md5=a111d47497d3bb49e04eef71377eb8ba \
|
||||
"
|
||||
SRCREV = "6054fae218eda6e53e1e3b4f7ef0fff4877c7bf1"
|
||||
SRC_URI = "git://aomedia.googlesource.com/aom;protocol=https;branch=main \
|
||||
file://0001-subpel_variance_neon-Provide-prototypes-for-missing-.patch"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit cmake pkgconfig
|
||||
|
||||
DEPENDS = " nasm-native"
|
||||
|
||||
EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=1 -DENABLE_TESTS=0 \
|
||||
-DPERL_EXECUTABLE=${HOSTTOOLS_DIR}/perl \
|
||||
"
|
||||
CMAKE_VERBOSE = "VERBOSE=1"
|
||||
CFLAGS:append:libc-musl = " -D_GNU_SOURCE"
|
||||
EXTRA_OECMAKE:append:arm = " -DENABLE_NEON=OFF"
|
||||
|
||||
do_generate_toolchain_file:append() {
|
||||
echo "set(AOM_AS_FLAGS --debug-prefix-map ${S}=${TARGET_DBGSRC_DIR})" >> ${WORKDIR}/toolchain.cmake
|
||||
}
|
||||
Reference in New Issue
Block a user