package/bayer2rgb-neon: bump to latest commit

Drop patch (already in version)

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2024-01-06 23:43:20 +01:00 committed by Thomas Petazzoni
parent 13f8df8ed6
commit e591475b4d
4 changed files with 2 additions and 78 deletions

View File

@ -178,7 +178,6 @@ package/bandwidthd/0001-src-bandwidthd.h-fix-build-with-gcc-10.patch Upstream
package/bash/0001-input.h-add-missing-include-on-stdio.h.patch Upstream
package/bash/0002-parse.y-fix-compilation-for-non-multibyte-builds.patch Upstream
package/bash/0003-configure-invert-condition-for-strtoimax-builtin.patch Upstream
package/bayer2rgb-neon/0001-add-some-_always_inline_-annotations.patch Upstream
package/bc/0001-bc-use-MAKEINFO-variable-for-docs.patch Upstream
package/bc/0002-notice-read-and-write-errors-on-input-and-output.patch Upstream
package/bc/0003-dc-fix-exit-code-of-q-command.patch Upstream

View File

@ -1,75 +0,0 @@
From 4e5d8be1b0d18453b76fca2c5139222a071dd207 Mon Sep 17 00:00:00 2001
From: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
Date: Mon, 4 Jul 2022 12:05:30 +0200
Subject: [PATCH] add some _always_inline_ annotations
enforce inlining to fix build errors with '-Og'
fixes #1
Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
[Retrieved from:
https://gitlab-ext.sigma-chemnitz.de/ensc/bayer2rgb/-/commit/4e5d8be1b0d18453b76fca2c5139222a071dd207]
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
src/convert.c | 5 +++--
src/main.c | 5 +++--
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/convert.c b/src/convert.c
index c852a14..ec77040 100644
--- a/src/convert.c
+++ b/src/convert.c
@@ -17,8 +17,9 @@
#include <stdbool.h>
#include <assert.h>
#include "bayer2rgb.h"
+#include "compiler.h"
-static bool have_neon()
+inline static _always_inline_ bool have_neon()
{
#ifdef HAVE_NEON
return true;
@@ -27,7 +28,7 @@ static bool have_neon()
#endif
}
-static bool have_cplusplus()
+inline static _always_inline_ bool have_cplusplus()
{
#ifdef HAVE_CPLUSPLUS
return true;
diff --git a/src/main.c b/src/main.c
index 841a142..087e8e5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -33,6 +33,7 @@
#include "src/bayer2rgb.h"
#include "src/bayer2rgb-cmdline.h"
+#include "src/compiler.h"
#define BPP_TO_BYTE(_bpp) (((_bpp) + 7) / 8)
@@ -68,7 +69,7 @@ struct x_image_out {
size_t total_size;
};
-inline static bool have_neon(void)
+inline static _always_inline_ bool have_neon(void)
{
#ifdef HAVE_NEON
return true;
@@ -77,7 +78,7 @@ inline static bool have_neon(void)
#endif
}
-static bool have_cplusplus()
+inline static _always_inline_ bool have_cplusplus()
{
#ifdef HAVE_CPLUSPLUS
return true;
--
GitLab

View File

@ -1,3 +1,3 @@
# Locally calculated
sha256 edf451dbb52ad67eb35f9043390bd75ea7228d493c99184aae80b3bd27beab62 bayer2rgb-neon-15feb1115b4828488cc36d09f625e23e8b6a0ec5-br1.tar.gz
sha256 35b38a40e98e9fa7fb8042c718f460fb806e916d2bf3e9721c07bbe4b42faad5 bayer2rgb-neon-bc950b3398ba034fe5cc39f625796a6111cdb87f-br1.tar.gz
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING

View File

@ -4,7 +4,7 @@
#
################################################################################
BAYER2RGB_NEON_VERSION = 15feb1115b4828488cc36d09f625e23e8b6a0ec5
BAYER2RGB_NEON_VERSION = bc950b3398ba034fe5cc39f625796a6111cdb87f
BAYER2RGB_NEON_SITE = https://gitlab-ext.sigma-chemnitz.de/ensc/bayer2rgb.git
BAYER2RGB_NEON_SITE_METHOD = git
BAYER2RGB_NEON_LICENSE = GPL-3.0