2023-11-28 14:08:12 +08:00
|
|
|
/*
|
2025-08-01 22:43:23 +02:00
|
|
|
* Copyright (c) 2023 Institute of Software Chinese Academy of Sciences (ISCAS).
|
2023-11-28 14:08:12 +08:00
|
|
|
*
|
|
|
|
|
* 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_internal.h"
|
|
|
|
|
|
2024-05-31 21:17:41 +03:00
|
|
|
#include "libavcodec/aacenc_utils.h"
|
2024-02-28 13:29:19 +01:00
|
|
|
#include "libavcodec/aacencdsp.h"
|
2024-05-31 21:17:41 +03:00
|
|
|
#include "libavcodec/aactab.h"
|
2023-11-28 14:08:12 +08:00
|
|
|
|
|
|
|
|
#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)
|
|
|
|
|
|
2024-05-31 21:17:41 +03:00
|
|
|
#define randomize_elem(tab) (tab[rnd() % FF_ARRAY_ELEMS(tab)])
|
|
|
|
|
|
2024-02-28 13:29:19 +01:00
|
|
|
static void test_abs_pow34(AACEncDSPContext *s)
|
|
|
|
|
{
|
2023-11-28 14:08:12 +08:00
|
|
|
#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);
|
|
|
|
|
|
2024-01-23 21:06:49 +01:00
|
|
|
if (!float_near_ulp_array(out, out2, 1, BUF_SIZE))
|
2023-11-28 14:08:12 +08:00
|
|
|
fail();
|
|
|
|
|
|
|
|
|
|
bench_new(out, in, BUF_SIZE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
report("abs_pow34");
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-31 21:17:41 +03:00
|
|
|
static void test_quant_bands(AACEncDSPContext *s)
|
|
|
|
|
{
|
|
|
|
|
int maxval = randomize_elem(aac_cb_maxval);
|
checkasm: aacencdsp: Actually test nonzero values in quant_bands
Previously, we read elements from ff_aac_pow34sf_tab; however
that table is initialized to zero; one needs to call
ff_aac_float_common_init() to make sure that the table is
initialized.
However, given the range of the input values, a large number of
entries in ff_aac_pow34sf_tab would give results outside of the
range for signed 32 bit integers. As the largest aac_cb_maxval
entry is 16, it seems more reasonable to produce values within
an order of mangitude of that value.
(When hitting INT_MIN, implementations may end up with different
results depending on whether the value is negated as a float or
as an int. This corner case is irrelevant in practice as this
is way outside of the expected value range here.)
Coincidentally, this fixes linking checkasm with Apple's older
linker. (In Xcode 15, Apple switched to a new linker. The one in
older toolchains seems to have a bug where it won't figure out to
load object files from a static library, if the only symbol
referenced in the object file is a "common" symbol, i.e. one for
a zero-initialized variable. This issue can also be reproduced with
newer Apple toolchains by passing -Wl,-ld_classic to the linker.)
Signed-off-by: Martin Storsjö <martin@martin.st>
2025-01-29 10:55:22 +02:00
|
|
|
float q34 = (float)rnd() / (UINT_MAX / 1024);
|
2024-05-31 21:17:41 +03:00
|
|
|
float rounding = (rnd() & 1) ? ROUND_TO_ZERO : ROUND_STANDARD;
|
|
|
|
|
LOCAL_ALIGNED_16(float, in, [BUF_SIZE]);
|
|
|
|
|
LOCAL_ALIGNED_16(float, scaled, [BUF_SIZE]);
|
|
|
|
|
|
|
|
|
|
declare_func(void, int *, const float *, const float *, int, int, int,
|
|
|
|
|
const float, const float);
|
|
|
|
|
|
|
|
|
|
randomize_float(in, BUF_SIZE);
|
|
|
|
|
randomize_float(scaled, BUF_SIZE);
|
|
|
|
|
|
|
|
|
|
for (int sign = 0; sign <= 1; sign++) {
|
|
|
|
|
if (check_func(s->quant_bands, "quant_bands_%s",
|
|
|
|
|
sign ? "signed" : "unsigned")) {
|
2024-06-01 11:26:48 -03:00
|
|
|
LOCAL_ALIGNED_32(int, out, [BUF_SIZE]);
|
|
|
|
|
LOCAL_ALIGNED_32(int, out2, [BUF_SIZE]);
|
2024-05-31 21:17:41 +03:00
|
|
|
|
|
|
|
|
call_ref(out, in, scaled, BUF_SIZE, sign, maxval, q34, rounding);
|
|
|
|
|
call_new(out2, in, scaled, BUF_SIZE, sign, maxval, q34, rounding);
|
|
|
|
|
|
|
|
|
|
if (memcmp(out, out2, BUF_SIZE * sizeof (int)))
|
|
|
|
|
fail();
|
|
|
|
|
|
|
|
|
|
bench_new(out, in, scaled, BUF_SIZE, sign, maxval, q34, rounding);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
report("quant_bands");
|
|
|
|
|
}
|
2023-11-28 14:08:12 +08:00
|
|
|
|
|
|
|
|
void checkasm_check_aacencdsp(void)
|
|
|
|
|
{
|
2024-02-28 13:29:19 +01:00
|
|
|
AACEncDSPContext s = { 0 };
|
|
|
|
|
ff_aacenc_dsp_init(&s);
|
2023-11-28 14:08:12 +08:00
|
|
|
|
|
|
|
|
test_abs_pow34(&s);
|
2024-05-31 21:17:41 +03:00
|
|
|
test_quant_bands(&s);
|
2023-11-28 14:08:12 +08:00
|
|
|
}
|