summaryrefslogtreecommitdiff
path: root/tests/checkasm/vf_colorspace.c
blob: 31efa671f9ac896a457067202d5d8d15fc9f5862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
/*
 * Copyright (c) 2016 Ronald S. Bultje <rsbultje@gmail.com>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser 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 <string.h>
#include "checkasm.h"
#include "libavfilter/colorspacedsp.h"
#include "libavutil/common.h"
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem_internal.h"

#define W 64
#define H 64

#define randomize_buffers()                     \
    do {                                        \
        unsigned mask = bpp_mask[idepth];       \
        int n, m;                               \
        int bpp = 1 + (!!idepth);               \
        int buf_size = W * H * bpp;             \
        for (m = 0; m < 3; m++) {               \
            int ss = m ? ss_w + ss_h : 0;       \
            int plane_sz = buf_size >> ss;      \
            for (n = 0; n < plane_sz; n += 4) { \
                unsigned r = rnd() & mask;      \
                AV_WN32A(&src[m][n], r);        \
            }                                   \
        }                                       \
    } while (0)

static const char *format_string[] = {
    "444", "422", "420"
};

static const unsigned bpp_mask[] = { 0xffffffff, 0x03ff03ff, 0x0fff0fff };

static void check_yuv2yuv(void)
{
    declare_func(void, uint8_t *dst[3], ptrdiff_t dst_stride[3],
                 uint8_t *src[3], ptrdiff_t src_stride[3],
                 int w, int h, const int16_t coeff[3][3][8],
                 const int16_t off[2][8]);
    ColorSpaceDSPContext dsp;
    int idepth, odepth, fmt, n;
    LOCAL_ALIGNED_32(uint8_t, src_y, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, src_u, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, src_v, [W * H * 2]);
    uint8_t *src[3] = { src_y, src_u, src_v };
    LOCAL_ALIGNED_32(uint8_t, dst0_y, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst0_u, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst0_v, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst1_y, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst1_u, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst1_v, [W * H * 2]);
    uint8_t *dst0[3] = { dst0_y, dst0_u, dst0_v }, *dst1[3] = { dst1_y, dst1_u, dst1_v };
    LOCAL_ALIGNED_32(int16_t, offset_buf, [16]);
    LOCAL_ALIGNED_32(int16_t, coeff_buf, [3 * 3 * 8]);
    int16_t (*offset)[8] = (int16_t(*)[8]) offset_buf;
    int16_t (*coeff)[3][8] = (int16_t(*)[3][8]) coeff_buf;

    ff_colorspacedsp_init(&dsp);
    for (n = 0; n < 8; n++) {
        offset[0][n] = offset[1][n] = 16;

        coeff[0][0][n] = (1 << 14) + (1 << 7) + 1;
        coeff[0][1][n] = (1 << 7) - 1;
        coeff[0][2][n] = -(1 << 8);
        coeff[1][0][n] = coeff[2][0][n] = 0;
        coeff[1][1][n] = (1 << 14) + (1 << 7);
        coeff[1][2][n] = -(1 << 7);
        coeff[2][2][n] = (1 << 14) - (1 << 6);
        coeff[2][1][n] = 1 << 6;
    }
    for (idepth = 0; idepth < 3; idepth++) {
        for (odepth = 0; odepth < 3; odepth++) {
            for (fmt = 0; fmt < 3; fmt++) {
                if (check_func(dsp.yuv2yuv[idepth][odepth][fmt],
                               "ff_colorspacedsp_yuv2yuv_%sp%dto%d",
                               format_string[fmt],
                               idepth * 2 + 8, odepth * 2 + 8)) {
                    int ss_w = !!fmt, ss_h = fmt == 2;
                    int y_src_stride = W << !!idepth, y_dst_stride = W << !!odepth;
                    int uv_src_stride = y_src_stride >> ss_w, uv_dst_stride = y_dst_stride >> ss_w;

                    randomize_buffers();
                    call_ref(dst0, (ptrdiff_t[3]) { y_dst_stride, uv_dst_stride, uv_dst_stride },
                             src, (ptrdiff_t[3]) { y_src_stride, uv_src_stride, uv_src_stride },
                             W, H, coeff, offset);
                    call_new(dst1, (ptrdiff_t[3]) { y_dst_stride, uv_dst_stride, uv_dst_stride },
                             src, (ptrdiff_t[3]) { y_src_stride, uv_src_stride, uv_src_stride },
                             W, H, coeff, offset);
                    if (memcmp(dst0[0], dst1[0], y_dst_stride * H) ||
                        memcmp(dst0[1], dst1[1], uv_dst_stride * H >> ss_h) ||
                        memcmp(dst0[2], dst1[2], uv_dst_stride * H >> ss_h)) {
                        fail();
                    }
                }
            }
        }
    }

    report("yuv2yuv");
}

static void check_yuv2rgb(void)
{
    declare_func(void, int16_t *dst[3], ptrdiff_t dst_stride,
                 uint8_t *src[3], ptrdiff_t src_stride[3],
                 int w, int h, const int16_t coeff[3][3][8],
                 const int16_t off[8]);
    ColorSpaceDSPContext dsp;
    int idepth, fmt, n;
    LOCAL_ALIGNED_32(uint8_t, src_y, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, src_u, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, src_v, [W * H * 2]);
    uint8_t *src[3] = { src_y, src_u, src_v };
    LOCAL_ALIGNED_32(int16_t, dst0_y, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst0_u, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst0_v, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst1_y, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst1_u, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst1_v, [W * H]);
    int16_t *dst0[3] = { dst0_y, dst0_u, dst0_v }, *dst1[3] = { dst1_y, dst1_u, dst1_v };
    LOCAL_ALIGNED_32(int16_t, offset, [8]);
    LOCAL_ALIGNED_32(int16_t, coeff_buf, [3 * 3 * 8]);
    int16_t (*coeff)[3][8] = (int16_t(*)[3][8]) coeff_buf;

    ff_colorspacedsp_init(&dsp);
    for (n = 0; n < 8; n++) {
        offset[n] = 16;

        coeff[0][0][n] = coeff[1][0][n] = coeff[2][0][n] = (1 << 14) | 1;
        coeff[0][1][n] = coeff[2][2][n] = 0;
        coeff[0][2][n] = 1 << 13;
        coeff[1][1][n] = -(1 << 12);
        coeff[1][2][n] = 1 << 12;
        coeff[2][1][n] = 1 << 11;
    }
    for (idepth = 0; idepth < 3; idepth++) {
        for (fmt = 0; fmt < 3; fmt++) {
            if (check_func(dsp.yuv2rgb[idepth][fmt],
                           "ff_colorspacedsp_yuv2rgb_%sp%d",
                           format_string[fmt], idepth * 2 + 8)) {
                int ss_w = !!fmt, ss_h = fmt == 2;
                int y_src_stride = W << !!idepth;
                int uv_src_stride = y_src_stride >> ss_w;

                randomize_buffers();
                call_ref(dst0, W, src,
                         (ptrdiff_t[3]) { y_src_stride, uv_src_stride, uv_src_stride },
                         W, H, coeff, offset);
                call_new(dst1, W, src,
                         (ptrdiff_t[3]) { y_src_stride, uv_src_stride, uv_src_stride },
                         W, H, coeff, offset);
                if (memcmp(dst0[0], dst1[0], W * H * sizeof(int16_t)) ||
                    memcmp(dst0[1], dst1[1], W * H * sizeof(int16_t)) ||
                    memcmp(dst0[2], dst1[2], W * H * sizeof(int16_t))) {
                    fail();
                }
            }
        }
    }

    report("yuv2rgb");
}

#undef randomize_buffers
#define randomize_buffers()                     \
    do {                                        \
        int y, x, p;                            \
        for (p = 0; p < 3; p++) {               \
            for (y = 0; y < H; y++) {           \
                for (x = 0; x < W; x++) {       \
                    int r = rnd() & 0x7fff;     \
                    r -= (32768 - 28672) >> 1;  \
                    src[p][y * W + x] = r;      \
                }                               \
            }                                   \
        }                                       \
    } while (0)

static void check_rgb2yuv(void)
{
    declare_func(void, uint8_t *dst[3], ptrdiff_t dst_stride[3],
                 int16_t *src[3], ptrdiff_t src_stride,
                 int w, int h, const int16_t coeff[3][3][8],
                 const int16_t off[8]);
    ColorSpaceDSPContext dsp;
    int odepth, fmt, n;
    LOCAL_ALIGNED_32(int16_t, src_y, [W * H * 2]);
    LOCAL_ALIGNED_32(int16_t, src_u, [W * H * 2]);
    LOCAL_ALIGNED_32(int16_t, src_v, [W * H * 2]);
    int16_t *src[3] = { src_y, src_u, src_v };
    LOCAL_ALIGNED_32(uint8_t, dst0_y, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst0_u, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst0_v, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst1_y, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst1_u, [W * H * 2]);
    LOCAL_ALIGNED_32(uint8_t, dst1_v, [W * H * 2]);
    uint8_t *dst0[3] = { dst0_y, dst0_u, dst0_v }, *dst1[3] = { dst1_y, dst1_u, dst1_v };
    LOCAL_ALIGNED_32(int16_t, offset, [8]);
    LOCAL_ALIGNED_32(int16_t, coeff_buf, [3 * 3 * 8]);
    int16_t (*coeff)[3][8] = (int16_t(*)[3][8]) coeff_buf;

    ff_colorspacedsp_init(&dsp);
    for (n = 0; n < 8; n++) {
        offset[n] = 16;

        // these somewhat resemble bt601/smpte170m coefficients
        coeff[0][0][n] = lrint(0.3 * (1 << 14));
        coeff[0][1][n] = lrint(0.6 * (1 << 14));
        coeff[0][2][n] = lrint(0.1 * (1 << 14));
        coeff[1][0][n] = lrint(-0.15 * (1 << 14));
        coeff[1][1][n] = lrint(-0.35 * (1 << 14));
        coeff[1][2][n] = lrint(0.5 * (1 << 14));
        coeff[2][0][n] = lrint(0.5 * (1 << 14));
        coeff[2][1][n] = lrint(-0.42 * (1 << 14));
        coeff[2][2][n] = lrint(-0.08 * (1 << 14));
    }
    for (odepth = 0; odepth < 3; odepth++) {
        for (fmt = 0; fmt < 3; fmt++) {
            if (check_func(dsp.rgb2yuv[odepth][fmt],
                           "ff_colorspacedsp_rgb2yuv_%sp%d",
                           format_string[fmt], odepth * 2 + 8)) {
                int ss_w = !!fmt, ss_h = fmt == 2;
                int y_dst_stride = W << !!odepth;
                int uv_dst_stride = y_dst_stride >> ss_w;

                randomize_buffers();
                call_ref(dst0, (ptrdiff_t[3]) { y_dst_stride, uv_dst_stride, uv_dst_stride },
                         src, W, W, H, coeff, offset);
                call_new(dst1, (ptrdiff_t[3]) { y_dst_stride, uv_dst_stride, uv_dst_stride },
                         src, W, W, H, coeff, offset);
                if (memcmp(dst0[0], dst1[0], H * y_dst_stride) ||
                    memcmp(dst0[1], dst1[1], H * uv_dst_stride >> ss_h) ||
                    memcmp(dst0[2], dst1[2], H * uv_dst_stride >> ss_h)) {
                    fail();
                }
            }
        }
    }

    report("rgb2yuv");
}

static void check_multiply3x3(void)
{
    declare_func(void, int16_t *data[3], ptrdiff_t stride,
                 int w, int h, const int16_t coeff[3][3][8]);
    ColorSpaceDSPContext dsp;
    LOCAL_ALIGNED_32(int16_t, dst0_y, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst0_u, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst0_v, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst1_y, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst1_u, [W * H]);
    LOCAL_ALIGNED_32(int16_t, dst1_v, [W * H]);
    int16_t *dst0[3] = { dst0_y, dst0_u, dst0_v }, *dst1[3] = { dst1_y, dst1_u, dst1_v };
    int16_t **src = dst0;
    LOCAL_ALIGNED_32(int16_t, coeff_buf, [3 * 3 * 8]);
    int16_t (*coeff)[3][8] = (int16_t(*)[3][8]) coeff_buf;
    int n;

    ff_colorspacedsp_init(&dsp);
    for (n = 0; n < 8; n++) {
        coeff[0][0][n] = lrint(0.85 * (1 << 14));
        coeff[0][1][n] = lrint(0.10 * (1 << 14));
        coeff[0][2][n] = lrint(0.05 * (1 << 14));
        coeff[1][0][n] = lrint(-0.1 * (1 << 14));
        coeff[1][1][n] = lrint(0.95 * (1 << 14));
        coeff[1][2][n] = lrint(0.15 * (1 << 14));
        coeff[2][0][n] = lrint(-0.2 * (1 << 14));
        coeff[2][1][n] = lrint(0.30 * (1 << 14));
        coeff[2][2][n] = lrint(0.90 * (1 << 14));
    }
    if (check_func(dsp.multiply3x3, "ff_colorspacedsp_multiply3x3")) {
        randomize_buffers();
        memcpy(dst1_y, dst0_y, W * H * sizeof(*dst1_y));
        memcpy(dst1_u, dst0_u, W * H * sizeof(*dst1_u));
        memcpy(dst1_v, dst0_v, W * H * sizeof(*dst1_v));
        call_ref(dst0, W, W, H, coeff);
        call_new(dst1, W, W, H, coeff);
        if (memcmp(dst0[0], dst1[0], H * W * sizeof(*dst0_y)) ||
            memcmp(dst0[1], dst1[1], H * W * sizeof(*dst0_u)) ||
            memcmp(dst0[2], dst1[2], H * W * sizeof(*dst0_v))) {
            fail();
        }
    }

    report("multiply3x3");
}

void checkasm_check_colorspace(void)
{
    check_yuv2yuv();
    check_yuv2rgb();
    check_rgb2yuv();
    check_multiply3x3();
}