FFmpeg
Loading...
Searching...
No Matches
fixed_dsp.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 James Almer
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21#include "checkasm.h"
22#include "libavutil/common.h"
23#include "libavutil/fixed_dsp.h"
24#include "libavutil/internal.h"
25#include "libavutil/mem.h"
27
28#define BUF_SIZE 256
29
30#define randomize_buffers() \
31 do { \
32 int i; \
33 for (i = 0; i < BUF_SIZE; i++) { \
34 src0[i] = sign_extend(rnd(), 24); \
35 src1[i] = sign_extend(rnd(), 24); \
36 src2[i] = sign_extend(rnd(), 24); \
37 } \
38 } while (0)
39
40static void check_vector_fmul(const int *src0, const int *src1)
41{
43 LOCAL_ALIGNED_32(int, new, [BUF_SIZE]);
44
45 declare_func(void, int *dst, const int *src0, const int *src1, int len);
46
48 call_new(new, src0, src1, BUF_SIZE);
49 if (memcmp(ref, new, BUF_SIZE * sizeof(int)))
50 fail();
52}
53
54static void check_vector_fmul_add(const int *src0, const int *src1, const int *src2)
55{
57 LOCAL_ALIGNED_32(int, new, [BUF_SIZE]);
58
59 declare_func(void, int *dst, const int *src0, const int *src1, const int *src2, int len);
60
63 if (memcmp(ref, new, BUF_SIZE * sizeof(int)))
64 fail();
66}
67
68static void check_vector_fmul_window(const int32_t *src0, const int32_t *src1, const int32_t *win)
69{
72
73 declare_func(void, int32_t *dst, const int32_t *src0, const int32_t *src1, const int32_t *win, int len);
74
76 call_new(new, src0, src1, win, BUF_SIZE / 2);
77 if (memcmp(ref, new, BUF_SIZE * sizeof(int32_t)))
78 fail();
79 bench_new(new, src0, src1, win, BUF_SIZE / 2);
80}
81
83{
84 LOCAL_ALIGNED_16(int16_t, ref, [BUF_SIZE]);
85 LOCAL_ALIGNED_16(int16_t, new, [BUF_SIZE]);
86
87 declare_func(void, int16_t *dst, const int32_t *src0, const int32_t *src1, const int32_t *win, int len, uint8_t bits);
88
89 call_ref(ref, src0, src1, win, BUF_SIZE / 2, 2);
90 call_new(new, src0, src1, win, BUF_SIZE / 2, 2);
91 if (memcmp(ref, new, BUF_SIZE * sizeof(int16_t)))
92 fail();
93 bench_new(new, src0, src1, win, BUF_SIZE / 2, 2);
94}
95
96static void check_butterflies(const int *src0, const int *src1)
97{
98 LOCAL_ALIGNED_16(int, ref0, [BUF_SIZE]);
99 LOCAL_ALIGNED_16(int, ref1, [BUF_SIZE]);
100 LOCAL_ALIGNED_16(int, new0, [BUF_SIZE]);
101 LOCAL_ALIGNED_16(int, new1, [BUF_SIZE]);
102
103 declare_func(void, int *restrict src0, int *restrict src1, int len);
104
105 memcpy(ref0, src0, BUF_SIZE * sizeof(*src0));
106 memcpy(ref1, src1, BUF_SIZE * sizeof(*src1));
107 memcpy(new0, src0, BUF_SIZE * sizeof(*src0));
108 memcpy(new1, src1, BUF_SIZE * sizeof(*src1));
109
110 call_ref(ref0, ref1, BUF_SIZE);
111 call_new(new0, new1, BUF_SIZE);
112 if (memcmp(ref0, new0, BUF_SIZE * sizeof(*ref0)) ||
113 memcmp(ref1, new1, BUF_SIZE * sizeof(*ref1)))
114 fail();
115 memcpy(new0, src0, BUF_SIZE * sizeof(*src0));
116 memcpy(new1, src1, BUF_SIZE * sizeof(*src1));
117 bench_new(new0, new1, BUF_SIZE);
118}
119
120static void check_scalarproduct_fixed(const int *src0, const int *src1)
121{
122 int ref, new;
123
124 declare_func(int, const int *src0, const int *src1, int len);
125
127 new = call_new(src0, src1, BUF_SIZE);
128 if (ref != new)
129 fail();
131}
132
134{
139
141 if (check_func(fdsp->vector_fmul, "vector_fmul_fixed"))
143 if (check_func(fdsp->vector_fmul_add, "vector_fmul_add_fixed"))
145 if (check_func(fdsp->vector_fmul_reverse, "vector_fmul_reverse_fixed"))
147 if (check_func(fdsp->vector_fmul_window, "vector_fmul_window_fixed"))
149 if (check_func(fdsp->vector_fmul_window_scaled, "vector_fmul_window_scaled_fixed"))
151 report("vector_fmul");
152 if (check_func(fdsp->butterflies_fixed, "butterflies_fixed"))
154 report("butterflies_fixed");
155 if (check_func(fdsp->scalarproduct_fixed, "scalarproduct_fixed"))
157 report("scalarproduct_fixed");
158
159 av_freep(&fdsp);
160}
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static float win(SuperEqualizerContext *s, float n, int N)
int32_t
common internal and external API header
static const uint8_t bits[8]
Definition fastaudio.c:100
#define declare_func
Definition test.h:489
#define fail
Definition test.h:479
#define bench_new
Definition test.h:487
#define check_func
Definition test.h:481
#define call_new
Definition test.h:486
#define call_ref
Definition test.h:485
#define report
Definition test.h:480
const pixel * src2
AVFixedDSPContext * avpriv_alloc_fixed_dsp(int bit_exact)
Allocate and initialize a fixed DSP context.
Definition fixed_dsp.c:151
common internal API header
Memory handling functions.
#define LOCAL_ALIGNED_32(t, v,...)
#define LOCAL_ALIGNED_16(t, v,...)
#define BUF_SIZE
Definition setpts.c:159
void(* vector_fmul_window)(int32_t *dst, const int32_t *src0, const int32_t *src1, const int32_t *win, int len)
Overlap/add with window function.
Definition fixed_dsp.h:97
void(* vector_fmul_add)(int *dst, const int *src0, const int *src1, const int *src2, int len)
Calculate the entry wise product of two vectors of integers, add a third vector of integers and store...
Definition fixed_dsp.h:131
void(* butterflies_fixed)(int *restrict v1, int *restrict v2, int len)
Calculate the sum and difference of two vectors of integers.
Definition fixed_dsp.h:152
void(* vector_fmul_reverse)(int *dst, const int *src0, const int *src1, int len)
Definition fixed_dsp.h:115
void(* vector_fmul)(int *dst, const int *src0, const int *src1, int len)
Fixed-point multiplication that calculates the entry wise product of two vectors of integers and stor...
Definition fixed_dsp.h:112
int(* scalarproduct_fixed)(const int *v1, const int *v2, int len)
Calculate the scalar product of two vectors of integers.
Definition fixed_dsp.h:143
void(* vector_fmul_window_scaled)(int16_t *dst, const int32_t *src0, const int32_t *src1, const int32_t *win, int len, uint8_t bits)
Overlap/add with window function.
Definition fixed_dsp.h:79
#define av_freep(p)
#define randomize_buffers()
Definition fixed_dsp.c:30
static void check_vector_fmul_window(const int32_t *src0, const int32_t *src1, const int32_t *win)
Definition fixed_dsp.c:68
static void check_scalarproduct_fixed(const int *src0, const int *src1)
Definition fixed_dsp.c:120
static void check_vector_fmul_window_scaled(const int32_t *src0, const int32_t *src1, const int32_t *win)
Definition fixed_dsp.c:82
void checkasm_check_fixed_dsp(void)
Definition fixed_dsp.c:133
static void check_butterflies(const int *src0, const int *src1)
Definition fixed_dsp.c:96
static void check_vector_fmul(const int *src0, const int *src1)
Definition fixed_dsp.c:40
static void check_vector_fmul_add(const int *src0, const int *src1, const int *src2)
Definition fixed_dsp.c:54
#define src1
Definition h264pred.c:141
#define src0
Definition h264pred.c:140
static int ref[MAX_W *MAX_W]
int len