aboutsummaryrefslogtreecommitdiffstats
path: root/tests/checkasm/ac3dsp.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2025-08-08 13:55:02 +0300
committerKacper Michajłow <kasper93@gmail.com>2025-08-10 02:27:44 +0000
commit0400e05a1a2835bf8a6589a0d7d5eb2625d618a9 (patch)
tree28000d1013ed8064fbac728cdf47984f54d00462 /tests/checkasm/ac3dsp.c
parenta72cc49e8a08dd61cbcf61cac664601c70bc9517 (diff)
downloadffmpeg-0400e05a1a2835bf8a6589a0d7d5eb2625d618a9.tar.gz
checkasm: ac3dsp: Fix function name typos for sum_square_butterfly
Diffstat (limited to 'tests/checkasm/ac3dsp.c')
-rw-r--r--tests/checkasm/ac3dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/ac3dsp.c b/tests/checkasm/ac3dsp.c
index b5db3a4381..a8e96d793f 100644
--- a/tests/checkasm/ac3dsp.c
+++ b/tests/checkasm/ac3dsp.c
@@ -152,7 +152,7 @@ static void check_ac3_sum_square_butterfly_int32(AC3DSPContext *c) {
randomize_i24(rt, ELEMS);
if (check_func(c->sum_square_butterfly_int32,
- "ac3_sum_square_bufferfly_int32")) {
+ "ac3_sum_square_butterfly_int32")) {
call_ref(v1, lt, rt, ELEMS);
call_new(v2, lt, rt, ELEMS);
@@ -177,7 +177,7 @@ static void check_ac3_sum_square_butterfly_float(AC3DSPContext *c) {
randomize_float(rt, ELEMS);
if (check_func(c->sum_square_butterfly_float,
- "ac3_sum_square_bufferfly_float")) {
+ "ac3_sum_square_butterfly_float")) {
call_ref(v1, lt, rt, ELEMS);
call_new(v2, lt, rt, ELEMS);