Coverage Report

Created: 2026-05-30 06:10

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/dav1d/src/itx_1d.c
Line
Count
Source
1
/*
2
 * Copyright © 2018-2019, VideoLAN and dav1d authors
3
 * Copyright © 2018-2019, Two Orioles, LLC
4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions are met:
8
 *
9
 * 1. Redistributions of source code must retain the above copyright notice, this
10
 *    list of conditions and the following disclaimer.
11
 *
12
 * 2. Redistributions in binary form must reproduce the above copyright notice,
13
 *    this list of conditions and the following disclaimer in the documentation
14
 *    and/or other materials provided with the distribution.
15
 *
16
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
20
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 */
27
28
#include "config.h"
29
30
#include <stddef.h>
31
#include <stdint.h>
32
33
#include "common/intops.h"
34
35
#include "src/itx_1d.h"
36
37
1.48G
#define CLIP(a) iclip(a, min, max)
38
39
/*
40
 * In some places, we use the pattern like this:
41
 * t2 = ((in1 *  1567         - in3 * (3784 - 4096) + 2048) >> 12) - in3;
42
 * even though the reference code might use something like:
43
 * t2 =  (in1 *  1567         - in3 *  3784         + 2048) >> 12;
44
 *
45
 * The reason for this is that for 12 bits/component bitstreams (corrupt/
46
 * invalid ones, but they are codable nonetheless), each coefficient or
47
 * input can be 19(+sign) bits, and therefore if the combination of the
48
 * two multipliers (each 12 bits) is >= 4096, the result of the add/sub
49
 * after the pair of multiplies will exceed the 31+sign bit range. Signed
50
 * integer overflows are UB in C, and we'd like to prevent that.
51
 *
52
 * To workaround this, we invert one of the two coefficients (or, if both are
53
 * multiples of 2, we reduce their magnitude by one bit). It should be noted
54
 * that SIMD implementations do not have to follow this exact behaviour. The
55
 * AV1 spec clearly states that the result of the multiply/add pairs should
56
 * fit in 31+sign bit intermediates, and that streams violating this convention
57
 * are not AV1-compliant. So, as long as we don't trigger UB (which some people
58
 * would consider a security vulnerability), we're fine. So, SIMD can simply
59
 * use the faster implementation, even if that might in some cases result in
60
 * integer overflows, since these are not considered valid AV1 anyway, and in
61
 * e.g. x86 assembly, integer overflows are not considered UB, but they merely
62
 * wrap around.
63
 */
64
65
static NOINLINE void
66
inv_dct4_1d_internal_c(int32_t *const c, const ptrdiff_t stride,
67
                       const int min, const int max, const int tx64)
68
11.9M
{
69
11.9M
    assert(stride > 0);
70
11.9M
    const int in0 = c[0 * stride], in1 = c[1 * stride];
71
72
11.9M
    int t0, t1, t2, t3;
73
11.9M
    if (tx64) {
74
2.42M
        t0 = t1 = (in0 * 181 + 128) >> 8;
75
2.42M
        t2 = (in1 * 1567 + 2048) >> 12;
76
2.42M
        t3 = (in1 * 3784 + 2048) >> 12;
77
9.54M
    } else {
78
9.54M
        const int in2 = c[2 * stride], in3 = c[3 * stride];
79
80
9.54M
        t0 = ((in0 + in2) * 181 + 128) >> 8;
81
9.54M
        t1 = ((in0 - in2) * 181 + 128) >> 8;
82
9.54M
        t2 = ((in1 *  1567         - in3 * (3784 - 4096) + 2048) >> 12) - in3;
83
9.54M
        t3 = ((in1 * (3784 - 4096) + in3 *  1567         + 2048) >> 12) + in1;
84
9.54M
    }
85
86
11.9M
    c[0 * stride] = CLIP(t0 + t3);
87
11.9M
    c[1 * stride] = CLIP(t1 + t2);
88
11.9M
    c[2 * stride] = CLIP(t1 - t2);
89
11.9M
    c[3 * stride] = CLIP(t0 - t3);
90
11.9M
}
91
92
static void inv_dct4_1d_c(int32_t *const c, const ptrdiff_t stride,
93
                          const int min, const int max)
94
975k
{
95
975k
    inv_dct4_1d_internal_c(c, stride, min, max, 0);
96
975k
}
97
98
static NOINLINE void
99
inv_dct8_1d_internal_c(int32_t *const c, const ptrdiff_t stride,
100
                       const int min, const int max, const int tx64)
101
10.9M
{
102
10.9M
    assert(stride > 0);
103
10.9M
    inv_dct4_1d_internal_c(c, stride << 1, min, max, tx64);
104
105
10.9M
    const int in1 = c[1 * stride], in3 = c[3 * stride];
106
107
10.9M
    int t4a, t5a, t6a, t7a;
108
10.9M
    if (tx64) {
109
2.42M
        t4a = (in1 *   799 + 2048) >> 12;
110
2.42M
        t5a = (in3 * -2276 + 2048) >> 12;
111
2.42M
        t6a = (in3 *  3406 + 2048) >> 12;
112
2.42M
        t7a = (in1 *  4017 + 2048) >> 12;
113
8.56M
    } else {
114
8.56M
        const int in5 = c[5 * stride], in7 = c[7 * stride];
115
116
8.56M
        t4a = ((in1 *   799         - in7 * (4017 - 4096) + 2048) >> 12) - in7;
117
8.56M
        t5a =  (in5 *  1703         - in3 *  1138         + 1024) >> 11;
118
8.56M
        t6a =  (in5 *  1138         + in3 *  1703         + 1024) >> 11;
119
8.56M
        t7a = ((in1 * (4017 - 4096) + in7 *  799          + 2048) >> 12) + in1;
120
8.56M
    }
121
122
10.9M
    const int t4  = CLIP(t4a + t5a);
123
10.9M
              t5a = CLIP(t4a - t5a);
124
10.9M
    const int t7  = CLIP(t7a + t6a);
125
10.9M
              t6a = CLIP(t7a - t6a);
126
127
10.9M
    const int t5  = ((t6a - t5a) * 181 + 128) >> 8;
128
10.9M
    const int t6  = ((t6a + t5a) * 181 + 128) >> 8;
129
130
10.9M
    const int t0 = c[0 * stride];
131
10.9M
    const int t1 = c[2 * stride];
132
10.9M
    const int t2 = c[4 * stride];
133
10.9M
    const int t3 = c[6 * stride];
134
135
10.9M
    c[0 * stride] = CLIP(t0 + t7);
136
10.9M
    c[1 * stride] = CLIP(t1 + t6);
137
10.9M
    c[2 * stride] = CLIP(t2 + t5);
138
10.9M
    c[3 * stride] = CLIP(t3 + t4);
139
10.9M
    c[4 * stride] = CLIP(t3 - t4);
140
10.9M
    c[5 * stride] = CLIP(t2 - t5);
141
10.9M
    c[6 * stride] = CLIP(t1 - t6);
142
10.9M
    c[7 * stride] = CLIP(t0 - t7);
143
10.9M
}
144
145
static void inv_dct8_1d_c(int32_t *const c, const ptrdiff_t stride,
146
                          const int min, const int max)
147
2.44M
{
148
2.44M
    inv_dct8_1d_internal_c(c, stride, min, max, 0);
149
2.44M
}
150
151
static NOINLINE void
152
inv_dct16_1d_internal_c(int32_t *const c, const ptrdiff_t stride,
153
                        const int min, const int max, int tx64)
154
8.55M
{
155
8.55M
    assert(stride > 0);
156
8.55M
    inv_dct8_1d_internal_c(c, stride << 1, min, max, tx64);
157
158
8.55M
    const int in1 = c[1 * stride], in3 = c[3 * stride];
159
8.55M
    const int in5 = c[5 * stride], in7 = c[7 * stride];
160
161
8.55M
    int t8a, t9a, t10a, t11a, t12a, t13a, t14a, t15a;
162
8.55M
    if (tx64) {
163
2.42M
        t8a  = (in1 *   401 + 2048) >> 12;
164
2.42M
        t9a  = (in7 * -2598 + 2048) >> 12;
165
2.42M
        t10a = (in5 *  1931 + 2048) >> 12;
166
2.42M
        t11a = (in3 * -1189 + 2048) >> 12;
167
2.42M
        t12a = (in3 *  3920 + 2048) >> 12;
168
2.42M
        t13a = (in5 *  3612 + 2048) >> 12;
169
2.42M
        t14a = (in7 *  3166 + 2048) >> 12;
170
2.42M
        t15a = (in1 *  4076 + 2048) >> 12;
171
6.12M
    } else {
172
6.12M
        const int in9  = c[ 9 * stride], in11 = c[11 * stride];
173
6.12M
        const int in13 = c[13 * stride], in15 = c[15 * stride];
174
175
6.12M
        t8a  = ((in1  *   401         - in15 * (4076 - 4096) + 2048) >> 12) - in15;
176
6.12M
        t9a  =  (in9  *  1583         - in7  *  1299         + 1024) >> 11;
177
6.12M
        t10a = ((in5  *  1931         - in11 * (3612 - 4096) + 2048) >> 12) - in11;
178
6.12M
        t11a = ((in13 * (3920 - 4096) - in3  *  1189         + 2048) >> 12) + in13;
179
6.12M
        t12a = ((in13 *  1189         + in3  * (3920 - 4096) + 2048) >> 12) + in3;
180
6.12M
        t13a = ((in5  * (3612 - 4096) + in11 *  1931         + 2048) >> 12) + in5;
181
6.12M
        t14a =  (in9  *  1299         + in7  *  1583         + 1024) >> 11;
182
6.12M
        t15a = ((in1  * (4076 - 4096) + in15 *   401         + 2048) >> 12) + in1;
183
6.12M
    }
184
185
8.55M
    int t8  = CLIP(t8a  + t9a);
186
8.55M
    int t9  = CLIP(t8a  - t9a);
187
8.55M
    int t10 = CLIP(t11a - t10a);
188
8.55M
    int t11 = CLIP(t11a + t10a);
189
8.55M
    int t12 = CLIP(t12a + t13a);
190
8.55M
    int t13 = CLIP(t12a - t13a);
191
8.55M
    int t14 = CLIP(t15a - t14a);
192
8.55M
    int t15 = CLIP(t15a + t14a);
193
194
8.55M
    t9a  = ((  t14 *  1567         - t9  * (3784 - 4096)  + 2048) >> 12) - t9;
195
8.55M
    t14a = ((  t14 * (3784 - 4096) + t9  *  1567          + 2048) >> 12) + t14;
196
8.55M
    t10a = ((-(t13 * (3784 - 4096) + t10 *  1567)         + 2048) >> 12) - t13;
197
8.55M
    t13a = ((  t13 *  1567         - t10 * (3784 - 4096)  + 2048) >> 12) - t10;
198
199
8.55M
    t8a  = CLIP(t8   + t11);
200
8.55M
    t9   = CLIP(t9a  + t10a);
201
8.55M
    t10  = CLIP(t9a  - t10a);
202
8.55M
    t11a = CLIP(t8   - t11);
203
8.55M
    t12a = CLIP(t15  - t12);
204
8.55M
    t13  = CLIP(t14a - t13a);
205
8.55M
    t14  = CLIP(t14a + t13a);
206
8.55M
    t15a = CLIP(t15  + t12);
207
208
8.55M
    t10a = ((t13  - t10)  * 181 + 128) >> 8;
209
8.55M
    t13a = ((t13  + t10)  * 181 + 128) >> 8;
210
8.55M
    t11  = ((t12a - t11a) * 181 + 128) >> 8;
211
8.55M
    t12  = ((t12a + t11a) * 181 + 128) >> 8;
212
213
8.55M
    const int t0 = c[ 0 * stride];
214
8.55M
    const int t1 = c[ 2 * stride];
215
8.55M
    const int t2 = c[ 4 * stride];
216
8.55M
    const int t3 = c[ 6 * stride];
217
8.55M
    const int t4 = c[ 8 * stride];
218
8.55M
    const int t5 = c[10 * stride];
219
8.55M
    const int t6 = c[12 * stride];
220
8.55M
    const int t7 = c[14 * stride];
221
222
8.55M
    c[ 0 * stride] = CLIP(t0 + t15a);
223
8.55M
    c[ 1 * stride] = CLIP(t1 + t14);
224
8.55M
    c[ 2 * stride] = CLIP(t2 + t13a);
225
8.55M
    c[ 3 * stride] = CLIP(t3 + t12);
226
8.55M
    c[ 4 * stride] = CLIP(t4 + t11);
227
8.55M
    c[ 5 * stride] = CLIP(t5 + t10a);
228
8.55M
    c[ 6 * stride] = CLIP(t6 + t9);
229
8.55M
    c[ 7 * stride] = CLIP(t7 + t8a);
230
8.55M
    c[ 8 * stride] = CLIP(t7 - t8a);
231
8.55M
    c[ 9 * stride] = CLIP(t6 - t9);
232
8.55M
    c[10 * stride] = CLIP(t5 - t10a);
233
8.55M
    c[11 * stride] = CLIP(t4 - t11);
234
8.55M
    c[12 * stride] = CLIP(t3 - t12);
235
8.55M
    c[13 * stride] = CLIP(t2 - t13a);
236
8.55M
    c[14 * stride] = CLIP(t1 - t14);
237
8.55M
    c[15 * stride] = CLIP(t0 - t15a);
238
8.55M
}
239
240
static void inv_dct16_1d_c(int32_t *const c, const ptrdiff_t stride,
241
                           const int min, const int max)
242
3.00M
{
243
3.00M
    inv_dct16_1d_internal_c(c, stride, min, max, 0);
244
3.00M
}
245
246
static NOINLINE void
247
inv_dct32_1d_internal_c(int32_t *const c, const ptrdiff_t stride,
248
                        const int min, const int max, const int tx64)
249
5.54M
{
250
5.54M
    assert(stride > 0);
251
5.54M
    inv_dct16_1d_internal_c(c, stride << 1, min, max, tx64);
252
253
5.54M
    const int in1  = c[ 1 * stride], in3  = c[ 3 * stride];
254
5.54M
    const int in5  = c[ 5 * stride], in7  = c[ 7 * stride];
255
5.54M
    const int in9  = c[ 9 * stride], in11 = c[11 * stride];
256
5.54M
    const int in13 = c[13 * stride], in15 = c[15 * stride];
257
258
5.54M
    int t16a, t17a, t18a, t19a, t20a, t21a, t22a, t23a;
259
5.54M
    int t24a, t25a, t26a, t27a, t28a, t29a, t30a, t31a;
260
5.54M
    if (tx64) {
261
2.42M
        t16a = (in1  *   201 + 2048) >> 12;
262
2.42M
        t17a = (in15 * -2751 + 2048) >> 12;
263
2.42M
        t18a = (in9  *  1751 + 2048) >> 12;
264
2.42M
        t19a = (in7  * -1380 + 2048) >> 12;
265
2.42M
        t20a = (in5  *   995 + 2048) >> 12;
266
2.42M
        t21a = (in11 * -2106 + 2048) >> 12;
267
2.42M
        t22a = (in13 *  2440 + 2048) >> 12;
268
2.42M
        t23a = (in3  *  -601 + 2048) >> 12;
269
2.42M
        t24a = (in3  *  4052 + 2048) >> 12;
270
2.42M
        t25a = (in13 *  3290 + 2048) >> 12;
271
2.42M
        t26a = (in11 *  3513 + 2048) >> 12;
272
2.42M
        t27a = (in5  *  3973 + 2048) >> 12;
273
2.42M
        t28a = (in7  *  3857 + 2048) >> 12;
274
2.42M
        t29a = (in9  *  3703 + 2048) >> 12;
275
2.42M
        t30a = (in15 *  3035 + 2048) >> 12;
276
2.42M
        t31a = (in1  *  4091 + 2048) >> 12;
277
3.11M
    } else {
278
3.11M
        const int in17 = c[17 * stride], in19 = c[19 * stride];
279
3.11M
        const int in21 = c[21 * stride], in23 = c[23 * stride];
280
3.11M
        const int in25 = c[25 * stride], in27 = c[27 * stride];
281
3.11M
        const int in29 = c[29 * stride], in31 = c[31 * stride];
282
283
3.11M
        t16a = ((in1  *   201         - in31 * (4091 - 4096) + 2048) >> 12) - in31;
284
3.11M
        t17a = ((in17 * (3035 - 4096) - in15 *  2751         + 2048) >> 12) + in17;
285
3.11M
        t18a = ((in9  *  1751         - in23 * (3703 - 4096) + 2048) >> 12) - in23;
286
3.11M
        t19a = ((in25 * (3857 - 4096) - in7  *  1380         + 2048) >> 12) + in25;
287
3.11M
        t20a = ((in5  *   995         - in27 * (3973 - 4096) + 2048) >> 12) - in27;
288
3.11M
        t21a = ((in21 * (3513 - 4096) - in11 *  2106         + 2048) >> 12) + in21;
289
3.11M
        t22a =  (in13 *  1220         - in19 *  1645         + 1024) >> 11;
290
3.11M
        t23a = ((in29 * (4052 - 4096) - in3  *   601         + 2048) >> 12) + in29;
291
3.11M
        t24a = ((in29 *   601         + in3  * (4052 - 4096) + 2048) >> 12) + in3;
292
3.11M
        t25a =  (in13 *  1645         + in19 *  1220         + 1024) >> 11;
293
3.11M
        t26a = ((in21 *  2106         + in11 * (3513 - 4096) + 2048) >> 12) + in11;
294
3.11M
        t27a = ((in5  * (3973 - 4096) + in27 *   995         + 2048) >> 12) + in5;
295
3.11M
        t28a = ((in25 *  1380         + in7  * (3857 - 4096) + 2048) >> 12) + in7;
296
3.11M
        t29a = ((in9  * (3703 - 4096) + in23 *  1751         + 2048) >> 12) + in9;
297
3.11M
        t30a = ((in17 *  2751         + in15 * (3035 - 4096) + 2048) >> 12) + in15;
298
3.11M
        t31a = ((in1  * (4091 - 4096) + in31 *   201         + 2048) >> 12) + in1;
299
3.11M
    }
300
301
5.54M
    int t16 = CLIP(t16a + t17a);
302
5.54M
    int t17 = CLIP(t16a - t17a);
303
5.54M
    int t18 = CLIP(t19a - t18a);
304
5.54M
    int t19 = CLIP(t19a + t18a);
305
5.54M
    int t20 = CLIP(t20a + t21a);
306
5.54M
    int t21 = CLIP(t20a - t21a);
307
5.54M
    int t22 = CLIP(t23a - t22a);
308
5.54M
    int t23 = CLIP(t23a + t22a);
309
5.54M
    int t24 = CLIP(t24a + t25a);
310
5.54M
    int t25 = CLIP(t24a - t25a);
311
5.54M
    int t26 = CLIP(t27a - t26a);
312
5.54M
    int t27 = CLIP(t27a + t26a);
313
5.54M
    int t28 = CLIP(t28a + t29a);
314
5.54M
    int t29 = CLIP(t28a - t29a);
315
5.54M
    int t30 = CLIP(t31a - t30a);
316
5.54M
    int t31 = CLIP(t31a + t30a);
317
318
5.54M
    t17a = ((  t30 *   799         - t17 * (4017 - 4096)  + 2048) >> 12) - t17;
319
5.54M
    t30a = ((  t30 * (4017 - 4096) + t17 *   799          + 2048) >> 12) + t30;
320
5.54M
    t18a = ((-(t29 * (4017 - 4096) + t18 *   799)         + 2048) >> 12) - t29;
321
5.54M
    t29a = ((  t29 *   799         - t18 * (4017 - 4096)  + 2048) >> 12) - t18;
322
5.54M
    t21a =  (  t26 *  1703         - t21 *  1138          + 1024) >> 11;
323
5.54M
    t26a =  (  t26 *  1138         + t21 *  1703          + 1024) >> 11;
324
5.54M
    t22a =  (-(t25 *  1138         + t22 *  1703        ) + 1024) >> 11;
325
5.54M
    t25a =  (  t25 *  1703         - t22 *  1138          + 1024) >> 11;
326
327
5.54M
    t16a = CLIP(t16  + t19);
328
5.54M
    t17  = CLIP(t17a + t18a);
329
5.54M
    t18  = CLIP(t17a - t18a);
330
5.54M
    t19a = CLIP(t16  - t19);
331
5.54M
    t20a = CLIP(t23  - t20);
332
5.54M
    t21  = CLIP(t22a - t21a);
333
5.54M
    t22  = CLIP(t22a + t21a);
334
5.54M
    t23a = CLIP(t23  + t20);
335
5.54M
    t24a = CLIP(t24  + t27);
336
5.54M
    t25  = CLIP(t25a + t26a);
337
5.54M
    t26  = CLIP(t25a - t26a);
338
5.54M
    t27a = CLIP(t24  - t27);
339
5.54M
    t28a = CLIP(t31  - t28);
340
5.54M
    t29  = CLIP(t30a - t29a);
341
5.54M
    t30  = CLIP(t30a + t29a);
342
5.54M
    t31a = CLIP(t31  + t28);
343
344
5.54M
    t18a = ((  t29  *  1567         - t18  * (3784 - 4096)  + 2048) >> 12) - t18;
345
5.54M
    t29a = ((  t29  * (3784 - 4096) + t18  *  1567          + 2048) >> 12) + t29;
346
5.54M
    t19  = ((  t28a *  1567         - t19a * (3784 - 4096)  + 2048) >> 12) - t19a;
347
5.54M
    t28  = ((  t28a * (3784 - 4096) + t19a *  1567          + 2048) >> 12) + t28a;
348
5.54M
    t20  = ((-(t27a * (3784 - 4096) + t20a *  1567)         + 2048) >> 12) - t27a;
349
5.54M
    t27  = ((  t27a *  1567         - t20a * (3784 - 4096)  + 2048) >> 12) - t20a;
350
5.54M
    t21a = ((-(t26  * (3784 - 4096) + t21  *  1567)         + 2048) >> 12) - t26;
351
5.54M
    t26a = ((  t26  *  1567         - t21  * (3784 - 4096)  + 2048) >> 12) - t21;
352
353
5.54M
    t16  = CLIP(t16a + t23a);
354
5.54M
    t17a = CLIP(t17  + t22);
355
5.54M
    t18  = CLIP(t18a + t21a);
356
5.54M
    t19a = CLIP(t19  + t20);
357
5.54M
    t20a = CLIP(t19  - t20);
358
5.54M
    t21  = CLIP(t18a - t21a);
359
5.54M
    t22a = CLIP(t17  - t22);
360
5.54M
    t23  = CLIP(t16a - t23a);
361
5.54M
    t24  = CLIP(t31a - t24a);
362
5.54M
    t25a = CLIP(t30  - t25);
363
5.54M
    t26  = CLIP(t29a - t26a);
364
5.54M
    t27a = CLIP(t28  - t27);
365
5.54M
    t28a = CLIP(t28  + t27);
366
5.54M
    t29  = CLIP(t29a + t26a);
367
5.54M
    t30a = CLIP(t30  + t25);
368
5.54M
    t31  = CLIP(t31a + t24a);
369
370
5.54M
    t20  = ((t27a - t20a) * 181 + 128) >> 8;
371
5.54M
    t27  = ((t27a + t20a) * 181 + 128) >> 8;
372
5.54M
    t21a = ((t26  - t21 ) * 181 + 128) >> 8;
373
5.54M
    t26a = ((t26  + t21 ) * 181 + 128) >> 8;
374
5.54M
    t22  = ((t25a - t22a) * 181 + 128) >> 8;
375
5.54M
    t25  = ((t25a + t22a) * 181 + 128) >> 8;
376
5.54M
    t23a = ((t24  - t23 ) * 181 + 128) >> 8;
377
5.54M
    t24a = ((t24  + t23 ) * 181 + 128) >> 8;
378
379
5.54M
    const int t0  = c[ 0 * stride];
380
5.54M
    const int t1  = c[ 2 * stride];
381
5.54M
    const int t2  = c[ 4 * stride];
382
5.54M
    const int t3  = c[ 6 * stride];
383
5.54M
    const int t4  = c[ 8 * stride];
384
5.54M
    const int t5  = c[10 * stride];
385
5.54M
    const int t6  = c[12 * stride];
386
5.54M
    const int t7  = c[14 * stride];
387
5.54M
    const int t8  = c[16 * stride];
388
5.54M
    const int t9  = c[18 * stride];
389
5.54M
    const int t10 = c[20 * stride];
390
5.54M
    const int t11 = c[22 * stride];
391
5.54M
    const int t12 = c[24 * stride];
392
5.54M
    const int t13 = c[26 * stride];
393
5.54M
    const int t14 = c[28 * stride];
394
5.54M
    const int t15 = c[30 * stride];
395
396
5.54M
    c[ 0 * stride] = CLIP(t0  + t31);
397
5.54M
    c[ 1 * stride] = CLIP(t1  + t30a);
398
5.54M
    c[ 2 * stride] = CLIP(t2  + t29);
399
5.54M
    c[ 3 * stride] = CLIP(t3  + t28a);
400
5.54M
    c[ 4 * stride] = CLIP(t4  + t27);
401
5.54M
    c[ 5 * stride] = CLIP(t5  + t26a);
402
5.54M
    c[ 6 * stride] = CLIP(t6  + t25);
403
5.54M
    c[ 7 * stride] = CLIP(t7  + t24a);
404
5.54M
    c[ 8 * stride] = CLIP(t8  + t23a);
405
5.54M
    c[ 9 * stride] = CLIP(t9  + t22);
406
5.54M
    c[10 * stride] = CLIP(t10 + t21a);
407
5.54M
    c[11 * stride] = CLIP(t11 + t20);
408
5.54M
    c[12 * stride] = CLIP(t12 + t19a);
409
5.54M
    c[13 * stride] = CLIP(t13 + t18);
410
5.54M
    c[14 * stride] = CLIP(t14 + t17a);
411
5.54M
    c[15 * stride] = CLIP(t15 + t16);
412
5.54M
    c[16 * stride] = CLIP(t15 - t16);
413
5.54M
    c[17 * stride] = CLIP(t14 - t17a);
414
5.54M
    c[18 * stride] = CLIP(t13 - t18);
415
5.54M
    c[19 * stride] = CLIP(t12 - t19a);
416
5.54M
    c[20 * stride] = CLIP(t11 - t20);
417
5.54M
    c[21 * stride] = CLIP(t10 - t21a);
418
5.54M
    c[22 * stride] = CLIP(t9  - t22);
419
5.54M
    c[23 * stride] = CLIP(t8  - t23a);
420
5.54M
    c[24 * stride] = CLIP(t7  - t24a);
421
5.54M
    c[25 * stride] = CLIP(t6  - t25);
422
5.54M
    c[26 * stride] = CLIP(t5  - t26a);
423
5.54M
    c[27 * stride] = CLIP(t4  - t27);
424
5.54M
    c[28 * stride] = CLIP(t3  - t28a);
425
5.54M
    c[29 * stride] = CLIP(t2  - t29);
426
5.54M
    c[30 * stride] = CLIP(t1  - t30a);
427
5.54M
    c[31 * stride] = CLIP(t0  - t31);
428
5.54M
}
429
430
static void inv_dct32_1d_c(int32_t *const c, const ptrdiff_t stride,
431
                           const int min, const int max)
432
3.11M
{
433
3.11M
    inv_dct32_1d_internal_c(c, stride, min, max, 0);
434
3.11M
}
435
436
static void inv_dct64_1d_c(int32_t *const c, const ptrdiff_t stride,
437
                           const int min, const int max)
438
2.42M
{
439
2.42M
    assert(stride > 0);
440
2.42M
    inv_dct32_1d_internal_c(c, stride << 1, min, max, 1);
441
442
2.42M
    const int in1  = c[ 1 * stride], in3  = c[ 3 * stride];
443
2.42M
    const int in5  = c[ 5 * stride], in7  = c[ 7 * stride];
444
2.42M
    const int in9  = c[ 9 * stride], in11 = c[11 * stride];
445
2.42M
    const int in13 = c[13 * stride], in15 = c[15 * stride];
446
2.42M
    const int in17 = c[17 * stride], in19 = c[19 * stride];
447
2.42M
    const int in21 = c[21 * stride], in23 = c[23 * stride];
448
2.42M
    const int in25 = c[25 * stride], in27 = c[27 * stride];
449
2.42M
    const int in29 = c[29 * stride], in31 = c[31 * stride];
450
451
2.42M
    int t32a = (in1  *   101 + 2048) >> 12;
452
2.42M
    int t33a = (in31 * -2824 + 2048) >> 12;
453
2.42M
    int t34a = (in17 *  1660 + 2048) >> 12;
454
2.42M
    int t35a = (in15 * -1474 + 2048) >> 12;
455
2.42M
    int t36a = (in9  *   897 + 2048) >> 12;
456
2.42M
    int t37a = (in23 * -2191 + 2048) >> 12;
457
2.42M
    int t38a = (in25 *  2359 + 2048) >> 12;
458
2.42M
    int t39a = (in7  *  -700 + 2048) >> 12;
459
2.42M
    int t40a = (in5  *   501 + 2048) >> 12;
460
2.42M
    int t41a = (in27 * -2520 + 2048) >> 12;
461
2.42M
    int t42a = (in21 *  2019 + 2048) >> 12;
462
2.42M
    int t43a = (in11 * -1092 + 2048) >> 12;
463
2.42M
    int t44a = (in13 *  1285 + 2048) >> 12;
464
2.42M
    int t45a = (in19 * -1842 + 2048) >> 12;
465
2.42M
    int t46a = (in29 *  2675 + 2048) >> 12;
466
2.42M
    int t47a = (in3  *  -301 + 2048) >> 12;
467
2.42M
    int t48a = (in3  *  4085 + 2048) >> 12;
468
2.42M
    int t49a = (in29 *  3102 + 2048) >> 12;
469
2.42M
    int t50a = (in19 *  3659 + 2048) >> 12;
470
2.42M
    int t51a = (in13 *  3889 + 2048) >> 12;
471
2.42M
    int t52a = (in11 *  3948 + 2048) >> 12;
472
2.42M
    int t53a = (in21 *  3564 + 2048) >> 12;
473
2.42M
    int t54a = (in27 *  3229 + 2048) >> 12;
474
2.42M
    int t55a = (in5  *  4065 + 2048) >> 12;
475
2.42M
    int t56a = (in7  *  4036 + 2048) >> 12;
476
2.42M
    int t57a = (in25 *  3349 + 2048) >> 12;
477
2.42M
    int t58a = (in23 *  3461 + 2048) >> 12;
478
2.42M
    int t59a = (in9  *  3996 + 2048) >> 12;
479
2.42M
    int t60a = (in15 *  3822 + 2048) >> 12;
480
2.42M
    int t61a = (in17 *  3745 + 2048) >> 12;
481
2.42M
    int t62a = (in31 *  2967 + 2048) >> 12;
482
2.42M
    int t63a = (in1  *  4095 + 2048) >> 12;
483
484
2.42M
    int t32 = CLIP(t32a + t33a);
485
2.42M
    int t33 = CLIP(t32a - t33a);
486
2.42M
    int t34 = CLIP(t35a - t34a);
487
2.42M
    int t35 = CLIP(t35a + t34a);
488
2.42M
    int t36 = CLIP(t36a + t37a);
489
2.42M
    int t37 = CLIP(t36a - t37a);
490
2.42M
    int t38 = CLIP(t39a - t38a);
491
2.42M
    int t39 = CLIP(t39a + t38a);
492
2.42M
    int t40 = CLIP(t40a + t41a);
493
2.42M
    int t41 = CLIP(t40a - t41a);
494
2.42M
    int t42 = CLIP(t43a - t42a);
495
2.42M
    int t43 = CLIP(t43a + t42a);
496
2.42M
    int t44 = CLIP(t44a + t45a);
497
2.42M
    int t45 = CLIP(t44a - t45a);
498
2.42M
    int t46 = CLIP(t47a - t46a);
499
2.42M
    int t47 = CLIP(t47a + t46a);
500
2.42M
    int t48 = CLIP(t48a + t49a);
501
2.42M
    int t49 = CLIP(t48a - t49a);
502
2.42M
    int t50 = CLIP(t51a - t50a);
503
2.42M
    int t51 = CLIP(t51a + t50a);
504
2.42M
    int t52 = CLIP(t52a + t53a);
505
2.42M
    int t53 = CLIP(t52a - t53a);
506
2.42M
    int t54 = CLIP(t55a - t54a);
507
2.42M
    int t55 = CLIP(t55a + t54a);
508
2.42M
    int t56 = CLIP(t56a + t57a);
509
2.42M
    int t57 = CLIP(t56a - t57a);
510
2.42M
    int t58 = CLIP(t59a - t58a);
511
2.42M
    int t59 = CLIP(t59a + t58a);
512
2.42M
    int t60 = CLIP(t60a + t61a);
513
2.42M
    int t61 = CLIP(t60a - t61a);
514
2.42M
    int t62 = CLIP(t63a - t62a);
515
2.42M
    int t63 = CLIP(t63a + t62a);
516
517
2.42M
    t33a = ((t33 * (4096 - 4076) + t62 *   401         + 2048) >> 12) - t33;
518
2.42M
    t34a = ((t34 *  -401         + t61 * (4096 - 4076) + 2048) >> 12) - t61;
519
2.42M
    t37a =  (t37 * -1299         + t58 *  1583         + 1024) >> 11;
520
2.42M
    t38a =  (t38 * -1583         + t57 * -1299         + 1024) >> 11;
521
2.42M
    t41a = ((t41 * (4096 - 3612) + t54 *  1931         + 2048) >> 12) - t41;
522
2.42M
    t42a = ((t42 * -1931         + t53 * (4096 - 3612) + 2048) >> 12) - t53;
523
2.42M
    t45a = ((t45 * -1189         + t50 * (3920 - 4096) + 2048) >> 12) + t50;
524
2.42M
    t46a = ((t46 * (4096 - 3920) + t49 * -1189         + 2048) >> 12) - t46;
525
2.42M
    t49a = ((t46 * -1189         + t49 * (3920 - 4096) + 2048) >> 12) + t49;
526
2.42M
    t50a = ((t45 * (3920 - 4096) + t50 *  1189         + 2048) >> 12) + t45;
527
2.42M
    t53a = ((t42 * (4096 - 3612) + t53 *  1931         + 2048) >> 12) - t42;
528
2.42M
    t54a = ((t41 *  1931         + t54 * (3612 - 4096) + 2048) >> 12) + t54;
529
2.42M
    t57a =  (t38 * -1299         + t57 *  1583         + 1024) >> 11;
530
2.42M
    t58a =  (t37 *  1583         + t58 *  1299         + 1024) >> 11;
531
2.42M
    t61a = ((t34 * (4096 - 4076) + t61 *   401         + 2048) >> 12) - t34;
532
2.42M
    t62a = ((t33 *   401         + t62 * (4076 - 4096) + 2048) >> 12) + t62;
533
534
2.42M
    t32a = CLIP(t32  + t35);
535
2.42M
    t33  = CLIP(t33a + t34a);
536
2.42M
    t34  = CLIP(t33a - t34a);
537
2.42M
    t35a = CLIP(t32  - t35);
538
2.42M
    t36a = CLIP(t39  - t36);
539
2.42M
    t37  = CLIP(t38a - t37a);
540
2.42M
    t38  = CLIP(t38a + t37a);
541
2.42M
    t39a = CLIP(t39  + t36);
542
2.42M
    t40a = CLIP(t40  + t43);
543
2.42M
    t41  = CLIP(t41a + t42a);
544
2.42M
    t42  = CLIP(t41a - t42a);
545
2.42M
    t43a = CLIP(t40  - t43);
546
2.42M
    t44a = CLIP(t47  - t44);
547
2.42M
    t45  = CLIP(t46a - t45a);
548
2.42M
    t46  = CLIP(t46a + t45a);
549
2.42M
    t47a = CLIP(t47  + t44);
550
2.42M
    t48a = CLIP(t48  + t51);
551
2.42M
    t49  = CLIP(t49a + t50a);
552
2.42M
    t50  = CLIP(t49a - t50a);
553
2.42M
    t51a = CLIP(t48  - t51);
554
2.42M
    t52a = CLIP(t55  - t52);
555
2.42M
    t53  = CLIP(t54a - t53a);
556
2.42M
    t54  = CLIP(t54a + t53a);
557
2.42M
    t55a = CLIP(t55  + t52);
558
2.42M
    t56a = CLIP(t56  + t59);
559
2.42M
    t57  = CLIP(t57a + t58a);
560
2.42M
    t58  = CLIP(t57a - t58a);
561
2.42M
    t59a = CLIP(t56  - t59);
562
2.42M
    t60a = CLIP(t63  - t60);
563
2.42M
    t61  = CLIP(t62a - t61a);
564
2.42M
    t62  = CLIP(t62a + t61a);
565
2.42M
    t63a = CLIP(t63  + t60);
566
567
2.42M
    t34a = ((t34  * (4096 - 4017) + t61  *   799         + 2048) >> 12) - t34;
568
2.42M
    t35  = ((t35a * (4096 - 4017) + t60a *   799         + 2048) >> 12) - t35a;
569
2.42M
    t36  = ((t36a *  -799         + t59a * (4096 - 4017) + 2048) >> 12) - t59a;
570
2.42M
    t37a = ((t37  *  -799         + t58  * (4096 - 4017) + 2048) >> 12) - t58;
571
2.42M
    t42a =  (t42  * -1138         + t53  *  1703         + 1024) >> 11;
572
2.42M
    t43  =  (t43a * -1138         + t52a *  1703         + 1024) >> 11;
573
2.42M
    t44  =  (t44a * -1703         + t51a * -1138         + 1024) >> 11;
574
2.42M
    t45a =  (t45  * -1703         + t50  * -1138         + 1024) >> 11;
575
2.42M
    t50a =  (t45  * -1138         + t50  *  1703         + 1024) >> 11;
576
2.42M
    t51  =  (t44a * -1138         + t51a *  1703         + 1024) >> 11;
577
2.42M
    t52  =  (t43a *  1703         + t52a *  1138         + 1024) >> 11;
578
2.42M
    t53a =  (t42  *  1703         + t53  *  1138         + 1024) >> 11;
579
2.42M
    t58a = ((t37  * (4096 - 4017) + t58  *   799         + 2048) >> 12) - t37;
580
2.42M
    t59  = ((t36a * (4096 - 4017) + t59a *   799         + 2048) >> 12) - t36a;
581
2.42M
    t60  = ((t35a *   799         + t60a * (4017 - 4096) + 2048) >> 12) + t60a;
582
2.42M
    t61a = ((t34  *   799         + t61  * (4017 - 4096) + 2048) >> 12) + t61;
583
584
2.42M
    t32  = CLIP(t32a + t39a);
585
2.42M
    t33a = CLIP(t33  + t38);
586
2.42M
    t34  = CLIP(t34a + t37a);
587
2.42M
    t35a = CLIP(t35  + t36);
588
2.42M
    t36a = CLIP(t35  - t36);
589
2.42M
    t37  = CLIP(t34a - t37a);
590
2.42M
    t38a = CLIP(t33  - t38);
591
2.42M
    t39  = CLIP(t32a - t39a);
592
2.42M
    t40  = CLIP(t47a - t40a);
593
2.42M
    t41a = CLIP(t46  - t41);
594
2.42M
    t42  = CLIP(t45a - t42a);
595
2.42M
    t43a = CLIP(t44  - t43);
596
2.42M
    t44a = CLIP(t44  + t43);
597
2.42M
    t45  = CLIP(t45a + t42a);
598
2.42M
    t46a = CLIP(t46  + t41);
599
2.42M
    t47  = CLIP(t47a + t40a);
600
2.42M
    t48  = CLIP(t48a + t55a);
601
2.42M
    t49a = CLIP(t49  + t54);
602
2.42M
    t50  = CLIP(t50a + t53a);
603
2.42M
    t51a = CLIP(t51  + t52);
604
2.42M
    t52a = CLIP(t51  - t52);
605
2.42M
    t53  = CLIP(t50a - t53a);
606
2.42M
    t54a = CLIP(t49  - t54);
607
2.42M
    t55  = CLIP(t48a - t55a);
608
2.42M
    t56  = CLIP(t63a - t56a);
609
2.42M
    t57a = CLIP(t62  - t57);
610
2.42M
    t58  = CLIP(t61a - t58a);
611
2.42M
    t59a = CLIP(t60  - t59);
612
2.42M
    t60a = CLIP(t60  + t59);
613
2.42M
    t61  = CLIP(t61a + t58a);
614
2.42M
    t62a = CLIP(t62  + t57);
615
2.42M
    t63  = CLIP(t63a + t56a);
616
617
2.42M
    t36  = ((t36a * (4096 - 3784) + t59a *  1567         + 2048) >> 12) - t36a;
618
2.42M
    t37a = ((t37  * (4096 - 3784) + t58  *  1567         + 2048) >> 12) - t37;
619
2.42M
    t38  = ((t38a * (4096 - 3784) + t57a *  1567         + 2048) >> 12) - t38a;
620
2.42M
    t39a = ((t39  * (4096 - 3784) + t56  *  1567         + 2048) >> 12) - t39;
621
2.42M
    t40a = ((t40  * -1567         + t55  * (4096 - 3784) + 2048) >> 12) - t55;
622
2.42M
    t41  = ((t41a * -1567         + t54a * (4096 - 3784) + 2048) >> 12) - t54a;
623
2.42M
    t42a = ((t42  * -1567         + t53  * (4096 - 3784) + 2048) >> 12) - t53;
624
2.42M
    t43  = ((t43a * -1567         + t52a * (4096 - 3784) + 2048) >> 12) - t52a;
625
2.42M
    t52  = ((t43a * (4096 - 3784) + t52a *  1567         + 2048) >> 12) - t43a;
626
2.42M
    t53a = ((t42  * (4096 - 3784) + t53  *  1567         + 2048) >> 12) - t42;
627
2.42M
    t54  = ((t41a * (4096 - 3784) + t54a *  1567         + 2048) >> 12) - t41a;
628
2.42M
    t55a = ((t40  * (4096 - 3784) + t55  *  1567         + 2048) >> 12) - t40;
629
2.42M
    t56a = ((t39  *  1567         + t56  * (3784 - 4096) + 2048) >> 12) + t56;
630
2.42M
    t57  = ((t38a *  1567         + t57a * (3784 - 4096) + 2048) >> 12) + t57a;
631
2.42M
    t58a = ((t37  *  1567         + t58  * (3784 - 4096) + 2048) >> 12) + t58;
632
2.42M
    t59  = ((t36a *  1567         + t59a * (3784 - 4096) + 2048) >> 12) + t59a;
633
634
2.42M
    t32a = CLIP(t32  + t47);
635
2.42M
    t33  = CLIP(t33a + t46a);
636
2.42M
    t34a = CLIP(t34  + t45);
637
2.42M
    t35  = CLIP(t35a + t44a);
638
2.42M
    t36a = CLIP(t36  + t43);
639
2.42M
    t37  = CLIP(t37a + t42a);
640
2.42M
    t38a = CLIP(t38  + t41);
641
2.42M
    t39  = CLIP(t39a + t40a);
642
2.42M
    t40  = CLIP(t39a - t40a);
643
2.42M
    t41a = CLIP(t38  - t41);
644
2.42M
    t42  = CLIP(t37a - t42a);
645
2.42M
    t43a = CLIP(t36  - t43);
646
2.42M
    t44  = CLIP(t35a - t44a);
647
2.42M
    t45a = CLIP(t34  - t45);
648
2.42M
    t46  = CLIP(t33a - t46a);
649
2.42M
    t47a = CLIP(t32  - t47);
650
2.42M
    t48a = CLIP(t63  - t48);
651
2.42M
    t49  = CLIP(t62a - t49a);
652
2.42M
    t50a = CLIP(t61  - t50);
653
2.42M
    t51  = CLIP(t60a - t51a);
654
2.42M
    t52a = CLIP(t59  - t52);
655
2.42M
    t53  = CLIP(t58a - t53a);
656
2.42M
    t54a = CLIP(t57  - t54);
657
2.42M
    t55  = CLIP(t56a - t55a);
658
2.42M
    t56  = CLIP(t56a + t55a);
659
2.42M
    t57a = CLIP(t57  + t54);
660
2.42M
    t58  = CLIP(t58a + t53a);
661
2.42M
    t59a = CLIP(t59  + t52);
662
2.42M
    t60  = CLIP(t60a + t51a);
663
2.42M
    t61a = CLIP(t61  + t50);
664
2.42M
    t62  = CLIP(t62a + t49a);
665
2.42M
    t63a = CLIP(t63  + t48);
666
667
2.42M
    t40a = ((t55  - t40 ) * 181 + 128) >> 8;
668
2.42M
    t41  = ((t54a - t41a) * 181 + 128) >> 8;
669
2.42M
    t42a = ((t53  - t42 ) * 181 + 128) >> 8;
670
2.42M
    t43  = ((t52a - t43a) * 181 + 128) >> 8;
671
2.42M
    t44a = ((t51  - t44 ) * 181 + 128) >> 8;
672
2.42M
    t45  = ((t50a - t45a) * 181 + 128) >> 8;
673
2.42M
    t46a = ((t49  - t46 ) * 181 + 128) >> 8;
674
2.42M
    t47  = ((t48a - t47a) * 181 + 128) >> 8;
675
2.42M
    t48  = ((t47a + t48a) * 181 + 128) >> 8;
676
2.42M
    t49a = ((t46  + t49 ) * 181 + 128) >> 8;
677
2.42M
    t50  = ((t45a + t50a) * 181 + 128) >> 8;
678
2.42M
    t51a = ((t44  + t51 ) * 181 + 128) >> 8;
679
2.42M
    t52  = ((t43a + t52a) * 181 + 128) >> 8;
680
2.42M
    t53a = ((t42  + t53 ) * 181 + 128) >> 8;
681
2.42M
    t54  = ((t41a + t54a) * 181 + 128) >> 8;
682
2.42M
    t55a = ((t40  + t55 ) * 181 + 128) >> 8;
683
684
2.42M
    const int t0  = c[ 0 * stride];
685
2.42M
    const int t1  = c[ 2 * stride];
686
2.42M
    const int t2  = c[ 4 * stride];
687
2.42M
    const int t3  = c[ 6 * stride];
688
2.42M
    const int t4  = c[ 8 * stride];
689
2.42M
    const int t5  = c[10 * stride];
690
2.42M
    const int t6  = c[12 * stride];
691
2.42M
    const int t7  = c[14 * stride];
692
2.42M
    const int t8  = c[16 * stride];
693
2.42M
    const int t9  = c[18 * stride];
694
2.42M
    const int t10 = c[20 * stride];
695
2.42M
    const int t11 = c[22 * stride];
696
2.42M
    const int t12 = c[24 * stride];
697
2.42M
    const int t13 = c[26 * stride];
698
2.42M
    const int t14 = c[28 * stride];
699
2.42M
    const int t15 = c[30 * stride];
700
2.42M
    const int t16 = c[32 * stride];
701
2.42M
    const int t17 = c[34 * stride];
702
2.42M
    const int t18 = c[36 * stride];
703
2.42M
    const int t19 = c[38 * stride];
704
2.42M
    const int t20 = c[40 * stride];
705
2.42M
    const int t21 = c[42 * stride];
706
2.42M
    const int t22 = c[44 * stride];
707
2.42M
    const int t23 = c[46 * stride];
708
2.42M
    const int t24 = c[48 * stride];
709
2.42M
    const int t25 = c[50 * stride];
710
2.42M
    const int t26 = c[52 * stride];
711
2.42M
    const int t27 = c[54 * stride];
712
2.42M
    const int t28 = c[56 * stride];
713
2.42M
    const int t29 = c[58 * stride];
714
2.42M
    const int t30 = c[60 * stride];
715
2.42M
    const int t31 = c[62 * stride];
716
717
2.42M
    c[ 0 * stride] = CLIP(t0  + t63a);
718
2.42M
    c[ 1 * stride] = CLIP(t1  + t62);
719
2.42M
    c[ 2 * stride] = CLIP(t2  + t61a);
720
2.42M
    c[ 3 * stride] = CLIP(t3  + t60);
721
2.42M
    c[ 4 * stride] = CLIP(t4  + t59a);
722
2.42M
    c[ 5 * stride] = CLIP(t5  + t58);
723
2.42M
    c[ 6 * stride] = CLIP(t6  + t57a);
724
2.42M
    c[ 7 * stride] = CLIP(t7  + t56);
725
2.42M
    c[ 8 * stride] = CLIP(t8  + t55a);
726
2.42M
    c[ 9 * stride] = CLIP(t9  + t54);
727
2.42M
    c[10 * stride] = CLIP(t10 + t53a);
728
2.42M
    c[11 * stride] = CLIP(t11 + t52);
729
2.42M
    c[12 * stride] = CLIP(t12 + t51a);
730
2.42M
    c[13 * stride] = CLIP(t13 + t50);
731
2.42M
    c[14 * stride] = CLIP(t14 + t49a);
732
2.42M
    c[15 * stride] = CLIP(t15 + t48);
733
2.42M
    c[16 * stride] = CLIP(t16 + t47);
734
2.42M
    c[17 * stride] = CLIP(t17 + t46a);
735
2.42M
    c[18 * stride] = CLIP(t18 + t45);
736
2.42M
    c[19 * stride] = CLIP(t19 + t44a);
737
2.42M
    c[20 * stride] = CLIP(t20 + t43);
738
2.42M
    c[21 * stride] = CLIP(t21 + t42a);
739
2.42M
    c[22 * stride] = CLIP(t22 + t41);
740
2.42M
    c[23 * stride] = CLIP(t23 + t40a);
741
2.42M
    c[24 * stride] = CLIP(t24 + t39);
742
2.42M
    c[25 * stride] = CLIP(t25 + t38a);
743
2.42M
    c[26 * stride] = CLIP(t26 + t37);
744
2.42M
    c[27 * stride] = CLIP(t27 + t36a);
745
2.42M
    c[28 * stride] = CLIP(t28 + t35);
746
2.42M
    c[29 * stride] = CLIP(t29 + t34a);
747
2.42M
    c[30 * stride] = CLIP(t30 + t33);
748
2.42M
    c[31 * stride] = CLIP(t31 + t32a);
749
2.42M
    c[32 * stride] = CLIP(t31 - t32a);
750
2.42M
    c[33 * stride] = CLIP(t30 - t33);
751
2.42M
    c[34 * stride] = CLIP(t29 - t34a);
752
2.42M
    c[35 * stride] = CLIP(t28 - t35);
753
2.42M
    c[36 * stride] = CLIP(t27 - t36a);
754
2.42M
    c[37 * stride] = CLIP(t26 - t37);
755
2.42M
    c[38 * stride] = CLIP(t25 - t38a);
756
2.42M
    c[39 * stride] = CLIP(t24 - t39);
757
2.42M
    c[40 * stride] = CLIP(t23 - t40a);
758
2.42M
    c[41 * stride] = CLIP(t22 - t41);
759
2.42M
    c[42 * stride] = CLIP(t21 - t42a);
760
2.42M
    c[43 * stride] = CLIP(t20 - t43);
761
2.42M
    c[44 * stride] = CLIP(t19 - t44a);
762
2.42M
    c[45 * stride] = CLIP(t18 - t45);
763
2.42M
    c[46 * stride] = CLIP(t17 - t46a);
764
2.42M
    c[47 * stride] = CLIP(t16 - t47);
765
2.42M
    c[48 * stride] = CLIP(t15 - t48);
766
2.42M
    c[49 * stride] = CLIP(t14 - t49a);
767
2.42M
    c[50 * stride] = CLIP(t13 - t50);
768
2.42M
    c[51 * stride] = CLIP(t12 - t51a);
769
2.42M
    c[52 * stride] = CLIP(t11 - t52);
770
2.42M
    c[53 * stride] = CLIP(t10 - t53a);
771
2.42M
    c[54 * stride] = CLIP(t9  - t54);
772
2.42M
    c[55 * stride] = CLIP(t8  - t55a);
773
2.42M
    c[56 * stride] = CLIP(t7  - t56);
774
2.42M
    c[57 * stride] = CLIP(t6  - t57a);
775
2.42M
    c[58 * stride] = CLIP(t5  - t58);
776
2.42M
    c[59 * stride] = CLIP(t4  - t59a);
777
2.42M
    c[60 * stride] = CLIP(t3  - t60);
778
2.42M
    c[61 * stride] = CLIP(t2  - t61a);
779
2.42M
    c[62 * stride] = CLIP(t1  - t62);
780
2.42M
    c[63 * stride] = CLIP(t0  - t63a);
781
2.42M
}
782
783
static NOINLINE void
784
inv_adst4_1d_internal_c(const int32_t *const in, const ptrdiff_t in_s,
785
                        const int min, const int max,
786
                        int32_t *const out, const ptrdiff_t out_s)
787
1.04M
{
788
1.04M
    assert(in_s > 0 && out_s != 0);
789
1.04M
    const int in0 = in[0 * in_s], in1 = in[1 * in_s];
790
1.04M
    const int in2 = in[2 * in_s], in3 = in[3 * in_s];
791
792
1.04M
    out[0 * out_s] = (( 1321         * in0 + (3803 - 4096) * in2 +
793
1.04M
                       (2482 - 4096) * in3 + (3344 - 4096) * in1 + 2048) >> 12) +
794
1.04M
                     in2 + in3 + in1;
795
1.04M
    out[1 * out_s] = (((2482 - 4096) * in0 -  1321         * in2 -
796
1.04M
                       (3803 - 4096) * in3 + (3344 - 4096) * in1 + 2048) >> 12) +
797
1.04M
                     in0 - in3 + in1;
798
1.04M
    out[2 * out_s] = (209 * (in0 - in2 + in3) + 128) >> 8;
799
1.04M
    out[3 * out_s] = (((3803 - 4096) * in0 + (2482 - 4096) * in2 -
800
1.04M
                        1321         * in3 - (3344 - 4096) * in1 + 2048) >> 12) +
801
1.04M
                     in0 + in2 - in1;
802
1.04M
}
803
804
static NOINLINE void
805
inv_adst8_1d_internal_c(const int32_t *const in, const ptrdiff_t in_s,
806
                        const int min, const int max,
807
                        int32_t *const out, const ptrdiff_t out_s)
808
1.70M
{
809
1.70M
    assert(in_s > 0 && out_s != 0);
810
1.70M
    const int in0 = in[0 * in_s], in1 = in[1 * in_s];
811
1.70M
    const int in2 = in[2 * in_s], in3 = in[3 * in_s];
812
1.70M
    const int in4 = in[4 * in_s], in5 = in[5 * in_s];
813
1.70M
    const int in6 = in[6 * in_s], in7 = in[7 * in_s];
814
815
1.70M
    const int t0a = (((4076 - 4096) * in7 +   401         * in0 + 2048) >> 12) + in7;
816
1.70M
    const int t1a = ((  401         * in7 - (4076 - 4096) * in0 + 2048) >> 12) - in0;
817
1.70M
    const int t2a = (((3612 - 4096) * in5 +  1931         * in2 + 2048) >> 12) + in5;
818
1.70M
    const int t3a = (( 1931         * in5 - (3612 - 4096) * in2 + 2048) >> 12) - in2;
819
1.70M
          int t4a =  ( 1299         * in3 +  1583         * in4 + 1024) >> 11;
820
1.70M
          int t5a =  ( 1583         * in3 -  1299         * in4 + 1024) >> 11;
821
1.70M
          int t6a = (( 1189         * in1 + (3920 - 4096) * in6 + 2048) >> 12) + in6;
822
1.70M
          int t7a = (((3920 - 4096) * in1 -  1189         * in6 + 2048) >> 12) + in1;
823
824
1.70M
    const int t0 = CLIP(t0a + t4a);
825
1.70M
    const int t1 = CLIP(t1a + t5a);
826
1.70M
          int t2 = CLIP(t2a + t6a);
827
1.70M
          int t3 = CLIP(t3a + t7a);
828
1.70M
    const int t4 = CLIP(t0a - t4a);
829
1.70M
    const int t5 = CLIP(t1a - t5a);
830
1.70M
          int t6 = CLIP(t2a - t6a);
831
1.70M
          int t7 = CLIP(t3a - t7a);
832
833
1.70M
    t4a = (((3784 - 4096) * t4 +  1567         * t5 + 2048) >> 12) + t4;
834
1.70M
    t5a = (( 1567         * t4 - (3784 - 4096) * t5 + 2048) >> 12) - t5;
835
1.70M
    t6a = (((3784 - 4096) * t7 -  1567         * t6 + 2048) >> 12) + t7;
836
1.70M
    t7a = (( 1567         * t7 + (3784 - 4096) * t6 + 2048) >> 12) + t6;
837
838
1.70M
    out[0 * out_s] =  CLIP(t0  + t2 );
839
1.70M
    out[7 * out_s] = -CLIP(t1  + t3 );
840
1.70M
    t2             =  CLIP(t0  - t2 );
841
1.70M
    t3             =  CLIP(t1  - t3 );
842
1.70M
    out[1 * out_s] = -CLIP(t4a + t6a);
843
1.70M
    out[6 * out_s] =  CLIP(t5a + t7a);
844
1.70M
    t6             =  CLIP(t4a - t6a);
845
1.70M
    t7             =  CLIP(t5a - t7a);
846
847
1.70M
    out[3 * out_s] = -(((t2 + t3) * 181 + 128) >> 8);
848
1.70M
    out[4 * out_s] =   ((t2 - t3) * 181 + 128) >> 8;
849
1.70M
    out[2 * out_s] =   ((t6 + t7) * 181 + 128) >> 8;
850
1.70M
    out[5 * out_s] = -(((t6 - t7) * 181 + 128) >> 8);
851
1.70M
}
852
853
static NOINLINE void
854
inv_adst16_1d_internal_c(const int32_t *const in, const ptrdiff_t in_s,
855
                         const int min, const int max,
856
                         int32_t *const out, const ptrdiff_t out_s)
857
1.95M
{
858
1.95M
    assert(in_s > 0 && out_s != 0);
859
1.95M
    const int in0  = in[ 0 * in_s], in1  = in[ 1 * in_s];
860
1.95M
    const int in2  = in[ 2 * in_s], in3  = in[ 3 * in_s];
861
1.95M
    const int in4  = in[ 4 * in_s], in5  = in[ 5 * in_s];
862
1.95M
    const int in6  = in[ 6 * in_s], in7  = in[ 7 * in_s];
863
1.95M
    const int in8  = in[ 8 * in_s], in9  = in[ 9 * in_s];
864
1.95M
    const int in10 = in[10 * in_s], in11 = in[11 * in_s];
865
1.95M
    const int in12 = in[12 * in_s], in13 = in[13 * in_s];
866
1.95M
    const int in14 = in[14 * in_s], in15 = in[15 * in_s];
867
868
1.95M
    int t0  = ((in15 * (4091 - 4096) + in0  *   201         + 2048) >> 12) + in15;
869
1.95M
    int t1  = ((in15 *   201         - in0  * (4091 - 4096) + 2048) >> 12) - in0;
870
1.95M
    int t2  = ((in13 * (3973 - 4096) + in2  *   995         + 2048) >> 12) + in13;
871
1.95M
    int t3  = ((in13 *   995         - in2  * (3973 - 4096) + 2048) >> 12) - in2;
872
1.95M
    int t4  = ((in11 * (3703 - 4096) + in4  *  1751         + 2048) >> 12) + in11;
873
1.95M
    int t5  = ((in11 *  1751         - in4  * (3703 - 4096) + 2048) >> 12) - in4;
874
1.95M
    int t6  =  (in9  *  1645         + in6  *  1220         + 1024) >> 11;
875
1.95M
    int t7  =  (in9  *  1220         - in6  *  1645         + 1024) >> 11;
876
1.95M
    int t8  = ((in7  *  2751         + in8  * (3035 - 4096) + 2048) >> 12) + in8;
877
1.95M
    int t9  = ((in7  * (3035 - 4096) - in8  *  2751         + 2048) >> 12) + in7;
878
1.95M
    int t10 = ((in5  *  2106         + in10 * (3513 - 4096) + 2048) >> 12) + in10;
879
1.95M
    int t11 = ((in5  * (3513 - 4096) - in10 *  2106         + 2048) >> 12) + in5;
880
1.95M
    int t12 = ((in3  *  1380         + in12 * (3857 - 4096) + 2048) >> 12) + in12;
881
1.95M
    int t13 = ((in3  * (3857 - 4096) - in12 *  1380         + 2048) >> 12) + in3;
882
1.95M
    int t14 = ((in1  *   601         + in14 * (4052 - 4096) + 2048) >> 12) + in14;
883
1.95M
    int t15 = ((in1  * (4052 - 4096) - in14 *   601         + 2048) >> 12) + in1;
884
885
1.95M
    int t0a  = CLIP(t0 + t8 );
886
1.95M
    int t1a  = CLIP(t1 + t9 );
887
1.95M
    int t2a  = CLIP(t2 + t10);
888
1.95M
    int t3a  = CLIP(t3 + t11);
889
1.95M
    int t4a  = CLIP(t4 + t12);
890
1.95M
    int t5a  = CLIP(t5 + t13);
891
1.95M
    int t6a  = CLIP(t6 + t14);
892
1.95M
    int t7a  = CLIP(t7 + t15);
893
1.95M
    int t8a  = CLIP(t0 - t8 );
894
1.95M
    int t9a  = CLIP(t1 - t9 );
895
1.95M
    int t10a = CLIP(t2 - t10);
896
1.95M
    int t11a = CLIP(t3 - t11);
897
1.95M
    int t12a = CLIP(t4 - t12);
898
1.95M
    int t13a = CLIP(t5 - t13);
899
1.95M
    int t14a = CLIP(t6 - t14);
900
1.95M
    int t15a = CLIP(t7 - t15);
901
902
1.95M
    t8   = ((t8a  * (4017 - 4096) + t9a  *   799         + 2048) >> 12) + t8a;
903
1.95M
    t9   = ((t8a  *   799         - t9a  * (4017 - 4096) + 2048) >> 12) - t9a;
904
1.95M
    t10  = ((t10a *  2276         + t11a * (3406 - 4096) + 2048) >> 12) + t11a;
905
1.95M
    t11  = ((t10a * (3406 - 4096) - t11a *  2276         + 2048) >> 12) + t10a;
906
1.95M
    t12  = ((t13a * (4017 - 4096) - t12a *   799         + 2048) >> 12) + t13a;
907
1.95M
    t13  = ((t13a *   799         + t12a * (4017 - 4096) + 2048) >> 12) + t12a;
908
1.95M
    t14  = ((t15a *  2276         - t14a * (3406 - 4096) + 2048) >> 12) - t14a;
909
1.95M
    t15  = ((t15a * (3406 - 4096) + t14a *  2276         + 2048) >> 12) + t15a;
910
911
1.95M
    t0   = CLIP(t0a + t4a);
912
1.95M
    t1   = CLIP(t1a + t5a);
913
1.95M
    t2   = CLIP(t2a + t6a);
914
1.95M
    t3   = CLIP(t3a + t7a);
915
1.95M
    t4   = CLIP(t0a - t4a);
916
1.95M
    t5   = CLIP(t1a - t5a);
917
1.95M
    t6   = CLIP(t2a - t6a);
918
1.95M
    t7   = CLIP(t3a - t7a);
919
1.95M
    t8a  = CLIP(t8  + t12);
920
1.95M
    t9a  = CLIP(t9  + t13);
921
1.95M
    t10a = CLIP(t10 + t14);
922
1.95M
    t11a = CLIP(t11 + t15);
923
1.95M
    t12a = CLIP(t8  - t12);
924
1.95M
    t13a = CLIP(t9  - t13);
925
1.95M
    t14a = CLIP(t10 - t14);
926
1.95M
    t15a = CLIP(t11 - t15);
927
928
1.95M
    t4a  = ((t4   * (3784 - 4096) + t5   *  1567         + 2048) >> 12) + t4;
929
1.95M
    t5a  = ((t4   *  1567         - t5   * (3784 - 4096) + 2048) >> 12) - t5;
930
1.95M
    t6a  = ((t7   * (3784 - 4096) - t6   *  1567         + 2048) >> 12) + t7;
931
1.95M
    t7a  = ((t7   *  1567         + t6   * (3784 - 4096) + 2048) >> 12) + t6;
932
1.95M
    t12  = ((t12a * (3784 - 4096) + t13a *  1567         + 2048) >> 12) + t12a;
933
1.95M
    t13  = ((t12a *  1567         - t13a * (3784 - 4096) + 2048) >> 12) - t13a;
934
1.95M
    t14  = ((t15a * (3784 - 4096) - t14a *  1567         + 2048) >> 12) + t15a;
935
1.95M
    t15  = ((t15a *  1567         + t14a * (3784 - 4096) + 2048) >> 12) + t14a;
936
937
1.95M
    out[ 0 * out_s] =  CLIP(t0  + t2  );
938
1.95M
    out[15 * out_s] = -CLIP(t1  + t3  );
939
1.95M
    t2a             =  CLIP(t0  - t2  );
940
1.95M
    t3a             =  CLIP(t1  - t3  );
941
1.95M
    out[ 3 * out_s] = -CLIP(t4a + t6a );
942
1.95M
    out[12 * out_s] =  CLIP(t5a + t7a );
943
1.95M
    t6              =  CLIP(t4a - t6a );
944
1.95M
    t7              =  CLIP(t5a - t7a );
945
1.95M
    out[ 1 * out_s] = -CLIP(t8a + t10a);
946
1.95M
    out[14 * out_s] =  CLIP(t9a + t11a);
947
1.95M
    t10             =  CLIP(t8a - t10a);
948
1.95M
    t11             =  CLIP(t9a - t11a);
949
1.95M
    out[ 2 * out_s] =  CLIP(t12 + t14 );
950
1.95M
    out[13 * out_s] = -CLIP(t13 + t15 );
951
1.95M
    t14a            =  CLIP(t12 - t14 );
952
1.95M
    t15a            =  CLIP(t13 - t15 );
953
954
1.95M
    out[ 7 * out_s] = -(((t2a  + t3a)  * 181 + 128) >> 8);
955
1.95M
    out[ 8 * out_s] =   ((t2a  - t3a)  * 181 + 128) >> 8;
956
1.95M
    out[ 4 * out_s] =   ((t6   + t7)   * 181 + 128) >> 8;
957
1.95M
    out[11 * out_s] = -(((t6   - t7)   * 181 + 128) >> 8);
958
1.95M
    out[ 6 * out_s] =   ((t10  + t11)  * 181 + 128) >> 8;
959
1.95M
    out[ 9 * out_s] = -(((t10  - t11)  * 181 + 128) >> 8);
960
1.95M
    out[ 5 * out_s] = -(((t14a + t15a) * 181 + 128) >> 8);
961
1.95M
    out[10 * out_s] =   ((t14a - t15a) * 181 + 128) >> 8;
962
1.95M
}
963
964
#define inv_adst_1d(sz) \
965
static void inv_adst##sz##_1d_c(int32_t *const c, const ptrdiff_t stride, \
966
4.32M
                                const int min, const int max) \
967
4.32M
{ \
968
4.32M
    inv_adst##sz##_1d_internal_c(c, stride, min, max, c, stride); \
969
4.32M
} \
itx_1d.c:inv_adst4_1d_c
Line
Count
Source
966
950k
                                const int min, const int max) \
967
950k
{ \
968
950k
    inv_adst##sz##_1d_internal_c(c, stride, min, max, c, stride); \
969
950k
} \
itx_1d.c:inv_adst8_1d_c
Line
Count
Source
966
1.51M
                                const int min, const int max) \
967
1.51M
{ \
968
1.51M
    inv_adst##sz##_1d_internal_c(c, stride, min, max, c, stride); \
969
1.51M
} \
itx_1d.c:inv_adst16_1d_c
Line
Count
Source
966
1.86M
                                const int min, const int max) \
967
1.86M
{ \
968
1.86M
    inv_adst##sz##_1d_internal_c(c, stride, min, max, c, stride); \
969
1.86M
} \
970
static void inv_flipadst##sz##_1d_c(int32_t *const c, const ptrdiff_t stride, \
971
383k
                                          const int min, const int max) \
972
383k
{ \
973
383k
    inv_adst##sz##_1d_internal_c(c, stride, min, max, \
974
383k
                                 &c[(sz - 1) * stride], -stride); \
975
383k
}
itx_1d.c:inv_flipadst4_1d_c
Line
Count
Source
971
98.9k
                                          const int min, const int max) \
972
98.9k
{ \
973
98.9k
    inv_adst##sz##_1d_internal_c(c, stride, min, max, \
974
98.9k
                                 &c[(sz - 1) * stride], -stride); \
975
98.9k
}
itx_1d.c:inv_flipadst8_1d_c
Line
Count
Source
971
190k
                                          const int min, const int max) \
972
190k
{ \
973
190k
    inv_adst##sz##_1d_internal_c(c, stride, min, max, \
974
190k
                                 &c[(sz - 1) * stride], -stride); \
975
190k
}
itx_1d.c:inv_flipadst16_1d_c
Line
Count
Source
971
94.1k
                                          const int min, const int max) \
972
94.1k
{ \
973
94.1k
    inv_adst##sz##_1d_internal_c(c, stride, min, max, \
974
94.1k
                                 &c[(sz - 1) * stride], -stride); \
975
94.1k
}
976
977
inv_adst_1d( 4)
978
inv_adst_1d( 8)
979
inv_adst_1d(16)
980
981
#undef inv_adst_1d
982
983
static void inv_identity4_1d_c(int32_t *const c, const ptrdiff_t stride,
984
                               const int min, const int max)
985
393k
{
986
393k
    assert(stride > 0);
987
1.96M
    for (int i = 0; i < 4; i++) {
988
1.57M
        const int in = c[stride * i];
989
1.57M
        c[stride * i] = in + ((in * 1697 + 2048) >> 12);
990
1.57M
    }
991
393k
}
992
993
static void inv_identity8_1d_c(int32_t *const c, const ptrdiff_t stride,
994
                               const int min, const int max)
995
566k
{
996
566k
    assert(stride > 0);
997
5.09M
    for (int i = 0; i < 8; i++)
998
4.52M
        c[stride * i] *= 2;
999
566k
}
1000
1001
static void inv_identity16_1d_c(int32_t *const c, const ptrdiff_t stride,
1002
                                const int min, const int max)
1003
262k
{
1004
262k
    assert(stride > 0);
1005
4.45M
    for (int i = 0; i < 16; i++) {
1006
4.19M
        const int in = c[stride * i];
1007
4.19M
        c[stride * i] = 2 * in + ((in * 1697 + 1024) >> 11);
1008
4.19M
    }
1009
262k
}
1010
1011
static void inv_identity32_1d_c(int32_t *const c, const ptrdiff_t stride,
1012
                                const int min, const int max)
1013
22.8k
{
1014
22.8k
    assert(stride > 0);
1015
753k
    for (int i = 0; i < 32; i++)
1016
731k
        c[stride * i] *= 4;
1017
22.8k
}
1018
1019
const itx_1d_fn dav1d_tx1d_fns[N_TX_SIZES][N_TX_1D_TYPES] = {
1020
    [TX_4X4] = {
1021
        [DCT] = inv_dct4_1d_c,
1022
        [ADST] = inv_adst4_1d_c,
1023
        [FLIPADST] = inv_flipadst4_1d_c,
1024
        [IDENTITY] = inv_identity4_1d_c,
1025
    }, [TX_8X8] = {
1026
        [DCT] = inv_dct8_1d_c,
1027
        [ADST] = inv_adst8_1d_c,
1028
        [FLIPADST] = inv_flipadst8_1d_c,
1029
        [IDENTITY] = inv_identity8_1d_c,
1030
    }, [TX_16X16] = {
1031
        [DCT] = inv_dct16_1d_c,
1032
        [ADST] = inv_adst16_1d_c,
1033
        [FLIPADST] = inv_flipadst16_1d_c,
1034
        [IDENTITY] = inv_identity16_1d_c,
1035
    }, [TX_32X32] = {
1036
        [DCT] = inv_dct32_1d_c,
1037
        [IDENTITY] = inv_identity32_1d_c,
1038
    }, [TX_64X64] = {
1039
        [DCT] = inv_dct64_1d_c,
1040
    },
1041
};
1042
1043
const uint8_t /* enum Tx1dType */ dav1d_tx1d_types[N_TX_TYPES][2] = {
1044
    [DCT_DCT]           = { DCT, DCT },
1045
    [ADST_DCT]          = { ADST, DCT },
1046
    [DCT_ADST]          = { DCT, ADST },
1047
    [ADST_ADST]         = { ADST, ADST },
1048
    [FLIPADST_DCT]      = { FLIPADST, DCT },
1049
    [DCT_FLIPADST]      = { DCT, FLIPADST },
1050
    [FLIPADST_FLIPADST] = { FLIPADST, FLIPADST },
1051
    [ADST_FLIPADST]     = { ADST, FLIPADST },
1052
    [FLIPADST_ADST]     = { FLIPADST, ADST },
1053
    [IDTX]              = { IDENTITY, IDENTITY },
1054
    [V_DCT]             = { DCT, IDENTITY },
1055
    [H_DCT]             = { IDENTITY, DCT },
1056
    [V_ADST]            = { ADST, IDENTITY },
1057
    [H_ADST]            = { IDENTITY, ADST },
1058
    [V_FLIPADST]        = { FLIPADST, IDENTITY },
1059
    [H_FLIPADST]        = { IDENTITY, FLIPADST },
1060
};
1061
1062
#if !(HAVE_ASM && TRIM_DSP_FUNCTIONS && ( \
1063
  ARCH_AARCH64 || \
1064
  (ARCH_ARM && (defined(__ARM_NEON) || defined(__APPLE__) || defined(_WIN32))) \
1065
))
1066
2.99M
void dav1d_inv_wht4_1d_c(int32_t *const c, const ptrdiff_t stride) {
1067
2.99M
    assert(stride > 0);
1068
2.99M
    const int in0 = c[0 * stride], in1 = c[1 * stride];
1069
2.99M
    const int in2 = c[2 * stride], in3 = c[3 * stride];
1070
1071
2.99M
    const int t0 = in0 + in1;
1072
2.99M
    const int t2 = in2 - in3;
1073
2.99M
    const int t4 = (t0 - t2) >> 1;
1074
2.99M
    const int t3 = t4 - in3;
1075
2.99M
    const int t1 = t4 - in1;
1076
1077
2.99M
    c[0 * stride] = t0 - t3;
1078
2.99M
    c[1 * stride] = t3;
1079
2.99M
    c[2 * stride] = t1;
1080
2.99M
    c[3 * stride] = t2 + t1;
1081
2.99M
}
1082
#endif