Coverage Report

Created: 2026-09-14 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libvpx/vpx_dsp/fwd_txfm.c
Line
Count
Source
1
/*
2
 *  Copyright (c) 2015 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 "./vpx_dsp_rtcd.h"
13
#include "vpx_dsp/fwd_txfm.h"
14
15
245k
void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) {
16
  // The 2D transform is done with two passes which are actually pretty
17
  // similar. In the first one, we transform the columns and transpose
18
  // the results. In the second one, we transform the rows. To achieve that,
19
  // as the first pass results are transposed, we transpose the columns (that
20
  // is the transposed rows) and transpose the results (so that it goes back
21
  // in normal/row positions).
22
245k
  int pass;
23
  // We need an intermediate buffer between passes.
24
245k
  tran_low_t intermediate[4 * 4];
25
245k
  const tran_low_t *in_low = NULL;
26
245k
  tran_low_t *out = intermediate;
27
  // Do the two transform/transpose passes
28
736k
  for (pass = 0; pass < 2; ++pass) {
29
491k
    tran_high_t in_high[4];    // canbe16
30
491k
    tran_high_t step[4];       // canbe16
31
491k
    tran_high_t temp1, temp2;  // needs32
32
491k
    int i;
33
2.45M
    for (i = 0; i < 4; ++i) {
34
      // Load inputs.
35
1.96M
      if (pass == 0) {
36
982k
        in_high[0] = input[0 * stride] * 16;
37
982k
        in_high[1] = input[1 * stride] * 16;
38
982k
        in_high[2] = input[2 * stride] * 16;
39
982k
        in_high[3] = input[3 * stride] * 16;
40
982k
        if (i == 0 && in_high[0]) {
41
232k
          ++in_high[0];
42
232k
        }
43
982k
      } else {
44
982k
        assert(in_low != NULL);
45
982k
        in_high[0] = in_low[0 * 4];
46
982k
        in_high[1] = in_low[1 * 4];
47
982k
        in_high[2] = in_low[2 * 4];
48
982k
        in_high[3] = in_low[3 * 4];
49
982k
        ++in_low;
50
982k
      }
51
      // Transform.
52
1.96M
      step[0] = in_high[0] + in_high[3];
53
1.96M
      step[1] = in_high[1] + in_high[2];
54
1.96M
      step[2] = in_high[1] - in_high[2];
55
1.96M
      step[3] = in_high[0] - in_high[3];
56
1.96M
      temp1 = (step[0] + step[1]) * cospi_16_64;
57
1.96M
      temp2 = (step[0] - step[1]) * cospi_16_64;
58
1.96M
      out[0] = (tran_low_t)fdct_round_shift(temp1);
59
1.96M
      out[2] = (tran_low_t)fdct_round_shift(temp2);
60
1.96M
      temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64;
61
1.96M
      temp2 = -step[2] * cospi_8_64 + step[3] * cospi_24_64;
62
1.96M
      out[1] = (tran_low_t)fdct_round_shift(temp1);
63
1.96M
      out[3] = (tran_low_t)fdct_round_shift(temp2);
64
      // Do next column (which is a transposed row in second/horizontal pass)
65
1.96M
      ++input;
66
1.96M
      out += 4;
67
1.96M
    }
68
    // Setup in/out for next pass.
69
491k
    in_low = intermediate;
70
491k
    out = output;
71
491k
  }
72
73
245k
  {
74
245k
    int i, j;
75
1.22M
    for (i = 0; i < 4; ++i) {
76
4.91M
      for (j = 0; j < 4; ++j) output[j + i * 4] = (output[j + i * 4] + 1) >> 2;
77
982k
    }
78
245k
  }
79
245k
}
80
81
0
void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride) {
82
0
  int r, c;
83
0
  tran_low_t sum = 0;
84
0
  for (r = 0; r < 4; ++r)
85
0
    for (c = 0; c < 4; ++c) sum += input[r * stride + c];
86
87
0
  output[0] = sum * 2;
88
0
}
89
90
90.9k
void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride) {
91
90.9k
  int i, j;
92
90.9k
  tran_low_t intermediate[64];
93
90.9k
  int pass;
94
90.9k
  tran_low_t *out = intermediate;
95
90.9k
  const tran_low_t *in = NULL;
96
97
  // Transform columns
98
272k
  for (pass = 0; pass < 2; ++pass) {
99
181k
    tran_high_t s0, s1, s2, s3, s4, s5, s6, s7;  // canbe16
100
181k
    tran_high_t t0, t1, t2, t3;                  // needs32
101
181k
    tran_high_t x0, x1, x2, x3;                  // canbe16
102
103
1.63M
    for (i = 0; i < 8; i++) {
104
      // stage 1
105
1.45M
      if (pass == 0) {
106
727k
        s0 = (input[0 * stride] + input[7 * stride]) * 4;
107
727k
        s1 = (input[1 * stride] + input[6 * stride]) * 4;
108
727k
        s2 = (input[2 * stride] + input[5 * stride]) * 4;
109
727k
        s3 = (input[3 * stride] + input[4 * stride]) * 4;
110
727k
        s4 = (input[3 * stride] - input[4 * stride]) * 4;
111
727k
        s5 = (input[2 * stride] - input[5 * stride]) * 4;
112
727k
        s6 = (input[1 * stride] - input[6 * stride]) * 4;
113
727k
        s7 = (input[0 * stride] - input[7 * stride]) * 4;
114
727k
        ++input;
115
727k
      } else {
116
727k
        s0 = in[0 * 8] + in[7 * 8];
117
727k
        s1 = in[1 * 8] + in[6 * 8];
118
727k
        s2 = in[2 * 8] + in[5 * 8];
119
727k
        s3 = in[3 * 8] + in[4 * 8];
120
727k
        s4 = in[3 * 8] - in[4 * 8];
121
727k
        s5 = in[2 * 8] - in[5 * 8];
122
727k
        s6 = in[1 * 8] - in[6 * 8];
123
727k
        s7 = in[0 * 8] - in[7 * 8];
124
727k
        ++in;
125
727k
      }
126
127
      // fdct4(step, step);
128
1.45M
      x0 = s0 + s3;
129
1.45M
      x1 = s1 + s2;
130
1.45M
      x2 = s1 - s2;
131
1.45M
      x3 = s0 - s3;
132
1.45M
      t0 = (x0 + x1) * cospi_16_64;
133
1.45M
      t1 = (x0 - x1) * cospi_16_64;
134
1.45M
      t2 = x2 * cospi_24_64 + x3 * cospi_8_64;
135
1.45M
      t3 = -x2 * cospi_8_64 + x3 * cospi_24_64;
136
1.45M
      out[0] = (tran_low_t)fdct_round_shift(t0);
137
1.45M
      out[2] = (tran_low_t)fdct_round_shift(t2);
138
1.45M
      out[4] = (tran_low_t)fdct_round_shift(t1);
139
1.45M
      out[6] = (tran_low_t)fdct_round_shift(t3);
140
141
      // Stage 2
142
1.45M
      t0 = (s6 - s5) * cospi_16_64;
143
1.45M
      t1 = (s6 + s5) * cospi_16_64;
144
1.45M
      t2 = fdct_round_shift(t0);
145
1.45M
      t3 = fdct_round_shift(t1);
146
147
      // Stage 3
148
1.45M
      x0 = s4 + t2;
149
1.45M
      x1 = s4 - t2;
150
1.45M
      x2 = s7 - t3;
151
1.45M
      x3 = s7 + t3;
152
153
      // Stage 4
154
1.45M
      t0 = x0 * cospi_28_64 + x3 * cospi_4_64;
155
1.45M
      t1 = x1 * cospi_12_64 + x2 * cospi_20_64;
156
1.45M
      t2 = x2 * cospi_12_64 + x1 * -cospi_20_64;
157
1.45M
      t3 = x3 * cospi_28_64 + x0 * -cospi_4_64;
158
1.45M
      out[1] = (tran_low_t)fdct_round_shift(t0);
159
1.45M
      out[3] = (tran_low_t)fdct_round_shift(t2);
160
1.45M
      out[5] = (tran_low_t)fdct_round_shift(t1);
161
1.45M
      out[7] = (tran_low_t)fdct_round_shift(t3);
162
1.45M
      out += 8;
163
1.45M
    }
164
181k
    in = intermediate;
165
181k
    out = output;
166
181k
  }
167
168
  // Rows
169
818k
  for (i = 0; i < 8; ++i) {
170
6.54M
    for (j = 0; j < 8; ++j) output[j + i * 8] /= 2;
171
727k
  }
172
90.9k
}
173
174
933
void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride) {
175
933
  int r, c;
176
933
  tran_low_t sum = 0;
177
8.39k
  for (r = 0; r < 8; ++r)
178
67.1k
    for (c = 0; c < 8; ++c) sum += input[r * stride + c];
179
180
933
  output[0] = sum;
181
933
}
182
183
28.6k
void vpx_fdct16x16_c(const int16_t *input, tran_low_t *output, int stride) {
184
  // The 2D transform is done with two passes which are actually pretty
185
  // similar. In the first one, we transform the columns and transpose
186
  // the results. In the second one, we transform the rows. To achieve that,
187
  // as the first pass results are transposed, we transpose the columns (that
188
  // is the transposed rows) and transpose the results (so that it goes back
189
  // in normal/row positions).
190
28.6k
  int pass;
191
  // We need an intermediate buffer between passes.
192
28.6k
  tran_low_t intermediate[256];
193
28.6k
  const tran_low_t *in_low = NULL;
194
28.6k
  tran_low_t *out = intermediate;
195
  // Do the two transform/transpose passes
196
86.0k
  for (pass = 0; pass < 2; ++pass) {
197
57.3k
    tran_high_t step1[8];      // canbe16
198
57.3k
    tran_high_t step2[8];      // canbe16
199
57.3k
    tran_high_t step3[8];      // canbe16
200
57.3k
    tran_high_t in_high[8];    // canbe16
201
57.3k
    tran_high_t temp1, temp2;  // needs32
202
57.3k
    int i;
203
975k
    for (i = 0; i < 16; i++) {
204
917k
      if (0 == pass) {
205
        // Calculate input for the first 8 results.
206
458k
        in_high[0] = (input[0 * stride] + input[15 * stride]) * 4;
207
458k
        in_high[1] = (input[1 * stride] + input[14 * stride]) * 4;
208
458k
        in_high[2] = (input[2 * stride] + input[13 * stride]) * 4;
209
458k
        in_high[3] = (input[3 * stride] + input[12 * stride]) * 4;
210
458k
        in_high[4] = (input[4 * stride] + input[11 * stride]) * 4;
211
458k
        in_high[5] = (input[5 * stride] + input[10 * stride]) * 4;
212
458k
        in_high[6] = (input[6 * stride] + input[9 * stride]) * 4;
213
458k
        in_high[7] = (input[7 * stride] + input[8 * stride]) * 4;
214
        // Calculate input for the next 8 results.
215
458k
        step1[0] = (input[7 * stride] - input[8 * stride]) * 4;
216
458k
        step1[1] = (input[6 * stride] - input[9 * stride]) * 4;
217
458k
        step1[2] = (input[5 * stride] - input[10 * stride]) * 4;
218
458k
        step1[3] = (input[4 * stride] - input[11 * stride]) * 4;
219
458k
        step1[4] = (input[3 * stride] - input[12 * stride]) * 4;
220
458k
        step1[5] = (input[2 * stride] - input[13 * stride]) * 4;
221
458k
        step1[6] = (input[1 * stride] - input[14 * stride]) * 4;
222
458k
        step1[7] = (input[0 * stride] - input[15 * stride]) * 4;
223
458k
      } else {
224
        // Calculate input for the first 8 results.
225
458k
        assert(in_low != NULL);
226
458k
        in_high[0] = ((in_low[0 * 16] + 1) >> 2) + ((in_low[15 * 16] + 1) >> 2);
227
458k
        in_high[1] = ((in_low[1 * 16] + 1) >> 2) + ((in_low[14 * 16] + 1) >> 2);
228
458k
        in_high[2] = ((in_low[2 * 16] + 1) >> 2) + ((in_low[13 * 16] + 1) >> 2);
229
458k
        in_high[3] = ((in_low[3 * 16] + 1) >> 2) + ((in_low[12 * 16] + 1) >> 2);
230
458k
        in_high[4] = ((in_low[4 * 16] + 1) >> 2) + ((in_low[11 * 16] + 1) >> 2);
231
458k
        in_high[5] = ((in_low[5 * 16] + 1) >> 2) + ((in_low[10 * 16] + 1) >> 2);
232
458k
        in_high[6] = ((in_low[6 * 16] + 1) >> 2) + ((in_low[9 * 16] + 1) >> 2);
233
458k
        in_high[7] = ((in_low[7 * 16] + 1) >> 2) + ((in_low[8 * 16] + 1) >> 2);
234
        // Calculate input for the next 8 results.
235
458k
        step1[0] = ((in_low[7 * 16] + 1) >> 2) - ((in_low[8 * 16] + 1) >> 2);
236
458k
        step1[1] = ((in_low[6 * 16] + 1) >> 2) - ((in_low[9 * 16] + 1) >> 2);
237
458k
        step1[2] = ((in_low[5 * 16] + 1) >> 2) - ((in_low[10 * 16] + 1) >> 2);
238
458k
        step1[3] = ((in_low[4 * 16] + 1) >> 2) - ((in_low[11 * 16] + 1) >> 2);
239
458k
        step1[4] = ((in_low[3 * 16] + 1) >> 2) - ((in_low[12 * 16] + 1) >> 2);
240
458k
        step1[5] = ((in_low[2 * 16] + 1) >> 2) - ((in_low[13 * 16] + 1) >> 2);
241
458k
        step1[6] = ((in_low[1 * 16] + 1) >> 2) - ((in_low[14 * 16] + 1) >> 2);
242
458k
        step1[7] = ((in_low[0 * 16] + 1) >> 2) - ((in_low[15 * 16] + 1) >> 2);
243
458k
        in_low++;
244
458k
      }
245
      // Work on the first eight values; fdct8(input, even_results);
246
917k
      {
247
917k
        tran_high_t s0, s1, s2, s3, s4, s5, s6, s7;  // canbe16
248
917k
        tran_high_t t0, t1, t2, t3;                  // needs32
249
917k
        tran_high_t x0, x1, x2, x3;                  // canbe16
250
251
        // stage 1
252
917k
        s0 = in_high[0] + in_high[7];
253
917k
        s1 = in_high[1] + in_high[6];
254
917k
        s2 = in_high[2] + in_high[5];
255
917k
        s3 = in_high[3] + in_high[4];
256
917k
        s4 = in_high[3] - in_high[4];
257
917k
        s5 = in_high[2] - in_high[5];
258
917k
        s6 = in_high[1] - in_high[6];
259
917k
        s7 = in_high[0] - in_high[7];
260
261
        // fdct4(step, step);
262
917k
        x0 = s0 + s3;
263
917k
        x1 = s1 + s2;
264
917k
        x2 = s1 - s2;
265
917k
        x3 = s0 - s3;
266
917k
        t0 = (x0 + x1) * cospi_16_64;
267
917k
        t1 = (x0 - x1) * cospi_16_64;
268
917k
        t2 = x3 * cospi_8_64 + x2 * cospi_24_64;
269
917k
        t3 = x3 * cospi_24_64 - x2 * cospi_8_64;
270
917k
        out[0] = (tran_low_t)fdct_round_shift(t0);
271
917k
        out[4] = (tran_low_t)fdct_round_shift(t2);
272
917k
        out[8] = (tran_low_t)fdct_round_shift(t1);
273
917k
        out[12] = (tran_low_t)fdct_round_shift(t3);
274
275
        // Stage 2
276
917k
        t0 = (s6 - s5) * cospi_16_64;
277
917k
        t1 = (s6 + s5) * cospi_16_64;
278
917k
        t2 = fdct_round_shift(t0);
279
917k
        t3 = fdct_round_shift(t1);
280
281
        // Stage 3
282
917k
        x0 = s4 + t2;
283
917k
        x1 = s4 - t2;
284
917k
        x2 = s7 - t3;
285
917k
        x3 = s7 + t3;
286
287
        // Stage 4
288
917k
        t0 = x0 * cospi_28_64 + x3 * cospi_4_64;
289
917k
        t1 = x1 * cospi_12_64 + x2 * cospi_20_64;
290
917k
        t2 = x2 * cospi_12_64 + x1 * -cospi_20_64;
291
917k
        t3 = x3 * cospi_28_64 + x0 * -cospi_4_64;
292
917k
        out[2] = (tran_low_t)fdct_round_shift(t0);
293
917k
        out[6] = (tran_low_t)fdct_round_shift(t2);
294
917k
        out[10] = (tran_low_t)fdct_round_shift(t1);
295
917k
        out[14] = (tran_low_t)fdct_round_shift(t3);
296
917k
      }
297
      // Work on the next eight values; step1 -> odd_results
298
917k
      {
299
        // step 2
300
917k
        temp1 = (step1[5] - step1[2]) * cospi_16_64;
301
917k
        temp2 = (step1[4] - step1[3]) * cospi_16_64;
302
917k
        step2[2] = fdct_round_shift(temp1);
303
917k
        step2[3] = fdct_round_shift(temp2);
304
917k
        temp1 = (step1[4] + step1[3]) * cospi_16_64;
305
917k
        temp2 = (step1[5] + step1[2]) * cospi_16_64;
306
917k
        step2[4] = fdct_round_shift(temp1);
307
917k
        step2[5] = fdct_round_shift(temp2);
308
        // step 3
309
917k
        step3[0] = step1[0] + step2[3];
310
917k
        step3[1] = step1[1] + step2[2];
311
917k
        step3[2] = step1[1] - step2[2];
312
917k
        step3[3] = step1[0] - step2[3];
313
917k
        step3[4] = step1[7] - step2[4];
314
917k
        step3[5] = step1[6] - step2[5];
315
917k
        step3[6] = step1[6] + step2[5];
316
917k
        step3[7] = step1[7] + step2[4];
317
        // step 4
318
917k
        temp1 = step3[1] * -cospi_8_64 + step3[6] * cospi_24_64;
319
917k
        temp2 = step3[2] * cospi_24_64 + step3[5] * cospi_8_64;
320
917k
        step2[1] = fdct_round_shift(temp1);
321
917k
        step2[2] = fdct_round_shift(temp2);
322
917k
        temp1 = step3[2] * cospi_8_64 - step3[5] * cospi_24_64;
323
917k
        temp2 = step3[1] * cospi_24_64 + step3[6] * cospi_8_64;
324
917k
        step2[5] = fdct_round_shift(temp1);
325
917k
        step2[6] = fdct_round_shift(temp2);
326
        // step 5
327
917k
        step1[0] = step3[0] + step2[1];
328
917k
        step1[1] = step3[0] - step2[1];
329
917k
        step1[2] = step3[3] + step2[2];
330
917k
        step1[3] = step3[3] - step2[2];
331
917k
        step1[4] = step3[4] - step2[5];
332
917k
        step1[5] = step3[4] + step2[5];
333
917k
        step1[6] = step3[7] - step2[6];
334
917k
        step1[7] = step3[7] + step2[6];
335
        // step 6
336
917k
        temp1 = step1[0] * cospi_30_64 + step1[7] * cospi_2_64;
337
917k
        temp2 = step1[1] * cospi_14_64 + step1[6] * cospi_18_64;
338
917k
        out[1] = (tran_low_t)fdct_round_shift(temp1);
339
917k
        out[9] = (tran_low_t)fdct_round_shift(temp2);
340
917k
        temp1 = step1[2] * cospi_22_64 + step1[5] * cospi_10_64;
341
917k
        temp2 = step1[3] * cospi_6_64 + step1[4] * cospi_26_64;
342
917k
        out[5] = (tran_low_t)fdct_round_shift(temp1);
343
917k
        out[13] = (tran_low_t)fdct_round_shift(temp2);
344
917k
        temp1 = step1[3] * -cospi_26_64 + step1[4] * cospi_6_64;
345
917k
        temp2 = step1[2] * -cospi_10_64 + step1[5] * cospi_22_64;
346
917k
        out[3] = (tran_low_t)fdct_round_shift(temp1);
347
917k
        out[11] = (tran_low_t)fdct_round_shift(temp2);
348
917k
        temp1 = step1[1] * -cospi_18_64 + step1[6] * cospi_14_64;
349
917k
        temp2 = step1[0] * -cospi_2_64 + step1[7] * cospi_30_64;
350
917k
        out[7] = (tran_low_t)fdct_round_shift(temp1);
351
917k
        out[15] = (tran_low_t)fdct_round_shift(temp2);
352
917k
      }
353
      // Do next column (which is a transposed row in second/horizontal pass)
354
917k
      input++;
355
917k
      out += 16;
356
917k
    }
357
    // Setup in/out for next pass.
358
57.3k
    in_low = intermediate;
359
57.3k
    out = output;
360
57.3k
  }
361
28.6k
}
362
363
542
void vpx_fdct16x16_1_c(const int16_t *input, tran_low_t *output, int stride) {
364
542
  int r, c;
365
542
  int sum = 0;
366
9.21k
  for (r = 0; r < 16; ++r)
367
147k
    for (c = 0; c < 16; ++c) sum += input[r * stride + c];
368
369
542
  output[0] = (tran_low_t)(sum >> 1);
370
542
}
371
372
119M
static INLINE tran_high_t dct_32_round(tran_high_t input) {
373
119M
  tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS);
374
  // TODO(debargha, peter.derivaz): Find new bounds for this assert,
375
  // and make the bounds consts.
376
  // assert(-131072 <= rv && rv <= 131071);
377
119M
  return rv;
378
119M
}
379
380
27.9M
static INLINE tran_high_t half_round_shift(tran_high_t input) {
381
27.9M
  tran_high_t rv = (input + 1 + (input < 0)) >> 2;
382
27.9M
  return rv;
383
27.9M
}
384
385
1.80M
void vpx_fdct32(const tran_high_t *input, tran_high_t *output, int round) {
386
1.80M
  tran_high_t step[32];
387
  // Stage 1
388
1.80M
  step[0] = input[0] + input[(32 - 1)];
389
1.80M
  step[1] = input[1] + input[(32 - 2)];
390
1.80M
  step[2] = input[2] + input[(32 - 3)];
391
1.80M
  step[3] = input[3] + input[(32 - 4)];
392
1.80M
  step[4] = input[4] + input[(32 - 5)];
393
1.80M
  step[5] = input[5] + input[(32 - 6)];
394
1.80M
  step[6] = input[6] + input[(32 - 7)];
395
1.80M
  step[7] = input[7] + input[(32 - 8)];
396
1.80M
  step[8] = input[8] + input[(32 - 9)];
397
1.80M
  step[9] = input[9] + input[(32 - 10)];
398
1.80M
  step[10] = input[10] + input[(32 - 11)];
399
1.80M
  step[11] = input[11] + input[(32 - 12)];
400
1.80M
  step[12] = input[12] + input[(32 - 13)];
401
1.80M
  step[13] = input[13] + input[(32 - 14)];
402
1.80M
  step[14] = input[14] + input[(32 - 15)];
403
1.80M
  step[15] = input[15] + input[(32 - 16)];
404
1.80M
  step[16] = -input[16] + input[(32 - 17)];
405
1.80M
  step[17] = -input[17] + input[(32 - 18)];
406
1.80M
  step[18] = -input[18] + input[(32 - 19)];
407
1.80M
  step[19] = -input[19] + input[(32 - 20)];
408
1.80M
  step[20] = -input[20] + input[(32 - 21)];
409
1.80M
  step[21] = -input[21] + input[(32 - 22)];
410
1.80M
  step[22] = -input[22] + input[(32 - 23)];
411
1.80M
  step[23] = -input[23] + input[(32 - 24)];
412
1.80M
  step[24] = -input[24] + input[(32 - 25)];
413
1.80M
  step[25] = -input[25] + input[(32 - 26)];
414
1.80M
  step[26] = -input[26] + input[(32 - 27)];
415
1.80M
  step[27] = -input[27] + input[(32 - 28)];
416
1.80M
  step[28] = -input[28] + input[(32 - 29)];
417
1.80M
  step[29] = -input[29] + input[(32 - 30)];
418
1.80M
  step[30] = -input[30] + input[(32 - 31)];
419
1.80M
  step[31] = -input[31] + input[(32 - 32)];
420
421
  // Stage 2
422
1.80M
  output[0] = step[0] + step[16 - 1];
423
1.80M
  output[1] = step[1] + step[16 - 2];
424
1.80M
  output[2] = step[2] + step[16 - 3];
425
1.80M
  output[3] = step[3] + step[16 - 4];
426
1.80M
  output[4] = step[4] + step[16 - 5];
427
1.80M
  output[5] = step[5] + step[16 - 6];
428
1.80M
  output[6] = step[6] + step[16 - 7];
429
1.80M
  output[7] = step[7] + step[16 - 8];
430
1.80M
  output[8] = -step[8] + step[16 - 9];
431
1.80M
  output[9] = -step[9] + step[16 - 10];
432
1.80M
  output[10] = -step[10] + step[16 - 11];
433
1.80M
  output[11] = -step[11] + step[16 - 12];
434
1.80M
  output[12] = -step[12] + step[16 - 13];
435
1.80M
  output[13] = -step[13] + step[16 - 14];
436
1.80M
  output[14] = -step[14] + step[16 - 15];
437
1.80M
  output[15] = -step[15] + step[16 - 16];
438
439
1.80M
  output[16] = step[16];
440
1.80M
  output[17] = step[17];
441
1.80M
  output[18] = step[18];
442
1.80M
  output[19] = step[19];
443
444
1.80M
  output[20] = dct_32_round((-step[20] + step[27]) * cospi_16_64);
445
1.80M
  output[21] = dct_32_round((-step[21] + step[26]) * cospi_16_64);
446
1.80M
  output[22] = dct_32_round((-step[22] + step[25]) * cospi_16_64);
447
1.80M
  output[23] = dct_32_round((-step[23] + step[24]) * cospi_16_64);
448
449
1.80M
  output[24] = dct_32_round((step[24] + step[23]) * cospi_16_64);
450
1.80M
  output[25] = dct_32_round((step[25] + step[22]) * cospi_16_64);
451
1.80M
  output[26] = dct_32_round((step[26] + step[21]) * cospi_16_64);
452
1.80M
  output[27] = dct_32_round((step[27] + step[20]) * cospi_16_64);
453
454
1.80M
  output[28] = step[28];
455
1.80M
  output[29] = step[29];
456
1.80M
  output[30] = step[30];
457
1.80M
  output[31] = step[31];
458
459
  // dump the magnitude by 4, hence the intermediate values are within
460
  // the range of 16 bits.
461
1.80M
  if (round) {
462
873k
    output[0] = half_round_shift(output[0]);
463
873k
    output[1] = half_round_shift(output[1]);
464
873k
    output[2] = half_round_shift(output[2]);
465
873k
    output[3] = half_round_shift(output[3]);
466
873k
    output[4] = half_round_shift(output[4]);
467
873k
    output[5] = half_round_shift(output[5]);
468
873k
    output[6] = half_round_shift(output[6]);
469
873k
    output[7] = half_round_shift(output[7]);
470
873k
    output[8] = half_round_shift(output[8]);
471
873k
    output[9] = half_round_shift(output[9]);
472
873k
    output[10] = half_round_shift(output[10]);
473
873k
    output[11] = half_round_shift(output[11]);
474
873k
    output[12] = half_round_shift(output[12]);
475
873k
    output[13] = half_round_shift(output[13]);
476
873k
    output[14] = half_round_shift(output[14]);
477
873k
    output[15] = half_round_shift(output[15]);
478
479
873k
    output[16] = half_round_shift(output[16]);
480
873k
    output[17] = half_round_shift(output[17]);
481
873k
    output[18] = half_round_shift(output[18]);
482
873k
    output[19] = half_round_shift(output[19]);
483
873k
    output[20] = half_round_shift(output[20]);
484
873k
    output[21] = half_round_shift(output[21]);
485
873k
    output[22] = half_round_shift(output[22]);
486
873k
    output[23] = half_round_shift(output[23]);
487
873k
    output[24] = half_round_shift(output[24]);
488
873k
    output[25] = half_round_shift(output[25]);
489
873k
    output[26] = half_round_shift(output[26]);
490
873k
    output[27] = half_round_shift(output[27]);
491
873k
    output[28] = half_round_shift(output[28]);
492
873k
    output[29] = half_round_shift(output[29]);
493
873k
    output[30] = half_round_shift(output[30]);
494
873k
    output[31] = half_round_shift(output[31]);
495
873k
  }
496
497
  // Stage 3
498
1.80M
  step[0] = output[0] + output[(8 - 1)];
499
1.80M
  step[1] = output[1] + output[(8 - 2)];
500
1.80M
  step[2] = output[2] + output[(8 - 3)];
501
1.80M
  step[3] = output[3] + output[(8 - 4)];
502
1.80M
  step[4] = -output[4] + output[(8 - 5)];
503
1.80M
  step[5] = -output[5] + output[(8 - 6)];
504
1.80M
  step[6] = -output[6] + output[(8 - 7)];
505
1.80M
  step[7] = -output[7] + output[(8 - 8)];
506
1.80M
  step[8] = output[8];
507
1.80M
  step[9] = output[9];
508
1.80M
  step[10] = dct_32_round((-output[10] + output[13]) * cospi_16_64);
509
1.80M
  step[11] = dct_32_round((-output[11] + output[12]) * cospi_16_64);
510
1.80M
  step[12] = dct_32_round((output[12] + output[11]) * cospi_16_64);
511
1.80M
  step[13] = dct_32_round((output[13] + output[10]) * cospi_16_64);
512
1.80M
  step[14] = output[14];
513
1.80M
  step[15] = output[15];
514
515
1.80M
  step[16] = output[16] + output[23];
516
1.80M
  step[17] = output[17] + output[22];
517
1.80M
  step[18] = output[18] + output[21];
518
1.80M
  step[19] = output[19] + output[20];
519
1.80M
  step[20] = -output[20] + output[19];
520
1.80M
  step[21] = -output[21] + output[18];
521
1.80M
  step[22] = -output[22] + output[17];
522
1.80M
  step[23] = -output[23] + output[16];
523
1.80M
  step[24] = -output[24] + output[31];
524
1.80M
  step[25] = -output[25] + output[30];
525
1.80M
  step[26] = -output[26] + output[29];
526
1.80M
  step[27] = -output[27] + output[28];
527
1.80M
  step[28] = output[28] + output[27];
528
1.80M
  step[29] = output[29] + output[26];
529
1.80M
  step[30] = output[30] + output[25];
530
1.80M
  step[31] = output[31] + output[24];
531
532
  // Stage 4
533
1.80M
  output[0] = step[0] + step[3];
534
1.80M
  output[1] = step[1] + step[2];
535
1.80M
  output[2] = -step[2] + step[1];
536
1.80M
  output[3] = -step[3] + step[0];
537
1.80M
  output[4] = step[4];
538
1.80M
  output[5] = dct_32_round((-step[5] + step[6]) * cospi_16_64);
539
1.80M
  output[6] = dct_32_round((step[6] + step[5]) * cospi_16_64);
540
1.80M
  output[7] = step[7];
541
1.80M
  output[8] = step[8] + step[11];
542
1.80M
  output[9] = step[9] + step[10];
543
1.80M
  output[10] = -step[10] + step[9];
544
1.80M
  output[11] = -step[11] + step[8];
545
1.80M
  output[12] = -step[12] + step[15];
546
1.80M
  output[13] = -step[13] + step[14];
547
1.80M
  output[14] = step[14] + step[13];
548
1.80M
  output[15] = step[15] + step[12];
549
550
1.80M
  output[16] = step[16];
551
1.80M
  output[17] = step[17];
552
1.80M
  output[18] = dct_32_round(step[18] * -cospi_8_64 + step[29] * cospi_24_64);
553
1.80M
  output[19] = dct_32_round(step[19] * -cospi_8_64 + step[28] * cospi_24_64);
554
1.80M
  output[20] = dct_32_round(step[20] * -cospi_24_64 + step[27] * -cospi_8_64);
555
1.80M
  output[21] = dct_32_round(step[21] * -cospi_24_64 + step[26] * -cospi_8_64);
556
1.80M
  output[22] = step[22];
557
1.80M
  output[23] = step[23];
558
1.80M
  output[24] = step[24];
559
1.80M
  output[25] = step[25];
560
1.80M
  output[26] = dct_32_round(step[26] * cospi_24_64 + step[21] * -cospi_8_64);
561
1.80M
  output[27] = dct_32_round(step[27] * cospi_24_64 + step[20] * -cospi_8_64);
562
1.80M
  output[28] = dct_32_round(step[28] * cospi_8_64 + step[19] * cospi_24_64);
563
1.80M
  output[29] = dct_32_round(step[29] * cospi_8_64 + step[18] * cospi_24_64);
564
1.80M
  output[30] = step[30];
565
1.80M
  output[31] = step[31];
566
567
  // Stage 5
568
1.80M
  step[0] = dct_32_round((output[0] + output[1]) * cospi_16_64);
569
1.80M
  step[1] = dct_32_round((-output[1] + output[0]) * cospi_16_64);
570
1.80M
  step[2] = dct_32_round(output[2] * cospi_24_64 + output[3] * cospi_8_64);
571
1.80M
  step[3] = dct_32_round(output[3] * cospi_24_64 - output[2] * cospi_8_64);
572
1.80M
  step[4] = output[4] + output[5];
573
1.80M
  step[5] = -output[5] + output[4];
574
1.80M
  step[6] = -output[6] + output[7];
575
1.80M
  step[7] = output[7] + output[6];
576
1.80M
  step[8] = output[8];
577
1.80M
  step[9] = dct_32_round(output[9] * -cospi_8_64 + output[14] * cospi_24_64);
578
1.80M
  step[10] = dct_32_round(output[10] * -cospi_24_64 + output[13] * -cospi_8_64);
579
1.80M
  step[11] = output[11];
580
1.80M
  step[12] = output[12];
581
1.80M
  step[13] = dct_32_round(output[13] * cospi_24_64 + output[10] * -cospi_8_64);
582
1.80M
  step[14] = dct_32_round(output[14] * cospi_8_64 + output[9] * cospi_24_64);
583
1.80M
  step[15] = output[15];
584
585
1.80M
  step[16] = output[16] + output[19];
586
1.80M
  step[17] = output[17] + output[18];
587
1.80M
  step[18] = -output[18] + output[17];
588
1.80M
  step[19] = -output[19] + output[16];
589
1.80M
  step[20] = -output[20] + output[23];
590
1.80M
  step[21] = -output[21] + output[22];
591
1.80M
  step[22] = output[22] + output[21];
592
1.80M
  step[23] = output[23] + output[20];
593
1.80M
  step[24] = output[24] + output[27];
594
1.80M
  step[25] = output[25] + output[26];
595
1.80M
  step[26] = -output[26] + output[25];
596
1.80M
  step[27] = -output[27] + output[24];
597
1.80M
  step[28] = -output[28] + output[31];
598
1.80M
  step[29] = -output[29] + output[30];
599
1.80M
  step[30] = output[30] + output[29];
600
1.80M
  step[31] = output[31] + output[28];
601
602
  // Stage 6
603
1.80M
  output[0] = step[0];
604
1.80M
  output[1] = step[1];
605
1.80M
  output[2] = step[2];
606
1.80M
  output[3] = step[3];
607
1.80M
  output[4] = dct_32_round(step[4] * cospi_28_64 + step[7] * cospi_4_64);
608
1.80M
  output[5] = dct_32_round(step[5] * cospi_12_64 + step[6] * cospi_20_64);
609
1.80M
  output[6] = dct_32_round(step[6] * cospi_12_64 + step[5] * -cospi_20_64);
610
1.80M
  output[7] = dct_32_round(step[7] * cospi_28_64 + step[4] * -cospi_4_64);
611
1.80M
  output[8] = step[8] + step[9];
612
1.80M
  output[9] = -step[9] + step[8];
613
1.80M
  output[10] = -step[10] + step[11];
614
1.80M
  output[11] = step[11] + step[10];
615
1.80M
  output[12] = step[12] + step[13];
616
1.80M
  output[13] = -step[13] + step[12];
617
1.80M
  output[14] = -step[14] + step[15];
618
1.80M
  output[15] = step[15] + step[14];
619
620
1.80M
  output[16] = step[16];
621
1.80M
  output[17] = dct_32_round(step[17] * -cospi_4_64 + step[30] * cospi_28_64);
622
1.80M
  output[18] = dct_32_round(step[18] * -cospi_28_64 + step[29] * -cospi_4_64);
623
1.80M
  output[19] = step[19];
624
1.80M
  output[20] = step[20];
625
1.80M
  output[21] = dct_32_round(step[21] * -cospi_20_64 + step[26] * cospi_12_64);
626
1.80M
  output[22] = dct_32_round(step[22] * -cospi_12_64 + step[25] * -cospi_20_64);
627
1.80M
  output[23] = step[23];
628
1.80M
  output[24] = step[24];
629
1.80M
  output[25] = dct_32_round(step[25] * cospi_12_64 + step[22] * -cospi_20_64);
630
1.80M
  output[26] = dct_32_round(step[26] * cospi_20_64 + step[21] * cospi_12_64);
631
1.80M
  output[27] = step[27];
632
1.80M
  output[28] = step[28];
633
1.80M
  output[29] = dct_32_round(step[29] * cospi_28_64 + step[18] * -cospi_4_64);
634
1.80M
  output[30] = dct_32_round(step[30] * cospi_4_64 + step[17] * cospi_28_64);
635
1.80M
  output[31] = step[31];
636
637
  // Stage 7
638
1.80M
  step[0] = output[0];
639
1.80M
  step[1] = output[1];
640
1.80M
  step[2] = output[2];
641
1.80M
  step[3] = output[3];
642
1.80M
  step[4] = output[4];
643
1.80M
  step[5] = output[5];
644
1.80M
  step[6] = output[6];
645
1.80M
  step[7] = output[7];
646
1.80M
  step[8] = dct_32_round(output[8] * cospi_30_64 + output[15] * cospi_2_64);
647
1.80M
  step[9] = dct_32_round(output[9] * cospi_14_64 + output[14] * cospi_18_64);
648
1.80M
  step[10] = dct_32_round(output[10] * cospi_22_64 + output[13] * cospi_10_64);
649
1.80M
  step[11] = dct_32_round(output[11] * cospi_6_64 + output[12] * cospi_26_64);
650
1.80M
  step[12] = dct_32_round(output[12] * cospi_6_64 + output[11] * -cospi_26_64);
651
1.80M
  step[13] = dct_32_round(output[13] * cospi_22_64 + output[10] * -cospi_10_64);
652
1.80M
  step[14] = dct_32_round(output[14] * cospi_14_64 + output[9] * -cospi_18_64);
653
1.80M
  step[15] = dct_32_round(output[15] * cospi_30_64 + output[8] * -cospi_2_64);
654
655
1.80M
  step[16] = output[16] + output[17];
656
1.80M
  step[17] = -output[17] + output[16];
657
1.80M
  step[18] = -output[18] + output[19];
658
1.80M
  step[19] = output[19] + output[18];
659
1.80M
  step[20] = output[20] + output[21];
660
1.80M
  step[21] = -output[21] + output[20];
661
1.80M
  step[22] = -output[22] + output[23];
662
1.80M
  step[23] = output[23] + output[22];
663
1.80M
  step[24] = output[24] + output[25];
664
1.80M
  step[25] = -output[25] + output[24];
665
1.80M
  step[26] = -output[26] + output[27];
666
1.80M
  step[27] = output[27] + output[26];
667
1.80M
  step[28] = output[28] + output[29];
668
1.80M
  step[29] = -output[29] + output[28];
669
1.80M
  step[30] = -output[30] + output[31];
670
1.80M
  step[31] = output[31] + output[30];
671
672
  // Final stage --- outputs indices are bit-reversed.
673
1.80M
  output[0] = step[0];
674
1.80M
  output[16] = step[1];
675
1.80M
  output[8] = step[2];
676
1.80M
  output[24] = step[3];
677
1.80M
  output[4] = step[4];
678
1.80M
  output[20] = step[5];
679
1.80M
  output[12] = step[6];
680
1.80M
  output[28] = step[7];
681
1.80M
  output[2] = step[8];
682
1.80M
  output[18] = step[9];
683
1.80M
  output[10] = step[10];
684
1.80M
  output[26] = step[11];
685
1.80M
  output[6] = step[12];
686
1.80M
  output[22] = step[13];
687
1.80M
  output[14] = step[14];
688
1.80M
  output[30] = step[15];
689
690
1.80M
  output[1] = dct_32_round(step[16] * cospi_31_64 + step[31] * cospi_1_64);
691
1.80M
  output[17] = dct_32_round(step[17] * cospi_15_64 + step[30] * cospi_17_64);
692
1.80M
  output[9] = dct_32_round(step[18] * cospi_23_64 + step[29] * cospi_9_64);
693
1.80M
  output[25] = dct_32_round(step[19] * cospi_7_64 + step[28] * cospi_25_64);
694
1.80M
  output[5] = dct_32_round(step[20] * cospi_27_64 + step[27] * cospi_5_64);
695
1.80M
  output[21] = dct_32_round(step[21] * cospi_11_64 + step[26] * cospi_21_64);
696
1.80M
  output[13] = dct_32_round(step[22] * cospi_19_64 + step[25] * cospi_13_64);
697
1.80M
  output[29] = dct_32_round(step[23] * cospi_3_64 + step[24] * cospi_29_64);
698
1.80M
  output[3] = dct_32_round(step[24] * cospi_3_64 + step[23] * -cospi_29_64);
699
1.80M
  output[19] = dct_32_round(step[25] * cospi_19_64 + step[22] * -cospi_13_64);
700
1.80M
  output[11] = dct_32_round(step[26] * cospi_11_64 + step[21] * -cospi_21_64);
701
1.80M
  output[27] = dct_32_round(step[27] * cospi_27_64 + step[20] * -cospi_5_64);
702
1.80M
  output[7] = dct_32_round(step[28] * cospi_7_64 + step[19] * -cospi_25_64);
703
1.80M
  output[23] = dct_32_round(step[29] * cospi_23_64 + step[18] * -cospi_9_64);
704
1.80M
  output[15] = dct_32_round(step[30] * cospi_15_64 + step[17] * -cospi_17_64);
705
1.80M
  output[31] = dct_32_round(step[31] * cospi_31_64 + step[16] * -cospi_1_64);
706
1.80M
}
707
708
393
void vpx_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride) {
709
393
  int i, j;
710
393
  tran_high_t out[32 * 32];
711
712
  // Columns
713
12.9k
  for (i = 0; i < 32; ++i) {
714
12.5k
    tran_high_t temp_in[32], temp_out[32];
715
415k
    for (j = 0; j < 32; ++j) temp_in[j] = input[j * stride + i] * 4;
716
12.5k
    vpx_fdct32(temp_in, temp_out, 0);
717
415k
    for (j = 0; j < 32; ++j)
718
402k
      out[j * 32 + i] = (temp_out[j] + 1 + (temp_out[j] > 0)) >> 2;
719
12.5k
  }
720
721
  // Rows
722
12.9k
  for (i = 0; i < 32; ++i) {
723
12.5k
    tran_high_t temp_in[32], temp_out[32];
724
415k
    for (j = 0; j < 32; ++j) temp_in[j] = out[j + i * 32];
725
12.5k
    vpx_fdct32(temp_in, temp_out, 0);
726
415k
    for (j = 0; j < 32; ++j)
727
402k
      output[j + i * 32] =
728
402k
          (tran_low_t)((temp_out[j] + 1 + (temp_out[j] < 0)) >> 2);
729
12.5k
  }
730
393
}
731
732
// Note that although we use dct_32_round in dct32 computation flow,
733
// this 2d fdct32x32 for rate-distortion optimization loop is operating
734
// within 16 bits precision.
735
27.2k
void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride) {
736
27.2k
  int i, j;
737
27.2k
  tran_high_t out[32 * 32];
738
739
  // Columns
740
897k
  for (i = 0; i < 32; ++i) {
741
870k
    tran_high_t temp_in[32], temp_out[32];
742
28.7M
    for (j = 0; j < 32; ++j) temp_in[j] = input[j * stride + i] * 4;
743
870k
    vpx_fdct32(temp_in, temp_out, 0);
744
28.7M
    for (j = 0; j < 32; ++j)
745
      // TODO(cd): see quality impact of only doing
746
      //           output[j * 32 + i] = (temp_out[j] + 1) >> 2;
747
      //           PS: also change code in vpx_dsp/x86/vpx_dct_sse2.c
748
27.8M
      out[j * 32 + i] = (temp_out[j] + 1 + (temp_out[j] > 0)) >> 2;
749
870k
  }
750
751
  // Rows
752
897k
  for (i = 0; i < 32; ++i) {
753
870k
    tran_high_t temp_in[32], temp_out[32];
754
28.7M
    for (j = 0; j < 32; ++j) temp_in[j] = out[j + i * 32];
755
870k
    vpx_fdct32(temp_in, temp_out, 1);
756
28.7M
    for (j = 0; j < 32; ++j) output[j + i * 32] = (tran_low_t)temp_out[j];
757
870k
  }
758
27.2k
}
759
760
201
void vpx_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stride) {
761
201
  int r, c;
762
201
  int sum = 0;
763
6.63k
  for (r = 0; r < 32; ++r)
764
212k
    for (c = 0; c < 32; ++c) sum += input[r * stride + c];
765
766
201
  output[0] = (tran_low_t)(sum >> 3);
767
201
}
768
769
#if CONFIG_VP9_HIGHBITDEPTH
770
void vpx_highbd_fdct4x4_c(const int16_t *input, tran_low_t *output,
771
245k
                          int stride) {
772
245k
  vpx_fdct4x4_c(input, output, stride);
773
245k
}
774
775
void vpx_highbd_fdct8x8_c(const int16_t *input, tran_low_t *output,
776
90.9k
                          int stride) {
777
90.9k
  vpx_fdct8x8_c(input, output, stride);
778
90.9k
}
779
780
void vpx_highbd_fdct8x8_1_c(const int16_t *input, tran_low_t *output,
781
933
                            int stride) {
782
933
  vpx_fdct8x8_1_c(input, output, stride);
783
933
}
784
785
void vpx_highbd_fdct16x16_c(const int16_t *input, tran_low_t *output,
786
28.6k
                            int stride) {
787
28.6k
  vpx_fdct16x16_c(input, output, stride);
788
28.6k
}
789
790
void vpx_highbd_fdct16x16_1_c(const int16_t *input, tran_low_t *output,
791
542
                              int stride) {
792
542
  vpx_fdct16x16_1_c(input, output, stride);
793
542
}
794
795
void vpx_highbd_fdct32x32_c(const int16_t *input, tran_low_t *output,
796
393
                            int stride) {
797
393
  vpx_fdct32x32_c(input, output, stride);
798
393
}
799
800
void vpx_highbd_fdct32x32_rd_c(const int16_t *input, tran_low_t *output,
801
27.2k
                               int stride) {
802
27.2k
  vpx_fdct32x32_rd_c(input, output, stride);
803
27.2k
}
804
805
void vpx_highbd_fdct32x32_1_c(const int16_t *input, tran_low_t *output,
806
201
                              int stride) {
807
201
  vpx_fdct32x32_1_c(input, output, stride);
808
201
}
809
#endif  // CONFIG_VP9_HIGHBITDEPTH