FFmpeg
Loading...
Searching...
No Matches
av_tx.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19#include "libavutil/mem.h"
21#include "libavutil/tx.h"
22#include "libavutil/error.h"
23
24#include "checkasm.h"
25
26#include <stdlib.h>
27
28#define EPS 0.0005
29
30#define SCALE_NOOP(x) (x)
31#define SCALE_INT20(x) (av_clip64(lrintf((x) * 2147483648.0), INT32_MIN, INT32_MAX) >> 12)
32
33#define randomize_complex(BUF, LEN, TYPE, SCALE) \
34 do { \
35 TYPE *buf = (TYPE *)BUF; \
36 for (int i = 0; i < LEN; i++) { \
37 double fre = (double)rnd() / UINT_MAX; \
38 double fim = (double)rnd() / UINT_MAX; \
39 buf[i] = (TYPE){ SCALE(fre), SCALE(fim) }; \
40 } \
41 } while (0)
42
43static const int check_lens[] = {
44 2, 4, 8, 16, 32, 64, 120, 960, 1024, 1920, 16384,
45};
46
47static AVTXContext *tx_refs[AV_TX_NB][2 /* Direction */][FF_ARRAY_ELEMS(check_lens)] = { 0 };
48
50{
51 for (int i = 0; i < FF_ARRAY_ELEMS(tx_refs); i++)
52 for (int j = 0; j < FF_ARRAY_ELEMS(*tx_refs); j++)
53 for (int k = 0; k < FF_ARRAY_ELEMS(**tx_refs); k++)
54 av_tx_uninit(&tx_refs[i][j][k]);
55}
56
57#define CHECK_TEMPLATE(PREFIX, TYPE, DIR, DATA_TYPE, SCALE_TYPE, LENGTHS, CHECK_EXPRESSION) \
58 do { \
59 int err; \
60 AVTXContext *tx; \
61 av_tx_fn fn; \
62 int num_checks = 0; \
63 int last_check = 0; \
64 \
65 for (int i = 0; i < FF_ARRAY_ELEMS(LENGTHS); i++) { \
66 int len = LENGTHS[i]; \
67 const SCALE_TYPE scale = 1.0 / len; \
68 \
69 if ((err = av_tx_init(&tx, &fn, TYPE, DIR, len, &scale, 0x0)) < 0) { \
70 fprintf(stderr, "av_tx: %s\n", av_err2str(err)); \
71 return; \
72 } \
73 \
74 if (check_func(fn, PREFIX "_%i", len)) { \
75 AVTXContext *tx_ref = tx_refs[TYPE][DIR][i]; \
76 if (!tx_ref) \
77 tx_ref = tx; \
78 num_checks++; \
79 last_check = len; \
80 call_ref(tx_ref, out_ref, in, sizeof(DATA_TYPE)); \
81 call_new(tx, out_new, in, sizeof(DATA_TYPE)); \
82 if (CHECK_EXPRESSION) { \
83 fail(); \
84 av_tx_uninit(&tx); \
85 break; \
86 } \
87 bench_new(tx, out_new, in, sizeof(DATA_TYPE)); \
88 av_tx_uninit(&tx_refs[TYPE][DIR][i]); \
89 tx_refs[TYPE][DIR][i] = tx; \
90 } else { \
91 av_tx_uninit(&tx); \
92 } \
93 } \
94 \
95 if (num_checks == 1) \
96 report(PREFIX "_%i", last_check); \
97 else if (num_checks) \
98 report(PREFIX); \
99 } while (0)
100
102{
103 declare_func(void, AVTXContext *tx, void *out, void *in, ptrdiff_t stride);
104
105 void *in = av_malloc(16384*2*8);
106 void *out_ref = av_malloc(16384*2*8);
107 void *out_new = av_malloc(16384*2*8);
108
111 !float_near_abs_eps_array(out_ref, out_new, EPS, len*2));
112
113 CHECK_TEMPLATE("float_imdct", AV_TX_FLOAT_MDCT, 1, float, float, check_lens,
114 !float_near_abs_eps_array(out_ref, out_new, EPS, len));
115
118 !double_near_abs_eps_array(out_ref, out_new, EPS, len*2));
119
120 av_free(in);
121 av_free(out_ref);
122 av_free(out_new);
123}
#define EPS
Definition aacpsdsp.c:39
static FILE * out
#define CHECK_TEMPLATE(PREFIX, TYPE, DIR, DATA_TYPE, SCALE_TYPE, LENGTHS, CHECK_EXPRESSION)
Definition av_tx.c:57
static AVTXContext * tx_refs[AV_TX_NB][2][FF_ARRAY_ELEMS(check_lens)]
Definition av_tx.c:47
void checkasm_uninit_tx(void)
Definition av_tx.c:49
void checkasm_check_av_tx(void)
Definition av_tx.c:101
#define randomize_complex(BUF, LEN, TYPE, SCALE)
Definition av_tx.c:33
#define SCALE_NOOP(x)
Definition av_tx.c:30
static const int check_lens[]
Definition av_tx.c:43
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
error code definitions
#define declare_func
Definition test.h:489
#define double_near_abs_eps_array
Definition utils.h:455
#define float_near_abs_eps_array
Definition utils.h:452
Memory handling functions.
#define av_malloc(s)
Definition ops_static.c:52
#define FF_ARRAY_ELEMS(a)
#define stride
#define av_free(p)
av_cold void av_tx_uninit(AVTXContext **ctx)
Frees a context and sets *ctx to NULL, does nothing when *ctx == NULL.
Definition tx.c:295
@ AV_TX_NB
Definition tx.h:133
@ AV_TX_FLOAT_FFT
Standard complex to complex FFT with sample data type of AVComplexFloat, AVComplexDouble or AVComplex...
Definition tx.h:47
@ AV_TX_FLOAT_MDCT
Standard MDCT with a sample data type of float, double or int32_t, respectively.
Definition tx.h:68
@ AV_TX_DOUBLE_FFT
Definition tx.h:48
int len