FFmpeg
Loading...
Searching...
No Matches
cavsdsp.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 <assert.h>
20#include <stddef.h>
21#include <string.h>
22
23#include "checkasm.h"
25#include "libavutil/macros.h"
27#include "libavcodec/cavsdsp.h"
28
29
30enum {
31// DECLARE_ALIGNED can't handle enum constants.
32#define MAX_BLOCK_SIZE 16
34 /// BUF_SIZE is bigger than necessary in order to test strides > block width.
36 /**
37 * The qpel interpolation code accesses two lines above and three lines
38 * below the actual src block; it also accesses two pixels to the left
39 * and three to the right.
40 * The input is not subject to alignment requirements; making the input buffer
41 * bigger (by MAX_BLOCK_SIZE - 1) allows us to use a random misalignment.
42 */
44};
45
46#define randomize_buffers(buf0, buf1) \
47 do { \
48 static_assert(sizeof(buf0) == sizeof(buf1), "Incompatible buffers"); \
49 static_assert(!(sizeof(buf0) % 4), "Tail handling needed"); \
50 static_assert(sizeof(buf0[0]) == 1 && sizeof(buf1[0]) == 1, \
51 "Pointer arithmetic needs to be adapted"); \
52 for (size_t k = 0; k < sizeof(buf0); k += 4) { \
53 uint32_t r = rnd(); \
54 AV_WN32A(buf0 + k, r); \
55 AV_WN32A(buf1 + k, r); \
56 } \
57 } while (0)
58
59
60static void check_cavs_qpeldsp(void)
61{
64 DECLARE_ALIGNED(MAX_BLOCK_SIZE, uint8_t, dstbuf0)[BUF_SIZE];
65 DECLARE_ALIGNED(MAX_BLOCK_SIZE, uint8_t, dstbuf1)[BUF_SIZE];
66 CAVSDSPContext cavsdsp;
67 static const struct {
68 const char *name;
69 size_t offset;
70 } tests[] = {
71#define TEST(NAME) { .name = #NAME, .offset = offsetof(CAVSDSPContext, NAME) }
72 TEST(put_cavs_qpel_pixels_tab),
73 TEST(avg_cavs_qpel_pixels_tab),
74 };
75 declare_func(void, uint8_t *dst, const uint8_t *src, ptrdiff_t stride);
76
77 ff_cavsdsp_init(&cavsdsp);
78
79 for (size_t i = 0; i < FF_ARRAY_ELEMS(tests); ++i) {
80 qpel_mc_func (*func_tab)[16] = (qpel_mc_func (*)[16])((char*)&cavsdsp + tests[i].offset);
81 for (unsigned j = 0; j < 2; ++j) {
82 const unsigned blocksize = MAX_BLOCK_SIZE >> j;
83
84 for (unsigned dxy = 0; dxy < 16; ++dxy) {
85 if (check_func(func_tab[j][dxy], "%s[%u][%u]", tests[i].name, j, dxy)) {
86 // Don't always use output that is 16-aligned.
87 size_t dst_offset = (rnd() % (MAX_BLOCK_SIZE / blocksize)) * blocksize;
88 ptrdiff_t stride = (rnd() % (MAX_STRIDE / blocksize) + 1) * blocksize;
89 size_t src_offset = 2 + 2 * stride + rnd() % MAX_BLOCK_SIZE;
90 const uint8_t *src0 = srcbuf0 + src_offset, *src1 = srcbuf1 + src_offset;
91 uint8_t *dst0 = dstbuf0 + dst_offset, *dst1 = dstbuf1 + dst_offset;
92
93 if (rnd() & 1) {
94 // Flip stride.
95 dst1 += (blocksize - 1) * stride;
96 dst0 += (blocksize - 1) * stride;
97 // We need two lines above src and three lines below the block,
98 // hence blocksize * stride.
99 src0 += blocksize * stride;
100 src1 += blocksize * stride;
101 stride = -stride;
102 }
103
104 randomize_buffers(srcbuf0, srcbuf1);
105 randomize_buffers(dstbuf0, dstbuf1);
106 call_ref(dst0, src0, stride);
107 call_new(dst1, src1, stride);
108 if (memcmp(srcbuf0, srcbuf1, sizeof(srcbuf0)) || memcmp(dstbuf0, dstbuf1, sizeof(dstbuf0)))
109 fail();
110 bench_new(dst0, src0, stride);
111 }
112 }
113 }
114 }
115}
116
118{
120 report("qpeldsp");
121}
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define rnd
Definition checkasm.h:136
static const struct @213162273235257122266207155164174051374107224106 func_tab[]
const TestCase tests[]
Definition fifo_muxer.c:363
#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
#define MAX_BLOCK_SIZE
Definition imgutils.c:580
unsigned offset
Definition libaomenc.c:763
av_cold void ff_cavsdsp_init(CAVSDSPContext *c)
Definition cavsdsp.c:550
Utility Preprocessor macros.
#define DECLARE_ALIGNED(n, t, v)
Declare a variable that is aligned in memory.
void(* qpel_mc_func)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
Definition qpeldsp.h:65
const char * name
Definition qsvenc.c:142
#define BUF_SIZE
Definition setpts.c:159
#define FF_ARRAY_ELEMS(a)
#define stride
#define TEST(NAME)
void checkasm_check_cavsdsp(void)
Definition cavsdsp.c:117
#define randomize_buffers(buf0, buf1)
Definition cavsdsp.c:46
static void check_cavs_qpeldsp(void)
Definition cavsdsp.c:60
#define src1
Definition h264pred.c:141
#define src0
Definition h264pred.c:140
#define INPUT_BUF_SIZE
Definition hpeldsp.c:38
#define MAX_STRIDE
Definition hpeldsp.c:31
#define src
Definition vp8dsp.c:248