* [FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34
@ 2023-11-28 16:59 flow gg
2023-11-30 15:31 ` Rémi Denis-Courmont
0 siblings, 1 reply; 7+ messages in thread
From: flow gg @ 2023-11-28 16:59 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1: Type: text/plain, Size: 1 bytes --]
[-- Attachment #2: 0001-checkasm-test-for-abs_pow34.patch --]
[-- Type: text/x-patch, Size: 6545 bytes --]
From 85e60d75554894964825f5718d14591294ec4e88 Mon Sep 17 00:00:00 2001
From: sunyuechi <sunyuechi@iscas.ac.cn>
Date: Tue, 28 Nov 2023 14:08:12 +0800
Subject: [PATCH 1/2] checkasm: test for abs_pow34
---
libavcodec/aacenc.c | 24 +++++++------
libavcodec/aacenc.h | 1 +
tests/checkasm/Makefile | 1 +
tests/checkasm/aacencdsp.c | 70 ++++++++++++++++++++++++++++++++++++++
tests/checkasm/checkasm.c | 3 ++
tests/checkasm/checkasm.h | 1 +
tests/fate/checkasm.mak | 3 +-
7 files changed, 92 insertions(+), 11 deletions(-)
create mode 100644 tests/checkasm/aacencdsp.c
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index 5e6a255a8f..443b25e25a 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -1381,16 +1381,7 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
ff_lpc_init(&s->lpc, 2*avctx->frame_size, TNS_MAX_ORDER, FF_LPC_TYPE_LEVINSON);
s->random_state = 0x1f2e3d4c;
- s->abs_pow34 = abs_pow34_v;
- s->quant_bands = quantize_bands;
-
-#if ARCH_X86
- ff_aac_dsp_init_x86(s);
-#endif
-
-#if HAVE_MIPSDSP
- ff_aac_coder_init_mips(s);
-#endif
+ ff_aac_dsp_init(s);
ff_af_queue_init(avctx, &s->afq);
@@ -1444,3 +1435,16 @@ const FFCodec ff_aac_encoder = {
AV_SAMPLE_FMT_NONE },
.p.priv_class = &aacenc_class,
};
+
+void ff_aac_dsp_init(AACEncContext *s){
+ s->abs_pow34 = abs_pow34_v;
+ s->quant_bands = quantize_bands;
+
+#if ARCH_X86
+ ff_aac_dsp_init_x86(s);
+#endif
+
+#if HAVE_MIPSDSP
+ ff_aac_coder_init_mips(s);
+#endif
+}
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h
index b030c652ae..09dd8639be 100644
--- a/libavcodec/aacenc.h
+++ b/libavcodec/aacenc.h
@@ -154,6 +154,7 @@ typedef struct AACEncContext {
} buffer;
} AACEncContext;
+void ff_aac_dsp_init(AACEncContext *s);
void ff_aac_dsp_init_x86(AACEncContext *s);
void ff_aac_coder_init_mips(AACEncContext *c);
void ff_quantize_band_cost_cache_init(struct AACEncContext *s);
diff --git a/tests/checkasm/Makefile b/tests/checkasm/Makefile
index 8bc241d29b..da209dd7ad 100644
--- a/tests/checkasm/Makefile
+++ b/tests/checkasm/Makefile
@@ -22,6 +22,7 @@ AVCODECOBJS-$(CONFIG_VIDEODSP) += videodsp.o
# decoders/encoders
AVCODECOBJS-$(CONFIG_AAC_DECODER) += aacpsdsp.o \
sbrdsp.o
+AVCODECOBJS-$(CONFIG_AAC_ENCODER) += aacencdsp.o
AVCODECOBJS-$(CONFIG_ALAC_DECODER) += alacdsp.o
AVCODECOBJS-$(CONFIG_DCA_DECODER) += synth_filter.o
AVCODECOBJS-$(CONFIG_EXR_DECODER) += exrdsp.o
diff --git a/tests/checkasm/aacencdsp.c b/tests/checkasm/aacencdsp.c
new file mode 100644
index 0000000000..684c775862
--- /dev/null
+++ b/tests/checkasm/aacencdsp.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/aacenc.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 test_abs_pow34(AACEncContext *s) {
+#define BUF_SIZE 1024
+ LOCAL_ALIGNED_32(float, in, [BUF_SIZE]);
+
+ declare_func(void, float *, const float *, int);
+
+ randomize_float(in, BUF_SIZE);
+
+ if (check_func(s->abs_pow34, "abs_pow34")) {
+ LOCAL_ALIGNED_32(float, out, [BUF_SIZE]);
+ LOCAL_ALIGNED_32(float, out2, [BUF_SIZE]);
+
+ call_ref(out, in, BUF_SIZE);
+ call_new(out2, in, BUF_SIZE);
+
+ if (memcmp(out, out2, BUF_SIZE * sizeof(float)) != 0)
+ fail();
+
+ bench_new(out, in, BUF_SIZE);
+ }
+
+ report("abs_pow34");
+}
+
+
+void checkasm_check_aacencdsp(void)
+{
+ AACEncContext s = { 0 };
+ ff_aac_dsp_init(&s);
+
+ test_abs_pow34(&s);
+}
diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c
index a15e801caf..a8d17ba740 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_AAC_ENCODER
+ { "aacencdsp", checkasm_check_aacencdsp },
+ #endif
#if CONFIG_ALAC_DECODER
{ "alacdsp", checkasm_check_alacdsp },
#endif
diff --git a/tests/checkasm/checkasm.h b/tests/checkasm/checkasm.h
index 41093f2dca..df4dc5272e 100644
--- a/tests/checkasm/checkasm.h
+++ b/tests/checkasm/checkasm.h
@@ -43,6 +43,7 @@
#include "libavutil/lfg.h"
#include "libavutil/timer.h"
+void checkasm_check_aacencdsp(void);
void checkasm_check_aacpsdsp(void);
void checkasm_check_afir(void);
void checkasm_check_alacdsp(void);
diff --git a/tests/fate/checkasm.mak b/tests/fate/checkasm.mak
index 57b0dff4f2..f23151aa6e 100644
--- a/tests/fate/checkasm.mak
+++ b/tests/fate/checkasm.mak
@@ -1,4 +1,5 @@
-FATE_CHECKASM = fate-checkasm-aacpsdsp \
+FATE_CHECKASM = fate-checkasm-aacencdsp \
+ fate-checkasm-aacpsdsp \
fate-checkasm-af_afir \
fate-checkasm-alacdsp \
fate-checkasm-audiodsp \
--
2.43.0
[-- Attachment #3: Type: text/plain, Size: 251 bytes --]
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34
2023-11-28 16:59 [FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34 flow gg
@ 2023-11-30 15:31 ` Rémi Denis-Courmont
2023-11-30 20:25 ` flow gg
0 siblings, 1 reply; 7+ messages in thread
From: Rémi Denis-Courmont @ 2023-11-30 15:31 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Le tiistaina 28. marraskuuta 2023, 18.59.38 EET flow gg a écrit :
>
Since nobody else commented, I shall note that you should probably split the
underlying lavc changes into a separate preliminary patch.
--
レミ・デニ-クールモン
http://www.remlab.net/
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34
2023-11-30 15:31 ` Rémi Denis-Courmont
@ 2023-11-30 20:25 ` flow gg
2023-12-04 21:46 ` flow gg
0 siblings, 1 reply; 7+ messages in thread
From: flow gg @ 2023-11-30 20:25 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1: Type: text/plain, Size: 697 bytes --]
Okay, I splited and attached
Rémi Denis-Courmont <remi@remlab.net> 于2023年11月30日周四 23:31写道:
> Le tiistaina 28. marraskuuta 2023, 18.59.38 EET flow gg a écrit :
> >
>
> Since nobody else commented, I shall note that you should probably split
> the
> underlying lavc changes into a separate preliminary patch.
>
> --
> レミ・デニ-クールモン
> http://www.remlab.net/
>
>
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
>
[-- Attachment #2: 0001-lvac-aacenc-add-ff_aac_dsp_init.patch --]
[-- Type: text/x-patch, Size: 1864 bytes --]
From 95716fe7798ef207bb7924dff81970a45c358173 Mon Sep 17 00:00:00 2001
From: sunyuechi <sunyuechi@iscas.ac.cn>
Date: Fri, 1 Dec 2023 04:21:53 +0800
Subject: [PATCH 1/3] lvac/aacenc: add ff_aac_dsp_init
This is for clarity and use in testing, consistent with other parts of the code.
---
libavcodec/aacenc.c | 24 ++++++++++++++----------
libavcodec/aacenc.h | 1 +
2 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index 5e6a255a8f..443b25e25a 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -1381,16 +1381,7 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
ff_lpc_init(&s->lpc, 2*avctx->frame_size, TNS_MAX_ORDER, FF_LPC_TYPE_LEVINSON);
s->random_state = 0x1f2e3d4c;
- s->abs_pow34 = abs_pow34_v;
- s->quant_bands = quantize_bands;
-
-#if ARCH_X86
- ff_aac_dsp_init_x86(s);
-#endif
-
-#if HAVE_MIPSDSP
- ff_aac_coder_init_mips(s);
-#endif
+ ff_aac_dsp_init(s);
ff_af_queue_init(avctx, &s->afq);
@@ -1444,3 +1435,16 @@ const FFCodec ff_aac_encoder = {
AV_SAMPLE_FMT_NONE },
.p.priv_class = &aacenc_class,
};
+
+void ff_aac_dsp_init(AACEncContext *s){
+ s->abs_pow34 = abs_pow34_v;
+ s->quant_bands = quantize_bands;
+
+#if ARCH_X86
+ ff_aac_dsp_init_x86(s);
+#endif
+
+#if HAVE_MIPSDSP
+ ff_aac_coder_init_mips(s);
+#endif
+}
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h
index b030c652ae..09dd8639be 100644
--- a/libavcodec/aacenc.h
+++ b/libavcodec/aacenc.h
@@ -154,6 +154,7 @@ typedef struct AACEncContext {
} buffer;
} AACEncContext;
+void ff_aac_dsp_init(AACEncContext *s);
void ff_aac_dsp_init_x86(AACEncContext *s);
void ff_aac_coder_init_mips(AACEncContext *c);
void ff_quantize_band_cost_cache_init(struct AACEncContext *s);
--
2.43.0
[-- Attachment #3: 0002-checkasm-test-for-abs_pow34.patch --]
[-- Type: text/x-patch, Size: 5029 bytes --]
From 3c5b83a744f86107cdb58ad6e288c027cfa8c3cd Mon Sep 17 00:00:00 2001
From: sunyuechi <sunyuechi@iscas.ac.cn>
Date: Tue, 28 Nov 2023 14:08:12 +0800
Subject: [PATCH 2/3] checkasm: test for abs_pow34
---
tests/checkasm/Makefile | 1 +
tests/checkasm/aacencdsp.c | 70 ++++++++++++++++++++++++++++++++++++++
tests/checkasm/checkasm.c | 3 ++
tests/checkasm/checkasm.h | 1 +
tests/fate/checkasm.mak | 3 +-
5 files changed, 77 insertions(+), 1 deletion(-)
create mode 100644 tests/checkasm/aacencdsp.c
diff --git a/tests/checkasm/Makefile b/tests/checkasm/Makefile
index 8bc241d29b..da209dd7ad 100644
--- a/tests/checkasm/Makefile
+++ b/tests/checkasm/Makefile
@@ -22,6 +22,7 @@ AVCODECOBJS-$(CONFIG_VIDEODSP) += videodsp.o
# decoders/encoders
AVCODECOBJS-$(CONFIG_AAC_DECODER) += aacpsdsp.o \
sbrdsp.o
+AVCODECOBJS-$(CONFIG_AAC_ENCODER) += aacencdsp.o
AVCODECOBJS-$(CONFIG_ALAC_DECODER) += alacdsp.o
AVCODECOBJS-$(CONFIG_DCA_DECODER) += synth_filter.o
AVCODECOBJS-$(CONFIG_EXR_DECODER) += exrdsp.o
diff --git a/tests/checkasm/aacencdsp.c b/tests/checkasm/aacencdsp.c
new file mode 100644
index 0000000000..684c775862
--- /dev/null
+++ b/tests/checkasm/aacencdsp.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/aacenc.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 test_abs_pow34(AACEncContext *s) {
+#define BUF_SIZE 1024
+ LOCAL_ALIGNED_32(float, in, [BUF_SIZE]);
+
+ declare_func(void, float *, const float *, int);
+
+ randomize_float(in, BUF_SIZE);
+
+ if (check_func(s->abs_pow34, "abs_pow34")) {
+ LOCAL_ALIGNED_32(float, out, [BUF_SIZE]);
+ LOCAL_ALIGNED_32(float, out2, [BUF_SIZE]);
+
+ call_ref(out, in, BUF_SIZE);
+ call_new(out2, in, BUF_SIZE);
+
+ if (memcmp(out, out2, BUF_SIZE * sizeof(float)) != 0)
+ fail();
+
+ bench_new(out, in, BUF_SIZE);
+ }
+
+ report("abs_pow34");
+}
+
+
+void checkasm_check_aacencdsp(void)
+{
+ AACEncContext s = { 0 };
+ ff_aac_dsp_init(&s);
+
+ test_abs_pow34(&s);
+}
diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c
index a15e801caf..a8d17ba740 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_AAC_ENCODER
+ { "aacencdsp", checkasm_check_aacencdsp },
+ #endif
#if CONFIG_ALAC_DECODER
{ "alacdsp", checkasm_check_alacdsp },
#endif
diff --git a/tests/checkasm/checkasm.h b/tests/checkasm/checkasm.h
index 41093f2dca..df4dc5272e 100644
--- a/tests/checkasm/checkasm.h
+++ b/tests/checkasm/checkasm.h
@@ -43,6 +43,7 @@
#include "libavutil/lfg.h"
#include "libavutil/timer.h"
+void checkasm_check_aacencdsp(void);
void checkasm_check_aacpsdsp(void);
void checkasm_check_afir(void);
void checkasm_check_alacdsp(void);
diff --git a/tests/fate/checkasm.mak b/tests/fate/checkasm.mak
index 57b0dff4f2..f23151aa6e 100644
--- a/tests/fate/checkasm.mak
+++ b/tests/fate/checkasm.mak
@@ -1,4 +1,5 @@
-FATE_CHECKASM = fate-checkasm-aacpsdsp \
+FATE_CHECKASM = fate-checkasm-aacencdsp \
+ fate-checkasm-aacpsdsp \
fate-checkasm-af_afir \
fate-checkasm-alacdsp \
fate-checkasm-audiodsp \
--
2.43.0
[-- Attachment #4: Type: text/plain, Size: 251 bytes --]
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34
2023-11-30 20:25 ` flow gg
@ 2023-12-04 21:46 ` flow gg
2023-12-09 10:45 ` flow gg
0 siblings, 1 reply; 7+ messages in thread
From: flow gg @ 2023-12-04 21:46 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1: Type: text/plain, Size: 872 bytes --]
Because there was a conflict, the patch was updated in the reply
flow gg <hlefthleft@gmail.com> 于2023年12月1日周五 04:25写道:
> Okay, I splited and attached
>
>
>
> Rémi Denis-Courmont <remi@remlab.net> 于2023年11月30日周四 23:31写道:
>
>> Le tiistaina 28. marraskuuta 2023, 18.59.38 EET flow gg a écrit :
>> >
>>
>> Since nobody else commented, I shall note that you should probably split
>> the
>> underlying lavc changes into a separate preliminary patch.
>>
>> --
>> レミ・デニ-クールモン
>> http://www.remlab.net/
>>
>>
>>
>> _______________________________________________
>> ffmpeg-devel mailing list
>> ffmpeg-devel@ffmpeg.org
>> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>>
>> To unsubscribe, visit link above, or email
>> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
>>
>
[-- Attachment #2: 0001-lvac-aacenc-add-ff_aac_dsp_init.patch --]
[-- Type: text/x-patch, Size: 1864 bytes --]
From 278632c349dad4f5f551e7565511d5095b607d06 Mon Sep 17 00:00:00 2001
From: sunyuechi <sunyuechi@iscas.ac.cn>
Date: Fri, 1 Dec 2023 04:21:53 +0800
Subject: [PATCH 1/2] lvac/aacenc: add ff_aac_dsp_init
This is for clarity and use in testing, consistent with other parts of the code.
---
libavcodec/aacenc.c | 24 ++++++++++++++----------
libavcodec/aacenc.h | 1 +
2 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index 5e6a255a8f..443b25e25a 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -1381,16 +1381,7 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
ff_lpc_init(&s->lpc, 2*avctx->frame_size, TNS_MAX_ORDER, FF_LPC_TYPE_LEVINSON);
s->random_state = 0x1f2e3d4c;
- s->abs_pow34 = abs_pow34_v;
- s->quant_bands = quantize_bands;
-
-#if ARCH_X86
- ff_aac_dsp_init_x86(s);
-#endif
-
-#if HAVE_MIPSDSP
- ff_aac_coder_init_mips(s);
-#endif
+ ff_aac_dsp_init(s);
ff_af_queue_init(avctx, &s->afq);
@@ -1444,3 +1435,16 @@ const FFCodec ff_aac_encoder = {
AV_SAMPLE_FMT_NONE },
.p.priv_class = &aacenc_class,
};
+
+void ff_aac_dsp_init(AACEncContext *s){
+ s->abs_pow34 = abs_pow34_v;
+ s->quant_bands = quantize_bands;
+
+#if ARCH_X86
+ ff_aac_dsp_init_x86(s);
+#endif
+
+#if HAVE_MIPSDSP
+ ff_aac_coder_init_mips(s);
+#endif
+}
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h
index b030c652ae..09dd8639be 100644
--- a/libavcodec/aacenc.h
+++ b/libavcodec/aacenc.h
@@ -154,6 +154,7 @@ typedef struct AACEncContext {
} buffer;
} AACEncContext;
+void ff_aac_dsp_init(AACEncContext *s);
void ff_aac_dsp_init_x86(AACEncContext *s);
void ff_aac_coder_init_mips(AACEncContext *c);
void ff_quantize_band_cost_cache_init(struct AACEncContext *s);
--
2.43.0
[-- Attachment #3: 0002-checkasm-test-for-abs_pow34.patch --]
[-- Type: text/x-patch, Size: 5020 bytes --]
From 0ce3bcfee65eab85d899ee734ab75c4202aa03ac Mon Sep 17 00:00:00 2001
From: sunyuechi <sunyuechi@iscas.ac.cn>
Date: Tue, 28 Nov 2023 14:08:12 +0800
Subject: [PATCH 2/2] checkasm: test for abs_pow34
---
tests/checkasm/Makefile | 1 +
tests/checkasm/aacencdsp.c | 70 ++++++++++++++++++++++++++++++++++++++
tests/checkasm/checkasm.c | 3 ++
tests/checkasm/checkasm.h | 1 +
tests/fate/checkasm.mak | 3 +-
5 files changed, 77 insertions(+), 1 deletion(-)
create mode 100644 tests/checkasm/aacencdsp.c
diff --git a/tests/checkasm/Makefile b/tests/checkasm/Makefile
index 53742c93ae..05f07ca560 100644
--- a/tests/checkasm/Makefile
+++ b/tests/checkasm/Makefile
@@ -23,6 +23,7 @@ AVCODECOBJS-$(CONFIG_VIDEODSP) += videodsp.o
# decoders/encoders
AVCODECOBJS-$(CONFIG_AAC_DECODER) += aacpsdsp.o \
sbrdsp.o
+AVCODECOBJS-$(CONFIG_AAC_ENCODER) += aacencdsp.o
AVCODECOBJS-$(CONFIG_ALAC_DECODER) += alacdsp.o
AVCODECOBJS-$(CONFIG_DCA_DECODER) += synth_filter.o
AVCODECOBJS-$(CONFIG_EXR_DECODER) += exrdsp.o
diff --git a/tests/checkasm/aacencdsp.c b/tests/checkasm/aacencdsp.c
new file mode 100644
index 0000000000..684c775862
--- /dev/null
+++ b/tests/checkasm/aacencdsp.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/aacenc.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 test_abs_pow34(AACEncContext *s) {
+#define BUF_SIZE 1024
+ LOCAL_ALIGNED_32(float, in, [BUF_SIZE]);
+
+ declare_func(void, float *, const float *, int);
+
+ randomize_float(in, BUF_SIZE);
+
+ if (check_func(s->abs_pow34, "abs_pow34")) {
+ LOCAL_ALIGNED_32(float, out, [BUF_SIZE]);
+ LOCAL_ALIGNED_32(float, out2, [BUF_SIZE]);
+
+ call_ref(out, in, BUF_SIZE);
+ call_new(out2, in, BUF_SIZE);
+
+ if (memcmp(out, out2, BUF_SIZE * sizeof(float)) != 0)
+ fail();
+
+ bench_new(out, in, BUF_SIZE);
+ }
+
+ report("abs_pow34");
+}
+
+
+void checkasm_check_aacencdsp(void)
+{
+ AACEncContext s = { 0 };
+ ff_aac_dsp_init(&s);
+
+ test_abs_pow34(&s);
+}
diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c
index 0a1285eca4..d71c9c23d0 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_AAC_ENCODER
+ { "aacencdsp", checkasm_check_aacencdsp },
+ #endif
#if CONFIG_AC3DSP
{ "ac3dsp", checkasm_check_ac3dsp },
#endif
diff --git a/tests/checkasm/checkasm.h b/tests/checkasm/checkasm.h
index 11d2f7286f..2a1110caf8 100644
--- a/tests/checkasm/checkasm.h
+++ b/tests/checkasm/checkasm.h
@@ -43,6 +43,7 @@
#include "libavutil/lfg.h"
#include "libavutil/timer.h"
+void checkasm_check_aacencdsp(void);
void checkasm_check_aacpsdsp(void);
void checkasm_check_ac3dsp(void);
void checkasm_check_afir(void);
diff --git a/tests/fate/checkasm.mak b/tests/fate/checkasm.mak
index b8ffa0a77e..65bace892b 100644
--- a/tests/fate/checkasm.mak
+++ b/tests/fate/checkasm.mak
@@ -1,4 +1,5 @@
-FATE_CHECKASM = fate-checkasm-aacpsdsp \
+FATE_CHECKASM = fate-checkasm-aacencdsp \
+ fate-checkasm-aacpsdsp \
fate-checkasm-ac3dsp \
fate-checkasm-af_afir \
fate-checkasm-alacdsp \
--
2.43.0
[-- Attachment #4: Type: text/plain, Size: 251 bytes --]
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34
2023-12-04 21:46 ` flow gg
@ 2023-12-09 10:45 ` flow gg
2023-12-09 10:54 ` flow gg
2023-12-11 16:44 ` Rémi Denis-Courmont
0 siblings, 2 replies; 7+ messages in thread
From: flow gg @ 2023-12-09 10:45 UTC (permalink / raw)
To: FFmpeg development discussions and patches
There's a strange issue:
Adding tests can compile successfully on x86 and lichee4a (risc v), but it
results in an error on k230.
> collect2: fatal error: ld terminated with signal 9 [Killed]
> compilation terminated.
>
> [32833.539109]
oom-kill:constraint=CONSTRAINT_NONE,nodemask=(null),task=ld,pid=6804,uid=1000
> [32833.547321] Out of memory: Killed process 6804 (ld) total-vm:363180kB,
anon-rss:357536kB, file-rss:932kB, shmem-rss:0kB, UID:1000 pgtables:732kB
oom_score_adj:0
> [32833.653223] oom_reaper: reaped process 6804 (ld), now anon-rss:0kB,
file-rss:0kB, shmem-rss:0kB
If I remove the line 1429 with FF_CODEC_ENCODE_CB(aac_encode_frame), there
is no error on k230, but I am unsure of the reason.
flow gg <hlefthleft@gmail.com> 于2023年12月5日周二 05:46写道:
> Because there was a conflict, the patch was updated in the reply
>
> flow gg <hlefthleft@gmail.com> 于2023年12月1日周五 04:25写道:
>
>> Okay, I splited and attached
>>
>>
>>
>> Rémi Denis-Courmont <remi@remlab.net> 于2023年11月30日周四 23:31写道:
>>
>>> Le tiistaina 28. marraskuuta 2023, 18.59.38 EET flow gg a écrit :
>>> >
>>>
>>> Since nobody else commented, I shall note that you should probably split
>>> the
>>> underlying lavc changes into a separate preliminary patch.
>>>
>>> --
>>> レミ・デニ-クールモン
>>> http://www.remlab.net/
>>>
>>>
>>>
>>> _______________________________________________
>>> ffmpeg-devel mailing list
>>> ffmpeg-devel@ffmpeg.org
>>> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>>>
>>> To unsubscribe, visit link above, or email
>>> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
>>>
>>
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34
2023-12-09 10:45 ` flow gg
@ 2023-12-09 10:54 ` flow gg
2023-12-11 16:44 ` Rémi Denis-Courmont
1 sibling, 0 replies; 7+ messages in thread
From: flow gg @ 2023-12-09 10:54 UTC (permalink / raw)
To: FFmpeg development discussions and patches
To express clearly,I mean remove
libavcodec/aacenc.c:1429 FF_CODEC_ENCODE_CB(aac_encode_frame)
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34
2023-12-09 10:45 ` flow gg
2023-12-09 10:54 ` flow gg
@ 2023-12-11 16:44 ` Rémi Denis-Courmont
1 sibling, 0 replies; 7+ messages in thread
From: Rémi Denis-Courmont @ 2023-12-11 16:44 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Le lauantaina 9. joulukuuta 2023, 12.45.03 EET flow gg a écrit :
> There's a strange issue:
>
> Adding tests can compile successfully on x86 and lichee4a (risc v), but it
> results in an error on k230.
>
> > collect2: fatal error: ld terminated with signal 9 [Killed]
> > compilation terminated.
> >
> > [32833.539109]
>
> oom-kill:constraint=CONSTRAINT_NONE,nodemask=(null),task=ld,pid=6804,uid=100
> 0
> > [32833.547321] Out of memory: Killed process 6804 (ld) total-vm:363180kB,
>
> anon-rss:357536kB, file-rss:932kB, shmem-rss:0kB, UID:1000 pgtables:732kB
> oom_score_adj:0
>
> > [32833.653223] oom_reaper: reaped process 6804 (ld), now anon-rss:0kB,
>
> file-rss:0kB, shmem-rss:0kB
>
> If I remove the line 1429 with FF_CODEC_ENCODE_CB(aac_encode_frame), there
> is no error on k230, but I am unsure of the reason.
Looks like plain dumb out-of-memory situation?
Not all that surprising when the hardware has only 512 MiB of RAM.
--
レミ・デニ-クールモン
http://www.remlab.net/
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-12-11 16:44 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-28 16:59 [FFmpeg-devel] [PATCH 1/2] checkasm: test for abs_pow34 flow gg
2023-11-30 15:31 ` Rémi Denis-Courmont
2023-11-30 20:25 ` flow gg
2023-12-04 21:46 ` flow gg
2023-12-09 10:45 ` flow gg
2023-12-09 10:54 ` flow gg
2023-12-11 16:44 ` Rémi Denis-Courmont
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git