aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsunyuechi <sunyuechi@iscas.ac.cn>2023-11-22 14:57:29 +0800
committerRémi Denis-Courmont <remi@remlab.net>2023-12-01 20:26:48 +0200
commitd0ec826077c49f4cbf286621771a4a43a9bf57b8 (patch)
tree7fe15d19b791780778bb03be3d59d12679e8f4c7
parent6d196112516f5298f263eeb29a8a1626b6e090d4 (diff)
downloadffmpeg-d0ec826077c49f4cbf286621771a4a43a9bf57b8.tar.gz
checkasm/ac3dsp: add float_to_fixed24 test
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-rw-r--r--tests/checkasm/Makefile1
-rw-r--r--tests/checkasm/ac3dsp.c70
-rw-r--r--tests/checkasm/checkasm.c3
-rw-r--r--tests/checkasm/checkasm.h1
-rw-r--r--tests/fate/checkasm.mak1
5 files changed, 76 insertions, 0 deletions
diff --git a/tests/checkasm/Makefile b/tests/checkasm/Makefile
index 8bc241d29b..53742c93ae 100644
--- a/tests/checkasm/Makefile
+++ b/tests/checkasm/Makefile
@@ -1,5 +1,6 @@
# libavcodec tests
# subsystems
+AVCODECOBJS-$(CONFIG_AC3DSP) += ac3dsp.o
AVCODECOBJS-$(CONFIG_AUDIODSP) += audiodsp.o
AVCODECOBJS-$(CONFIG_BLOCKDSP) += blockdsp.o
AVCODECOBJS-$(CONFIG_BSWAPDSP) += bswapdsp.o
diff --git a/tests/checkasm/ac3dsp.c b/tests/checkasm/ac3dsp.c
new file mode 100644
index 0000000000..8f36f1736c
--- /dev/null
+++ b/tests/checkasm/ac3dsp.c
@@ -0,0 +1,70 @@
+/*
+ * Copyright (c) 2023 Institue of Software Chinese Academy of Sciences (ISCAS).
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include <string.h>
+
+#include "libavutil/mem.h"
+#include "libavutil/mem_internal.h"
+
+#include "libavcodec/ac3dsp.h"
+
+#include "checkasm.h"
+
+#define randomize_float(buf, len) \
+ do { \
+ int i; \
+ for (i = 0; i < len; i++) { \
+ float f = (float)rnd() / (UINT_MAX >> 5) - 16.0f; \
+ buf[i] = f; \
+ } \
+ } while (0)
+
+static void check_float_to_fixed24(AC3DSPContext *c) {
+#define BUF_SIZE 1024
+ LOCAL_ALIGNED_32(float, src, [BUF_SIZE]);
+
+ declare_func(void, int32_t *, const float *, unsigned int);
+
+ randomize_float(src, BUF_SIZE);
+
+ if (check_func(c->float_to_fixed24, "float_to_fixed24")) {
+ LOCAL_ALIGNED_32(int32_t, dst, [BUF_SIZE]);
+ LOCAL_ALIGNED_32(int32_t, dst2, [BUF_SIZE]);
+
+ call_ref(dst, src, BUF_SIZE);
+ call_new(dst2, src, BUF_SIZE);
+
+ if (memcmp(dst, dst2, BUF_SIZE) != 0)
+ fail();
+
+ bench_new(dst, src, BUF_SIZE);
+ }
+
+
+ report("float_to_fixed24");
+}
+
+void checkasm_check_ac3dsp(void)
+{
+ AC3DSPContext c;
+ ff_ac3dsp_init(&c);
+
+ check_float_to_fixed24(&c);
+}
diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c
index a15e801caf..0a1285eca4 100644
--- a/tests/checkasm/checkasm.c
+++ b/tests/checkasm/checkasm.c
@@ -77,6 +77,9 @@ static const struct {
{ "aacpsdsp", checkasm_check_aacpsdsp },
{ "sbrdsp", checkasm_check_sbrdsp },
#endif
+ #if CONFIG_AC3DSP
+ { "ac3dsp", checkasm_check_ac3dsp },
+ #endif
#if CONFIG_ALAC_DECODER
{ "alacdsp", checkasm_check_alacdsp },
#endif
diff --git a/tests/checkasm/checkasm.h b/tests/checkasm/checkasm.h
index 41093f2dca..11d2f7286f 100644
--- a/tests/checkasm/checkasm.h
+++ b/tests/checkasm/checkasm.h
@@ -44,6 +44,7 @@
#include "libavutil/timer.h"
void checkasm_check_aacpsdsp(void);
+void checkasm_check_ac3dsp(void);
void checkasm_check_afir(void);
void checkasm_check_alacdsp(void);
void checkasm_check_audiodsp(void);
diff --git a/tests/fate/checkasm.mak b/tests/fate/checkasm.mak
index 57b0dff4f2..b8ffa0a77e 100644
--- a/tests/fate/checkasm.mak
+++ b/tests/fate/checkasm.mak
@@ -1,4 +1,5 @@
FATE_CHECKASM = fate-checkasm-aacpsdsp \
+ fate-checkasm-ac3dsp \
fate-checkasm-af_afir \
fate-checkasm-alacdsp \
fate-checkasm-audiodsp \