Coverage Report

Created: 2026-09-14 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libvpx/vp9/encoder/vp9_dct.c
Line
Count
Source
1
/*
2
 *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3
 *
4
 *  Use of this source code is governed by a BSD-style license
5
 *  that can be found in the LICENSE file in the root of the source
6
 *  tree. An additional intellectual property rights grant can be found
7
 *  in the file PATENTS.  All contributing project authors may
8
 *  be found in the AUTHORS file in the root of the source tree.
9
 */
10
11
#include <assert.h>
12
#include <math.h>
13
14
#include "./vp9_rtcd.h"
15
#include "./vpx_config.h"
16
#include "./vpx_dsp_rtcd.h"
17
18
#include "vp9/common/vp9_blockd.h"
19
#include "vp9/common/vp9_idct.h"
20
#include "vpx_dsp/fwd_txfm.h"
21
#include "vpx_ports/mem.h"
22
23
1.44M
static void fdct4(const tran_low_t *input, tran_low_t *output) {
24
1.44M
  tran_high_t step[4];
25
1.44M
  tran_high_t temp1, temp2;
26
27
1.44M
  step[0] = input[0] + input[3];
28
1.44M
  step[1] = input[1] + input[2];
29
1.44M
  step[2] = input[1] - input[2];
30
1.44M
  step[3] = input[0] - input[3];
31
32
1.44M
  temp1 = (step[0] + step[1]) * cospi_16_64;
33
1.44M
  temp2 = (step[0] - step[1]) * cospi_16_64;
34
1.44M
  output[0] = (tran_low_t)fdct_round_shift(temp1);
35
1.44M
  output[2] = (tran_low_t)fdct_round_shift(temp2);
36
1.44M
  temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64;
37
1.44M
  temp2 = -step[2] * cospi_8_64 + step[3] * cospi_24_64;
38
1.44M
  output[1] = (tran_low_t)fdct_round_shift(temp1);
39
1.44M
  output[3] = (tran_low_t)fdct_round_shift(temp2);
40
1.44M
}
41
42
1.09M
static void fdct8(const tran_low_t *input, tran_low_t *output) {
43
1.09M
  tran_high_t s0, s1, s2, s3, s4, s5, s6, s7;  // canbe16
44
1.09M
  tran_high_t t0, t1, t2, t3;                  // needs32
45
1.09M
  tran_high_t x0, x1, x2, x3;                  // canbe16
46
47
  // stage 1
48
1.09M
  s0 = input[0] + input[7];
49
1.09M
  s1 = input[1] + input[6];
50
1.09M
  s2 = input[2] + input[5];
51
1.09M
  s3 = input[3] + input[4];
52
1.09M
  s4 = input[3] - input[4];
53
1.09M
  s5 = input[2] - input[5];
54
1.09M
  s6 = input[1] - input[6];
55
1.09M
  s7 = input[0] - input[7];
56
57
  // fdct4(step, step);
58
1.09M
  x0 = s0 + s3;
59
1.09M
  x1 = s1 + s2;
60
1.09M
  x2 = s1 - s2;
61
1.09M
  x3 = s0 - s3;
62
1.09M
  t0 = (x0 + x1) * cospi_16_64;
63
1.09M
  t1 = (x0 - x1) * cospi_16_64;
64
1.09M
  t2 = x2 * cospi_24_64 + x3 * cospi_8_64;
65
1.09M
  t3 = -x2 * cospi_8_64 + x3 * cospi_24_64;
66
1.09M
  output[0] = (tran_low_t)fdct_round_shift(t0);
67
1.09M
  output[2] = (tran_low_t)fdct_round_shift(t2);
68
1.09M
  output[4] = (tran_low_t)fdct_round_shift(t1);
69
1.09M
  output[6] = (tran_low_t)fdct_round_shift(t3);
70
71
  // Stage 2
72
1.09M
  t0 = (s6 - s5) * cospi_16_64;
73
1.09M
  t1 = (s6 + s5) * cospi_16_64;
74
1.09M
  t2 = (tran_low_t)fdct_round_shift(t0);
75
1.09M
  t3 = (tran_low_t)fdct_round_shift(t1);
76
77
  // Stage 3
78
1.09M
  x0 = s4 + t2;
79
1.09M
  x1 = s4 - t2;
80
1.09M
  x2 = s7 - t3;
81
1.09M
  x3 = s7 + t3;
82
83
  // Stage 4
84
1.09M
  t0 = x0 * cospi_28_64 + x3 * cospi_4_64;
85
1.09M
  t1 = x1 * cospi_12_64 + x2 * cospi_20_64;
86
1.09M
  t2 = x2 * cospi_12_64 + x1 * -cospi_20_64;
87
1.09M
  t3 = x3 * cospi_28_64 + x0 * -cospi_4_64;
88
1.09M
  output[1] = (tran_low_t)fdct_round_shift(t0);
89
1.09M
  output[3] = (tran_low_t)fdct_round_shift(t2);
90
1.09M
  output[5] = (tran_low_t)fdct_round_shift(t1);
91
1.09M
  output[7] = (tran_low_t)fdct_round_shift(t3);
92
1.09M
}
93
94
675k
static void fdct16(const tran_low_t in[16], tran_low_t out[16]) {
95
675k
  tran_high_t step1[8];      // canbe16
96
675k
  tran_high_t step2[8];      // canbe16
97
675k
  tran_high_t step3[8];      // canbe16
98
675k
  tran_high_t input[8];      // canbe16
99
675k
  tran_high_t temp1, temp2;  // needs32
100
101
  // step 1
102
675k
  input[0] = in[0] + in[15];
103
675k
  input[1] = in[1] + in[14];
104
675k
  input[2] = in[2] + in[13];
105
675k
  input[3] = in[3] + in[12];
106
675k
  input[4] = in[4] + in[11];
107
675k
  input[5] = in[5] + in[10];
108
675k
  input[6] = in[6] + in[9];
109
675k
  input[7] = in[7] + in[8];
110
111
675k
  step1[0] = in[7] - in[8];
112
675k
  step1[1] = in[6] - in[9];
113
675k
  step1[2] = in[5] - in[10];
114
675k
  step1[3] = in[4] - in[11];
115
675k
  step1[4] = in[3] - in[12];
116
675k
  step1[5] = in[2] - in[13];
117
675k
  step1[6] = in[1] - in[14];
118
675k
  step1[7] = in[0] - in[15];
119
120
  // fdct8(step, step);
121
675k
  {
122
675k
    tran_high_t s0, s1, s2, s3, s4, s5, s6, s7;  // canbe16
123
675k
    tran_high_t t0, t1, t2, t3;                  // needs32
124
675k
    tran_high_t x0, x1, x2, x3;                  // canbe16
125
126
    // stage 1
127
675k
    s0 = input[0] + input[7];
128
675k
    s1 = input[1] + input[6];
129
675k
    s2 = input[2] + input[5];
130
675k
    s3 = input[3] + input[4];
131
675k
    s4 = input[3] - input[4];
132
675k
    s5 = input[2] - input[5];
133
675k
    s6 = input[1] - input[6];
134
675k
    s7 = input[0] - input[7];
135
136
    // fdct4(step, step);
137
675k
    x0 = s0 + s3;
138
675k
    x1 = s1 + s2;
139
675k
    x2 = s1 - s2;
140
675k
    x3 = s0 - s3;
141
675k
    t0 = (x0 + x1) * cospi_16_64;
142
675k
    t1 = (x0 - x1) * cospi_16_64;
143
675k
    t2 = x3 * cospi_8_64 + x2 * cospi_24_64;
144
675k
    t3 = x3 * cospi_24_64 - x2 * cospi_8_64;
145
675k
    out[0] = (tran_low_t)fdct_round_shift(t0);
146
675k
    out[4] = (tran_low_t)fdct_round_shift(t2);
147
675k
    out[8] = (tran_low_t)fdct_round_shift(t1);
148
675k
    out[12] = (tran_low_t)fdct_round_shift(t3);
149
150
    // Stage 2
151
675k
    t0 = (s6 - s5) * cospi_16_64;
152
675k
    t1 = (s6 + s5) * cospi_16_64;
153
675k
    t2 = fdct_round_shift(t0);
154
675k
    t3 = fdct_round_shift(t1);
155
156
    // Stage 3
157
675k
    x0 = s4 + t2;
158
675k
    x1 = s4 - t2;
159
675k
    x2 = s7 - t3;
160
675k
    x3 = s7 + t3;
161
162
    // Stage 4
163
675k
    t0 = x0 * cospi_28_64 + x3 * cospi_4_64;
164
675k
    t1 = x1 * cospi_12_64 + x2 * cospi_20_64;
165
675k
    t2 = x2 * cospi_12_64 + x1 * -cospi_20_64;
166
675k
    t3 = x3 * cospi_28_64 + x0 * -cospi_4_64;
167
675k
    out[2] = (tran_low_t)fdct_round_shift(t0);
168
675k
    out[6] = (tran_low_t)fdct_round_shift(t2);
169
675k
    out[10] = (tran_low_t)fdct_round_shift(t1);
170
675k
    out[14] = (tran_low_t)fdct_round_shift(t3);
171
675k
  }
172
173
  // step 2
174
675k
  temp1 = (step1[5] - step1[2]) * cospi_16_64;
175
675k
  temp2 = (step1[4] - step1[3]) * cospi_16_64;
176
675k
  step2[2] = fdct_round_shift(temp1);
177
675k
  step2[3] = fdct_round_shift(temp2);
178
675k
  temp1 = (step1[4] + step1[3]) * cospi_16_64;
179
675k
  temp2 = (step1[5] + step1[2]) * cospi_16_64;
180
675k
  step2[4] = fdct_round_shift(temp1);
181
675k
  step2[5] = fdct_round_shift(temp2);
182
183
  // step 3
184
675k
  step3[0] = step1[0] + step2[3];
185
675k
  step3[1] = step1[1] + step2[2];
186
675k
  step3[2] = step1[1] - step2[2];
187
675k
  step3[3] = step1[0] - step2[3];
188
675k
  step3[4] = step1[7] - step2[4];
189
675k
  step3[5] = step1[6] - step2[5];
190
675k
  step3[6] = step1[6] + step2[5];
191
675k
  step3[7] = step1[7] + step2[4];
192
193
  // step 4
194
675k
  temp1 = step3[1] * -cospi_8_64 + step3[6] * cospi_24_64;
195
675k
  temp2 = step3[2] * cospi_24_64 + step3[5] * cospi_8_64;
196
675k
  step2[1] = fdct_round_shift(temp1);
197
675k
  step2[2] = fdct_round_shift(temp2);
198
675k
  temp1 = step3[2] * cospi_8_64 - step3[5] * cospi_24_64;
199
675k
  temp2 = step3[1] * cospi_24_64 + step3[6] * cospi_8_64;
200
675k
  step2[5] = fdct_round_shift(temp1);
201
675k
  step2[6] = fdct_round_shift(temp2);
202
203
  // step 5
204
675k
  step1[0] = step3[0] + step2[1];
205
675k
  step1[1] = step3[0] - step2[1];
206
675k
  step1[2] = step3[3] + step2[2];
207
675k
  step1[3] = step3[3] - step2[2];
208
675k
  step1[4] = step3[4] - step2[5];
209
675k
  step1[5] = step3[4] + step2[5];
210
675k
  step1[6] = step3[7] - step2[6];
211
675k
  step1[7] = step3[7] + step2[6];
212
213
  // step 6
214
675k
  temp1 = step1[0] * cospi_30_64 + step1[7] * cospi_2_64;
215
675k
  temp2 = step1[1] * cospi_14_64 + step1[6] * cospi_18_64;
216
675k
  out[1] = (tran_low_t)fdct_round_shift(temp1);
217
675k
  out[9] = (tran_low_t)fdct_round_shift(temp2);
218
219
675k
  temp1 = step1[2] * cospi_22_64 + step1[5] * cospi_10_64;
220
675k
  temp2 = step1[3] * cospi_6_64 + step1[4] * cospi_26_64;
221
675k
  out[5] = (tran_low_t)fdct_round_shift(temp1);
222
675k
  out[13] = (tran_low_t)fdct_round_shift(temp2);
223
224
675k
  temp1 = step1[3] * -cospi_26_64 + step1[4] * cospi_6_64;
225
675k
  temp2 = step1[2] * -cospi_10_64 + step1[5] * cospi_22_64;
226
675k
  out[3] = (tran_low_t)fdct_round_shift(temp1);
227
675k
  out[11] = (tran_low_t)fdct_round_shift(temp2);
228
229
675k
  temp1 = step1[1] * -cospi_18_64 + step1[6] * cospi_14_64;
230
675k
  temp2 = step1[0] * -cospi_2_64 + step1[7] * cospi_30_64;
231
675k
  out[7] = (tran_low_t)fdct_round_shift(temp1);
232
675k
  out[15] = (tran_low_t)fdct_round_shift(temp2);
233
675k
}
234
235
2.38M
static void fadst4(const tran_low_t *input, tran_low_t *output) {
236
2.38M
  tran_high_t x0, x1, x2, x3;
237
2.38M
  tran_high_t s0, s1, s2, s3, s4, s5, s6, s7;
238
239
2.38M
  x0 = input[0];
240
2.38M
  x1 = input[1];
241
2.38M
  x2 = input[2];
242
2.38M
  x3 = input[3];
243
244
2.38M
  if (!(x0 | x1 | x2 | x3)) {
245
462k
    output[0] = output[1] = output[2] = output[3] = 0;
246
462k
    return;
247
462k
  }
248
249
1.92M
  s0 = sinpi_1_9 * x0;
250
1.92M
  s1 = sinpi_4_9 * x0;
251
1.92M
  s2 = sinpi_2_9 * x1;
252
1.92M
  s3 = sinpi_1_9 * x1;
253
1.92M
  s4 = sinpi_3_9 * x2;
254
1.92M
  s5 = sinpi_4_9 * x3;
255
1.92M
  s6 = sinpi_2_9 * x3;
256
1.92M
  s7 = x0 + x1 - x3;
257
258
1.92M
  x0 = s0 + s2 + s5;
259
1.92M
  x1 = sinpi_3_9 * s7;
260
1.92M
  x2 = s1 - s3 + s6;
261
1.92M
  x3 = s4;
262
263
1.92M
  s0 = x0 + x3;
264
1.92M
  s1 = x1;
265
1.92M
  s2 = x2 - x3;
266
1.92M
  s3 = x2 - x0 + x3;
267
268
  // 1-D transform scaling factor is sqrt(2).
269
1.92M
  output[0] = (tran_low_t)fdct_round_shift(s0);
270
1.92M
  output[1] = (tran_low_t)fdct_round_shift(s1);
271
1.92M
  output[2] = (tran_low_t)fdct_round_shift(s2);
272
1.92M
  output[3] = (tran_low_t)fdct_round_shift(s3);
273
1.92M
}
274
275
1.88M
static void fadst8(const tran_low_t *input, tran_low_t *output) {
276
1.88M
  tran_high_t s0, s1, s2, s3, s4, s5, s6, s7;
277
278
1.88M
  tran_high_t x0 = input[7];
279
1.88M
  tran_high_t x1 = input[0];
280
1.88M
  tran_high_t x2 = input[5];
281
1.88M
  tran_high_t x3 = input[2];
282
1.88M
  tran_high_t x4 = input[3];
283
1.88M
  tran_high_t x5 = input[4];
284
1.88M
  tran_high_t x6 = input[1];
285
1.88M
  tran_high_t x7 = input[6];
286
287
  // stage 1
288
1.88M
  s0 = cospi_2_64 * x0 + cospi_30_64 * x1;
289
1.88M
  s1 = cospi_30_64 * x0 - cospi_2_64 * x1;
290
1.88M
  s2 = cospi_10_64 * x2 + cospi_22_64 * x3;
291
1.88M
  s3 = cospi_22_64 * x2 - cospi_10_64 * x3;
292
1.88M
  s4 = cospi_18_64 * x4 + cospi_14_64 * x5;
293
1.88M
  s5 = cospi_14_64 * x4 - cospi_18_64 * x5;
294
1.88M
  s6 = cospi_26_64 * x6 + cospi_6_64 * x7;
295
1.88M
  s7 = cospi_6_64 * x6 - cospi_26_64 * x7;
296
297
1.88M
  x0 = fdct_round_shift(s0 + s4);
298
1.88M
  x1 = fdct_round_shift(s1 + s5);
299
1.88M
  x2 = fdct_round_shift(s2 + s6);
300
1.88M
  x3 = fdct_round_shift(s3 + s7);
301
1.88M
  x4 = fdct_round_shift(s0 - s4);
302
1.88M
  x5 = fdct_round_shift(s1 - s5);
303
1.88M
  x6 = fdct_round_shift(s2 - s6);
304
1.88M
  x7 = fdct_round_shift(s3 - s7);
305
306
  // stage 2
307
1.88M
  s0 = x0;
308
1.88M
  s1 = x1;
309
1.88M
  s2 = x2;
310
1.88M
  s3 = x3;
311
1.88M
  s4 = cospi_8_64 * x4 + cospi_24_64 * x5;
312
1.88M
  s5 = cospi_24_64 * x4 - cospi_8_64 * x5;
313
1.88M
  s6 = -cospi_24_64 * x6 + cospi_8_64 * x7;
314
1.88M
  s7 = cospi_8_64 * x6 + cospi_24_64 * x7;
315
316
1.88M
  x0 = s0 + s2;
317
1.88M
  x1 = s1 + s3;
318
1.88M
  x2 = s0 - s2;
319
1.88M
  x3 = s1 - s3;
320
1.88M
  x4 = fdct_round_shift(s4 + s6);
321
1.88M
  x5 = fdct_round_shift(s5 + s7);
322
1.88M
  x6 = fdct_round_shift(s4 - s6);
323
1.88M
  x7 = fdct_round_shift(s5 - s7);
324
325
  // stage 3
326
1.88M
  s2 = cospi_16_64 * (x2 + x3);
327
1.88M
  s3 = cospi_16_64 * (x2 - x3);
328
1.88M
  s6 = cospi_16_64 * (x6 + x7);
329
1.88M
  s7 = cospi_16_64 * (x6 - x7);
330
331
1.88M
  x2 = fdct_round_shift(s2);
332
1.88M
  x3 = fdct_round_shift(s3);
333
1.88M
  x6 = fdct_round_shift(s6);
334
1.88M
  x7 = fdct_round_shift(s7);
335
336
1.88M
  output[0] = (tran_low_t)x0;
337
1.88M
  output[1] = (tran_low_t)-x4;
338
1.88M
  output[2] = (tran_low_t)x6;
339
1.88M
  output[3] = (tran_low_t)-x2;
340
1.88M
  output[4] = (tran_low_t)x3;
341
1.88M
  output[5] = (tran_low_t)-x7;
342
1.88M
  output[6] = (tran_low_t)x5;
343
1.88M
  output[7] = (tran_low_t)-x1;
344
1.88M
}
345
346
1.14M
static void fadst16(const tran_low_t *input, tran_low_t *output) {
347
1.14M
  tran_high_t s0, s1, s2, s3, s4, s5, s6, s7, s8;
348
1.14M
  tran_high_t s9, s10, s11, s12, s13, s14, s15;
349
350
1.14M
  tran_high_t x0 = input[15];
351
1.14M
  tran_high_t x1 = input[0];
352
1.14M
  tran_high_t x2 = input[13];
353
1.14M
  tran_high_t x3 = input[2];
354
1.14M
  tran_high_t x4 = input[11];
355
1.14M
  tran_high_t x5 = input[4];
356
1.14M
  tran_high_t x6 = input[9];
357
1.14M
  tran_high_t x7 = input[6];
358
1.14M
  tran_high_t x8 = input[7];
359
1.14M
  tran_high_t x9 = input[8];
360
1.14M
  tran_high_t x10 = input[5];
361
1.14M
  tran_high_t x11 = input[10];
362
1.14M
  tran_high_t x12 = input[3];
363
1.14M
  tran_high_t x13 = input[12];
364
1.14M
  tran_high_t x14 = input[1];
365
1.14M
  tran_high_t x15 = input[14];
366
367
  // stage 1
368
1.14M
  s0 = x0 * cospi_1_64 + x1 * cospi_31_64;
369
1.14M
  s1 = x0 * cospi_31_64 - x1 * cospi_1_64;
370
1.14M
  s2 = x2 * cospi_5_64 + x3 * cospi_27_64;
371
1.14M
  s3 = x2 * cospi_27_64 - x3 * cospi_5_64;
372
1.14M
  s4 = x4 * cospi_9_64 + x5 * cospi_23_64;
373
1.14M
  s5 = x4 * cospi_23_64 - x5 * cospi_9_64;
374
1.14M
  s6 = x6 * cospi_13_64 + x7 * cospi_19_64;
375
1.14M
  s7 = x6 * cospi_19_64 - x7 * cospi_13_64;
376
1.14M
  s8 = x8 * cospi_17_64 + x9 * cospi_15_64;
377
1.14M
  s9 = x8 * cospi_15_64 - x9 * cospi_17_64;
378
1.14M
  s10 = x10 * cospi_21_64 + x11 * cospi_11_64;
379
1.14M
  s11 = x10 * cospi_11_64 - x11 * cospi_21_64;
380
1.14M
  s12 = x12 * cospi_25_64 + x13 * cospi_7_64;
381
1.14M
  s13 = x12 * cospi_7_64 - x13 * cospi_25_64;
382
1.14M
  s14 = x14 * cospi_29_64 + x15 * cospi_3_64;
383
1.14M
  s15 = x14 * cospi_3_64 - x15 * cospi_29_64;
384
385
1.14M
  x0 = fdct_round_shift(s0 + s8);
386
1.14M
  x1 = fdct_round_shift(s1 + s9);
387
1.14M
  x2 = fdct_round_shift(s2 + s10);
388
1.14M
  x3 = fdct_round_shift(s3 + s11);
389
1.14M
  x4 = fdct_round_shift(s4 + s12);
390
1.14M
  x5 = fdct_round_shift(s5 + s13);
391
1.14M
  x6 = fdct_round_shift(s6 + s14);
392
1.14M
  x7 = fdct_round_shift(s7 + s15);
393
1.14M
  x8 = fdct_round_shift(s0 - s8);
394
1.14M
  x9 = fdct_round_shift(s1 - s9);
395
1.14M
  x10 = fdct_round_shift(s2 - s10);
396
1.14M
  x11 = fdct_round_shift(s3 - s11);
397
1.14M
  x12 = fdct_round_shift(s4 - s12);
398
1.14M
  x13 = fdct_round_shift(s5 - s13);
399
1.14M
  x14 = fdct_round_shift(s6 - s14);
400
1.14M
  x15 = fdct_round_shift(s7 - s15);
401
402
  // stage 2
403
1.14M
  s0 = x0;
404
1.14M
  s1 = x1;
405
1.14M
  s2 = x2;
406
1.14M
  s3 = x3;
407
1.14M
  s4 = x4;
408
1.14M
  s5 = x5;
409
1.14M
  s6 = x6;
410
1.14M
  s7 = x7;
411
1.14M
  s8 = x8 * cospi_4_64 + x9 * cospi_28_64;
412
1.14M
  s9 = x8 * cospi_28_64 - x9 * cospi_4_64;
413
1.14M
  s10 = x10 * cospi_20_64 + x11 * cospi_12_64;
414
1.14M
  s11 = x10 * cospi_12_64 - x11 * cospi_20_64;
415
1.14M
  s12 = -x12 * cospi_28_64 + x13 * cospi_4_64;
416
1.14M
  s13 = x12 * cospi_4_64 + x13 * cospi_28_64;
417
1.14M
  s14 = -x14 * cospi_12_64 + x15 * cospi_20_64;
418
1.14M
  s15 = x14 * cospi_20_64 + x15 * cospi_12_64;
419
420
1.14M
  x0 = s0 + s4;
421
1.14M
  x1 = s1 + s5;
422
1.14M
  x2 = s2 + s6;
423
1.14M
  x3 = s3 + s7;
424
1.14M
  x4 = s0 - s4;
425
1.14M
  x5 = s1 - s5;
426
1.14M
  x6 = s2 - s6;
427
1.14M
  x7 = s3 - s7;
428
1.14M
  x8 = fdct_round_shift(s8 + s12);
429
1.14M
  x9 = fdct_round_shift(s9 + s13);
430
1.14M
  x10 = fdct_round_shift(s10 + s14);
431
1.14M
  x11 = fdct_round_shift(s11 + s15);
432
1.14M
  x12 = fdct_round_shift(s8 - s12);
433
1.14M
  x13 = fdct_round_shift(s9 - s13);
434
1.14M
  x14 = fdct_round_shift(s10 - s14);
435
1.14M
  x15 = fdct_round_shift(s11 - s15);
436
437
  // stage 3
438
1.14M
  s0 = x0;
439
1.14M
  s1 = x1;
440
1.14M
  s2 = x2;
441
1.14M
  s3 = x3;
442
1.14M
  s4 = x4 * cospi_8_64 + x5 * cospi_24_64;
443
1.14M
  s5 = x4 * cospi_24_64 - x5 * cospi_8_64;
444
1.14M
  s6 = -x6 * cospi_24_64 + x7 * cospi_8_64;
445
1.14M
  s7 = x6 * cospi_8_64 + x7 * cospi_24_64;
446
1.14M
  s8 = x8;
447
1.14M
  s9 = x9;
448
1.14M
  s10 = x10;
449
1.14M
  s11 = x11;
450
1.14M
  s12 = x12 * cospi_8_64 + x13 * cospi_24_64;
451
1.14M
  s13 = x12 * cospi_24_64 - x13 * cospi_8_64;
452
1.14M
  s14 = -x14 * cospi_24_64 + x15 * cospi_8_64;
453
1.14M
  s15 = x14 * cospi_8_64 + x15 * cospi_24_64;
454
455
1.14M
  x0 = s0 + s2;
456
1.14M
  x1 = s1 + s3;
457
1.14M
  x2 = s0 - s2;
458
1.14M
  x3 = s1 - s3;
459
1.14M
  x4 = fdct_round_shift(s4 + s6);
460
1.14M
  x5 = fdct_round_shift(s5 + s7);
461
1.14M
  x6 = fdct_round_shift(s4 - s6);
462
1.14M
  x7 = fdct_round_shift(s5 - s7);
463
1.14M
  x8 = s8 + s10;
464
1.14M
  x9 = s9 + s11;
465
1.14M
  x10 = s8 - s10;
466
1.14M
  x11 = s9 - s11;
467
1.14M
  x12 = fdct_round_shift(s12 + s14);
468
1.14M
  x13 = fdct_round_shift(s13 + s15);
469
1.14M
  x14 = fdct_round_shift(s12 - s14);
470
1.14M
  x15 = fdct_round_shift(s13 - s15);
471
472
  // stage 4
473
1.14M
  s2 = (-cospi_16_64) * (x2 + x3);
474
1.14M
  s3 = cospi_16_64 * (x2 - x3);
475
1.14M
  s6 = cospi_16_64 * (x6 + x7);
476
1.14M
  s7 = cospi_16_64 * (-x6 + x7);
477
1.14M
  s10 = cospi_16_64 * (x10 + x11);
478
1.14M
  s11 = cospi_16_64 * (-x10 + x11);
479
1.14M
  s14 = (-cospi_16_64) * (x14 + x15);
480
1.14M
  s15 = cospi_16_64 * (x14 - x15);
481
482
1.14M
  x2 = fdct_round_shift(s2);
483
1.14M
  x3 = fdct_round_shift(s3);
484
1.14M
  x6 = fdct_round_shift(s6);
485
1.14M
  x7 = fdct_round_shift(s7);
486
1.14M
  x10 = fdct_round_shift(s10);
487
1.14M
  x11 = fdct_round_shift(s11);
488
1.14M
  x14 = fdct_round_shift(s14);
489
1.14M
  x15 = fdct_round_shift(s15);
490
491
1.14M
  output[0] = (tran_low_t)x0;
492
1.14M
  output[1] = (tran_low_t)-x8;
493
1.14M
  output[2] = (tran_low_t)x12;
494
1.14M
  output[3] = (tran_low_t)-x4;
495
1.14M
  output[4] = (tran_low_t)x6;
496
1.14M
  output[5] = (tran_low_t)x14;
497
1.14M
  output[6] = (tran_low_t)x10;
498
1.14M
  output[7] = (tran_low_t)x2;
499
1.14M
  output[8] = (tran_low_t)x3;
500
1.14M
  output[9] = (tran_low_t)x11;
501
1.14M
  output[10] = (tran_low_t)x15;
502
1.14M
  output[11] = (tran_low_t)x7;
503
1.14M
  output[12] = (tran_low_t)x5;
504
1.14M
  output[13] = (tran_low_t)-x13;
505
1.14M
  output[14] = (tran_low_t)x9;
506
1.14M
  output[15] = (tran_low_t)-x1;
507
1.14M
}
508
509
static const transform_2d FHT_4[] = {
510
  { fdct4, fdct4 },   // DCT_DCT  = 0
511
  { fadst4, fdct4 },  // ADST_DCT = 1
512
  { fdct4, fadst4 },  // DCT_ADST = 2
513
  { fadst4, fadst4 }  // ADST_ADST = 3
514
};
515
516
static const transform_2d FHT_8[] = {
517
  { fdct8, fdct8 },   // DCT_DCT  = 0
518
  { fadst8, fdct8 },  // ADST_DCT = 1
519
  { fdct8, fadst8 },  // DCT_ADST = 2
520
  { fadst8, fadst8 }  // ADST_ADST = 3
521
};
522
523
static const transform_2d FHT_16[] = {
524
  { fdct16, fdct16 },   // DCT_DCT  = 0
525
  { fadst16, fdct16 },  // ADST_DCT = 1
526
  { fdct16, fadst16 },  // DCT_ADST = 2
527
  { fadst16, fadst16 }  // ADST_ADST = 3
528
};
529
530
void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride,
531
478k
                  int tx_type) {
532
478k
  if (tx_type == DCT_DCT) {
533
0
    vpx_fdct4x4_c(input, output, stride);
534
478k
  } else {
535
478k
    tran_low_t out[4 * 4];
536
478k
    int i, j;
537
478k
    tran_low_t temp_in[4], temp_out[4];
538
478k
    const transform_2d ht = FHT_4[tx_type];
539
540
    // Columns
541
2.39M
    for (i = 0; i < 4; ++i) {
542
9.57M
      for (j = 0; j < 4; ++j) temp_in[j] = input[j * stride + i] * 16;
543
1.91M
      if (i == 0 && temp_in[0]) temp_in[0] += 1;
544
1.91M
      ht.cols(temp_in, temp_out);
545
9.57M
      for (j = 0; j < 4; ++j) out[j * 4 + i] = temp_out[j];
546
1.91M
    }
547
548
    // Rows
549
2.39M
    for (i = 0; i < 4; ++i) {
550
9.57M
      for (j = 0; j < 4; ++j) temp_in[j] = out[j + i * 4];
551
1.91M
      ht.rows(temp_in, temp_out);
552
9.57M
      for (j = 0; j < 4; ++j) output[j + i * 4] = (temp_out[j] + 1) >> 2;
553
1.91M
    }
554
478k
  }
555
478k
}
556
557
void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride,
558
186k
                  int tx_type) {
559
186k
  if (tx_type == DCT_DCT) {
560
0
    vpx_fdct8x8_c(input, output, stride);
561
186k
  } else {
562
186k
    tran_low_t out[64];
563
186k
    int i, j;
564
186k
    tran_low_t temp_in[8], temp_out[8];
565
186k
    const transform_2d ht = FHT_8[tx_type];
566
567
    // Columns
568
1.67M
    for (i = 0; i < 8; ++i) {
569
13.4M
      for (j = 0; j < 8; ++j) temp_in[j] = input[j * stride + i] * 4;
570
1.48M
      ht.cols(temp_in, temp_out);
571
13.4M
      for (j = 0; j < 8; ++j) out[j * 8 + i] = temp_out[j];
572
1.48M
    }
573
574
    // Rows
575
1.67M
    for (i = 0; i < 8; ++i) {
576
13.4M
      for (j = 0; j < 8; ++j) temp_in[j] = out[j + i * 8];
577
1.48M
      ht.rows(temp_in, temp_out);
578
13.4M
      for (j = 0; j < 8; ++j)
579
11.9M
        output[j + i * 8] = (temp_out[j] + (temp_out[j] < 0)) >> 1;
580
1.48M
    }
581
186k
  }
582
186k
}
583
584
/* 4-point reversible, orthonormal Walsh-Hadamard in 3.5 adds, 0.5 shifts per
585
   pixel. */
586
12.4k
void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride) {
587
12.4k
  int i;
588
12.4k
  tran_high_t a1, b1, c1, d1, e1;
589
12.4k
  const int16_t *ip_pass0 = input;
590
12.4k
  const tran_low_t *ip = NULL;
591
12.4k
  tran_low_t *op = output;
592
593
62.1k
  for (i = 0; i < 4; i++) {
594
49.7k
    a1 = ip_pass0[0 * stride];
595
49.7k
    b1 = ip_pass0[1 * stride];
596
49.7k
    c1 = ip_pass0[2 * stride];
597
49.7k
    d1 = ip_pass0[3 * stride];
598
599
49.7k
    a1 += b1;
600
49.7k
    d1 = d1 - c1;
601
49.7k
    e1 = (a1 - d1) >> 1;
602
49.7k
    b1 = e1 - b1;
603
49.7k
    c1 = e1 - c1;
604
49.7k
    a1 -= c1;
605
49.7k
    d1 += b1;
606
49.7k
    op[0] = (tran_low_t)a1;
607
49.7k
    op[4] = (tran_low_t)c1;
608
49.7k
    op[8] = (tran_low_t)d1;
609
49.7k
    op[12] = (tran_low_t)b1;
610
611
49.7k
    ip_pass0++;
612
49.7k
    op++;
613
49.7k
  }
614
12.4k
  ip = output;
615
12.4k
  op = output;
616
617
62.1k
  for (i = 0; i < 4; i++) {
618
49.7k
    a1 = ip[0];
619
49.7k
    b1 = ip[1];
620
49.7k
    c1 = ip[2];
621
49.7k
    d1 = ip[3];
622
623
49.7k
    a1 += b1;
624
49.7k
    d1 -= c1;
625
49.7k
    e1 = (a1 - d1) >> 1;
626
49.7k
    b1 = e1 - b1;
627
49.7k
    c1 = e1 - c1;
628
49.7k
    a1 -= c1;
629
49.7k
    d1 += b1;
630
49.7k
    op[0] = (tran_low_t)(a1 * UNIT_QUANT_FACTOR);
631
49.7k
    op[1] = (tran_low_t)(c1 * UNIT_QUANT_FACTOR);
632
49.7k
    op[2] = (tran_low_t)(d1 * UNIT_QUANT_FACTOR);
633
49.7k
    op[3] = (tran_low_t)(b1 * UNIT_QUANT_FACTOR);
634
635
49.7k
    ip += 4;
636
49.7k
    op += 4;
637
49.7k
  }
638
12.4k
}
639
640
void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride,
641
56.7k
                    int tx_type) {
642
56.7k
  if (tx_type == DCT_DCT) {
643
0
    vpx_fdct16x16_c(input, output, stride);
644
56.7k
  } else {
645
56.7k
    tran_low_t out[256];
646
56.7k
    int i, j;
647
56.7k
    tran_low_t temp_in[16], temp_out[16];
648
56.7k
    const transform_2d ht = FHT_16[tx_type];
649
650
    // Columns
651
965k
    for (i = 0; i < 16; ++i) {
652
15.4M
      for (j = 0; j < 16; ++j) temp_in[j] = input[j * stride + i] * 4;
653
908k
      ht.cols(temp_in, temp_out);
654
15.4M
      for (j = 0; j < 16; ++j)
655
14.5M
        out[j * 16 + i] = (temp_out[j] + 1 + (temp_out[j] < 0)) >> 2;
656
908k
    }
657
658
    // Rows
659
965k
    for (i = 0; i < 16; ++i) {
660
15.4M
      for (j = 0; j < 16; ++j) temp_in[j] = out[j + i * 16];
661
908k
      ht.rows(temp_in, temp_out);
662
15.4M
      for (j = 0; j < 16; ++j) output[j + i * 16] = temp_out[j];
663
908k
    }
664
56.7k
  }
665
56.7k
}
666
667
#if CONFIG_VP9_HIGHBITDEPTH
668
void vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride,
669
478k
                         int tx_type) {
670
478k
  vp9_fht4x4_c(input, output, stride, tx_type);
671
478k
}
672
673
void vp9_highbd_fht8x8_c(const int16_t *input, tran_low_t *output, int stride,
674
186k
                         int tx_type) {
675
186k
  vp9_fht8x8_c(input, output, stride, tx_type);
676
186k
}
677
678
void vp9_highbd_fwht4x4_c(const int16_t *input, tran_low_t *output,
679
12.4k
                          int stride) {
680
12.4k
  vp9_fwht4x4_c(input, output, stride);
681
12.4k
}
682
683
void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride,
684
56.7k
                           int tx_type) {
685
56.7k
  vp9_fht16x16_c(input, output, stride, tx_type);
686
56.7k
}
687
#endif  // CONFIG_VP9_HIGHBITDEPTH