diff options
author | sunyuechi <sunyuechi@iscas.ac.cn> | 2024-01-31 19:00:23 +0800 |
---|---|---|
committer | Rémi Denis-Courmont <remi@remlab.net> | 2024-02-17 14:33:35 +0200 |
commit | 6728edadde116aec2efdb03ae09983dfab8e6c70 (patch) | |
tree | 8546948e1fb33f3fe8388d31be2fb330c2626a33 | |
parent | 7f361275959496806a8222254572e34ec0829de4 (diff) | |
download | ffmpeg-6728edadde116aec2efdb03ae09983dfab8e6c70.tar.gz |
checkasm/rv34dsp: add rv34_inv_transform_dc test
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-rw-r--r-- | tests/checkasm/Makefile | 1 | ||||
-rw-r--r-- | tests/checkasm/checkasm.c | 3 | ||||
-rw-r--r-- | tests/checkasm/checkasm.h | 1 | ||||
-rw-r--r-- | tests/checkasm/rv34dsp.c | 65 | ||||
-rw-r--r-- | tests/fate/checkasm.mak | 1 |
5 files changed, 71 insertions, 0 deletions
diff --git a/tests/checkasm/Makefile b/tests/checkasm/Makefile index 3562acb2b2..b58a2e0238 100644 --- a/tests/checkasm/Makefile +++ b/tests/checkasm/Makefile @@ -33,6 +33,7 @@ AVCODECOBJS-$(CONFIG_JPEG2000_DECODER) += jpeg2000dsp.o AVCODECOBJS-$(CONFIG_OPUS_DECODER) += opusdsp.o AVCODECOBJS-$(CONFIG_PIXBLOCKDSP) += pixblockdsp.o AVCODECOBJS-$(CONFIG_HEVC_DECODER) += hevc_add_res.o hevc_deblock.o hevc_idct.o hevc_sao.o hevc_pel.o +AVCODECOBJS-$(CONFIG_RV34DSP) += rv34dsp.o AVCODECOBJS-$(CONFIG_SVQ1_ENCODER) += svq1enc.o AVCODECOBJS-$(CONFIG_TAK_DECODER) += takdsp.o AVCODECOBJS-$(CONFIG_UTVIDEO_DECODER) += utvideodsp.o diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c index 36a97957e5..dcd2fd6957 100644 --- a/tests/checkasm/checkasm.c +++ b/tests/checkasm/checkasm.c @@ -164,6 +164,9 @@ static const struct { #if CONFIG_PIXBLOCKDSP { "pixblockdsp", checkasm_check_pixblockdsp }, #endif + #if CONFIG_RV34DSP + { "rv34dsp", checkasm_check_rv34dsp }, + #endif #if CONFIG_SVQ1_ENCODER { "svq1enc", checkasm_check_svq1enc }, #endif diff --git a/tests/checkasm/checkasm.h b/tests/checkasm/checkasm.h index 53cb3ccfbf..f90920dee7 100644 --- a/tests/checkasm/checkasm.h +++ b/tests/checkasm/checkasm.h @@ -111,6 +111,7 @@ void checkasm_check_nlmeans(void); void checkasm_check_opusdsp(void); void checkasm_check_pixblockdsp(void); void checkasm_check_sbrdsp(void); +void checkasm_check_rv34dsp(void); void checkasm_check_svq1enc(void); void checkasm_check_synth_filter(void); void checkasm_check_sw_gbrp(void); diff --git a/tests/checkasm/rv34dsp.c b/tests/checkasm/rv34dsp.c new file mode 100644 index 0000000000..9f46a54877 --- /dev/null +++ b/tests/checkasm/rv34dsp.c @@ -0,0 +1,65 @@ +/* + * Copyright (c) 2024 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 "libavutil/mem.h" +#include "libavutil/mem_internal.h" + +#include "libavcodec/rv34dsp.h" + +#include "checkasm.h" + +#define BUF_SIZE 1024 + +#define randomize(buf, len) \ + do { \ + for (int i = 0; i < len; i++) \ + buf[i] = rnd(); \ + } while (0) + +static void test_rv34_inv_transform_dc(RV34DSPContext *s) { + declare_func_emms(AV_CPU_FLAG_MMX, void, int16_t *block); + + if (check_func(s->rv34_inv_transform_dc, "rv34_inv_transform_dc")) { + LOCAL_ALIGNED_16(int16_t, p1, [BUF_SIZE]); + LOCAL_ALIGNED_16(int16_t, p2, [BUF_SIZE]); + + randomize(p1, BUF_SIZE); + memcpy(p2, p1, BUF_SIZE * sizeof(*p1)); + + call_ref(p1); + call_new(p2); + + if (memcmp(p1, p2, BUF_SIZE * sizeof (*p1)) != 0) { + fail(); + } + + bench_new(p1); + } + + report("rv34_inv_transform_dc"); +} + +void checkasm_check_rv34dsp(void) +{ + RV34DSPContext s = { 0 }; + ff_rv34dsp_init(&s); + + test_rv34_inv_transform_dc(&s); +} diff --git a/tests/fate/checkasm.mak b/tests/fate/checkasm.mak index ae12be6f44..3b5b867a97 100644 --- a/tests/fate/checkasm.mak +++ b/tests/fate/checkasm.mak @@ -33,6 +33,7 @@ FATE_CHECKASM = fate-checkasm-aacencdsp \ fate-checkasm-opusdsp \ fate-checkasm-pixblockdsp \ fate-checkasm-sbrdsp \ + fate-checkasm-rv34dsp \ fate-checkasm-svq1enc \ fate-checkasm-synth_filter \ fate-checkasm-sw_gbrp \ |