1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-04-24 04:44:54 +02:00

tests/checkasm: Add CRC test

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-12-07 10:50:39 +01:00
parent cf7e2b6773
commit 0629ebb5ff
5 changed files with 116 additions and 0 deletions
+1
View File
@@ -91,6 +91,7 @@ CHECKASMOBJS-$(CONFIG_SWSCALE) += $(SWSCALEOBJS)
# libavutil tests
AVUTILOBJS += aes.o
AVUTILOBJS += av_tx.o
AVUTILOBJS += crc.o
AVUTILOBJS += fixed_dsp.o
AVUTILOBJS += float_dsp.o
AVUTILOBJS += lls.o
+1
View File
@@ -344,6 +344,7 @@ static const struct {
#endif
#if CONFIG_AVUTIL
{ "aes", checkasm_check_aes },
{ "crc", checkasm_check_crc },
{ "fixed_dsp", checkasm_check_fixed_dsp },
{ "float_dsp", checkasm_check_float_dsp },
{ "lls", checkasm_check_lls },
+1
View File
@@ -93,6 +93,7 @@ void checkasm_check_bswapdsp(void);
void checkasm_check_cavsdsp(void);
void checkasm_check_colordetect(void);
void checkasm_check_colorspace(void);
void checkasm_check_crc(void);
void checkasm_check_dcadsp(void);
void checkasm_check_diracdsp(void);
void checkasm_check_exrdsp(void);
+112
View File
@@ -0,0 +1,112 @@
/*
* 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 <assert.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "checkasm.h"
#include "libavutil/attributes.h"
// Undefine av_pure so that calls to av_crc are not optimized away.
#undef av_pure
#define av_pure
#include "libavutil/avassert.h"
#include "libavutil/crc.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/macros.h"
#include "libavutil/mem_internal.h"
static void check_crc(const AVCRC *table_new, const char *name, unsigned idx)
{
declare_func(uint32_t, const AVCRC *ctx, uint32_t crc,
const uint8_t *buffer, size_t length);
const AVCRC *table_ref = check_key((AVCRC*)table_new, "crc_%s", name);
if (!table_ref)
return;
DECLARE_ALIGNED(4, uint8_t, buf)[8192];
size_t offset = rnd() & 31;
static size_t sizes[AV_CRC_MAX + 1];
static unsigned sizes_initialized = 0;
uint32_t prev_crc = rnd();
if (!(sizes_initialized & (1 << idx))) {
sizes_initialized |= 1 << idx;
sizes[idx] = rnd() % (sizeof(buf) - 1 - offset);
}
size_t size = sizes[idx];
for (size_t j = 0; j < sizeof(buf); j += 4)
AV_WN32A(buf + j, rnd());
uint32_t crc_ref = checkasm_call (av_crc, table_ref, prev_crc, buf + offset, size);
uint32_t crc_new = checkasm_call_checked(av_crc, table_new, prev_crc, buf + offset, size);
if (crc_ref != crc_new)
fail();
bench(av_crc, table_new, prev_crc, buf + offset, size);
}
void checkasm_check_crc(void)
{
static const char *const tests[] = {
#define TEST(CRC) [AV_CRC_ ## CRC] = #CRC
TEST(8_ATM), TEST(8_EBU),
TEST(16_ANSI), TEST(16_ANSI_LE), TEST(16_CCITT),
TEST(24_IEEE), TEST(32_IEEE_LE), TEST(32_IEEE),
};
static_assert(FF_ARRAY_ELEMS(tests) == AV_CRC_MAX, "test needs to be added");
for (unsigned i = 0; i < AV_CRC_MAX; ++i)
check_crc(av_crc_get_table(i), tests[i], i);
static struct CustomTest {
struct CustomTest *prev;
AVCRC ctx[1024];
} *ctx = NULL;
struct CustomTest *new = malloc(sizeof(*new));
static int le, bits;
static uint32_t poly;
if (!new)
fail();
memset(new, 0, sizeof(*new));
if (!ctx) {
le = rnd() & 1;
bits = 8 + rnd() % 25; // av_crc_init() accepts between 8 and 32 bits
poly = rnd() >> (32 - bits);
}
av_assert0(av_crc_init(new->ctx, le, bits, poly, sizeof(new->ctx)) >= 0);
if (ctx && !memcmp(ctx->ctx, new->ctx, sizeof(new->ctx))) {
free(new);
} else {
new->prev = ctx;
ctx = new;
}
check_crc(ctx->ctx, "custom_polynomial", AV_CRC_MAX);
report("crc");
}
+1
View File
@@ -10,6 +10,7 @@ FATE_CHECKASM = fate-checkasm-aacencdsp \
fate-checkasm-blockdsp \
fate-checkasm-bswapdsp \
fate-checkasm-cavsdsp \
fate-checkasm-crc \
fate-checkasm-dcadsp \
fate-checkasm-diracdsp \
fate-checkasm-exrdsp \