63 lines
3.3 KiB
C
63 lines
3.3 KiB
C
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
│ │
|
|
│ This program 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; version 2 of the License. │
|
|
│ │
|
|
│ This program 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 this program; if not, write to the Free Software │
|
|
│ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA │
|
|
│ 02110-1301 USA │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
#include "dsp/core/core.h"
|
|
#include "dsp/core/q.h"
|
|
#include "libc/str/str.h"
|
|
#include "libc/testlib/ezbench.h"
|
|
#include "libc/testlib/testlib.h"
|
|
|
|
long I[8];
|
|
|
|
TEST(GetIntegerCoefficients8, testBt601Vectors) {
|
|
const struct {
|
|
int m, L, H;
|
|
double r[8];
|
|
long n[8];
|
|
} V[] = {
|
|
{8, 16, 235, {.299, .587, .114}, {77, 150, 29}},
|
|
{9, 16, 235, {.299, .587, .114}, {153, 301, 58}},
|
|
{10, 16, 235, {.299, .587, .114}, {306, 601, 117}},
|
|
{11,
|
|
16,
|
|
235,
|
|
{.299, .587, .114, 1, 1, 1},
|
|
{612, 1202, 234, 2048, 2048, 2048}},
|
|
{12, 16, 235, {.299, .587, .114}, {1225, 2404, 467}},
|
|
{13, 16, 235, {.299, .587, .114}, {2449, 4809, 934}},
|
|
{14, 16, 235, {.299, .587, .114}, {4899, 9617, 1868}},
|
|
{15, 16, 235, {.299, .587, .114}, {9798, 19235, 3735}},
|
|
{16, 16, 235, {.299, .587, .114}, {19595, 38470, 7471}},
|
|
};
|
|
long i, got[8];
|
|
for (i = 0; i < ARRAYLEN(V); ++i) {
|
|
GetIntegerCoefficients8(got, V[i].r, V[i].m, V[i].L, V[i].H);
|
|
EXPECT_EQ(0, memcmp(V[i].n, got, sizeof(got)),
|
|
"got={%ld,%ld,%ld,%ld,%ld,%ld}, want={%ld,%ld,%ld,%ld,%ld,%ld}",
|
|
got[0], got[1], got[2], got[3], got[4], got[5], V[i].n[0],
|
|
V[i].n[1], V[i].n[2], V[i].n[3], V[i].n[4], V[i].n[5]);
|
|
}
|
|
}
|
|
|
|
BENCH(GetIntegerCoefficients8, bench) {
|
|
double C[8] = {.299, .587, .114, .299, .587, .114, .114, .114};
|
|
EZBENCH2("GetIntegerCoefficients8", donothing,
|
|
GetIntegerCoefficients8(I, C, 11, 16, 232));
|
|
}
|