blob: 49d324d7e57794a3b0e10b64eb27e82825365472 [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
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
Yaowu Xuf883b422016-08-30 14:01:10 -070011#ifndef AV1_FWD_TXFM2D_CFG_H_
12#define AV1_FWD_TXFM2D_CFG_H_
Yaowu Xuc27fc142016-08-22 16:08:15 -070013#include "av1/common/enums.h"
Yaowu Xuf883b422016-08-30 14:01:10 -070014#include "av1/common/av1_fwd_txfm1d.h"
Yaowu Xuc27fc142016-08-22 16:08:15 -070015// ---------------- config fwd_dct_dct_4 ----------------
16static const int8_t fwd_shift_dct_dct_4[3] = { 2, 0, 0 };
17static const int8_t fwd_stage_range_col_dct_dct_4[4] = { 15, 16, 17, 17 };
18static const int8_t fwd_stage_range_row_dct_dct_4[4] = { 17, 18, 18, 18 };
19static const int8_t fwd_cos_bit_col_dct_dct_4[4] = { 13, 13, 13, 13 };
20static const int8_t fwd_cos_bit_row_dct_dct_4[4] = { 13, 13, 13, 13 };
21
22static const TXFM_2D_CFG fwd_txfm_2d_cfg_dct_dct_4 = {
23 4, // .txfm_size
24 4, // .stage_num_col
25 4, // .stage_num_row
26 // 0, // .log_scale
27 fwd_shift_dct_dct_4, // .shift
28 fwd_stage_range_col_dct_dct_4, // .stage_range_col
29 fwd_stage_range_row_dct_dct_4, // .stage_range_row
30 fwd_cos_bit_col_dct_dct_4, // .cos_bit_col
31 fwd_cos_bit_row_dct_dct_4, // .cos_bit_row
32 TXFM_TYPE_DCT4, // .txfm_type_col
33 TXFM_TYPE_DCT4
34}; // .txfm_type_row
35
36// ---------------- config fwd_dct_dct_8 ----------------
37static const int8_t fwd_shift_dct_dct_8[3] = { 2, -1, 0 };
38static const int8_t fwd_stage_range_col_dct_dct_8[6] = {
39 15, 16, 17, 18, 18, 18
40};
41static const int8_t fwd_stage_range_row_dct_dct_8[6] = {
42 17, 18, 19, 19, 19, 19
43};
44static const int8_t fwd_cos_bit_col_dct_dct_8[6] = { 13, 13, 13, 13, 13, 13 };
45static const int8_t fwd_cos_bit_row_dct_dct_8[6] = { 13, 13, 13, 13, 13, 13 };
46
47static const TXFM_2D_CFG fwd_txfm_2d_cfg_dct_dct_8 = {
48 8, // .txfm_size
49 6, // .stage_num_col
50 6, // .stage_num_row
51 // 0, // .log_scale
52 fwd_shift_dct_dct_8, // .shift
53 fwd_stage_range_col_dct_dct_8, // .stage_range_col
54 fwd_stage_range_row_dct_dct_8, // .stage_range_row
55 fwd_cos_bit_col_dct_dct_8, // .cos_bit_col
56 fwd_cos_bit_row_dct_dct_8, // .cos_bit_row
57 TXFM_TYPE_DCT8, // .txfm_type_col
58 TXFM_TYPE_DCT8
59}; // .txfm_type_row
60
61// ---------------- config fwd_dct_dct_16 ----------------
62static const int8_t fwd_shift_dct_dct_16[3] = { 2, -2, 0 };
63static const int8_t fwd_stage_range_col_dct_dct_16[8] = { 15, 16, 17, 18,
64 19, 19, 19, 19 };
65static const int8_t fwd_stage_range_row_dct_dct_16[8] = { 17, 18, 19, 20,
66 20, 20, 20, 20 };
67static const int8_t fwd_cos_bit_col_dct_dct_16[8] = { 13, 13, 13, 13,
68 13, 13, 13, 13 };
69static const int8_t fwd_cos_bit_row_dct_dct_16[8] = { 12, 12, 12, 12,
70 12, 12, 12, 12 };
71
72static const TXFM_2D_CFG fwd_txfm_2d_cfg_dct_dct_16 = {
73 16, // .txfm_size
74 8, // .stage_num_col
75 8, // .stage_num_row
76 // 0, // .log_scale
77 fwd_shift_dct_dct_16, // .shift
78 fwd_stage_range_col_dct_dct_16, // .stage_range_col
79 fwd_stage_range_row_dct_dct_16, // .stage_range_row
80 fwd_cos_bit_col_dct_dct_16, // .cos_bit_col
81 fwd_cos_bit_row_dct_dct_16, // .cos_bit_row
82 TXFM_TYPE_DCT16, // .txfm_type_col
83 TXFM_TYPE_DCT16
84}; // .txfm_type_row
85
86// ---------------- config fwd_dct_dct_32 ----------------
87static const int8_t fwd_shift_dct_dct_32[3] = { 2, -4, 0 };
88static const int8_t fwd_stage_range_col_dct_dct_32[10] = { 15, 16, 17, 18, 19,
89 20, 20, 20, 20, 20 };
90static const int8_t fwd_stage_range_row_dct_dct_32[10] = { 16, 17, 18, 19, 20,
91 20, 20, 20, 20, 20 };
92static const int8_t fwd_cos_bit_col_dct_dct_32[10] = { 12, 12, 12, 12, 12,
93 12, 12, 12, 12, 12 };
94static const int8_t fwd_cos_bit_row_dct_dct_32[10] = { 12, 12, 12, 12, 12,
95 12, 12, 12, 12, 12 };
96
97static const TXFM_2D_CFG fwd_txfm_2d_cfg_dct_dct_32 = {
98 32, // .txfm_size
99 10, // .stage_num_col
100 10, // .stage_num_row
101 // 1, // .log_scale
102 fwd_shift_dct_dct_32, // .shift
103 fwd_stage_range_col_dct_dct_32, // .stage_range_col
104 fwd_stage_range_row_dct_dct_32, // .stage_range_row
105 fwd_cos_bit_col_dct_dct_32, // .cos_bit_col
106 fwd_cos_bit_row_dct_dct_32, // .cos_bit_row
107 TXFM_TYPE_DCT32, // .txfm_type_col
108 TXFM_TYPE_DCT32
109}; // .txfm_type_row
110
111// ---------------- config fwd_dct_dct_64 ----------------
112static const int8_t fwd_shift_dct_dct_64[3] = { 2, -2, -2 };
113static const int8_t fwd_stage_range_col_dct_dct_64[12] = {
114 13, 14, 15, 16, 17, 18, 19, 19, 19, 19, 19, 19
115};
116static const int8_t fwd_stage_range_row_dct_dct_64[12] = {
117 17, 18, 19, 20, 21, 22, 22, 22, 22, 22, 22, 22
118};
119static const int8_t fwd_cos_bit_col_dct_dct_64[12] = { 15, 15, 15, 15, 15, 14,
120 13, 13, 13, 13, 13, 13 };
121static const int8_t fwd_cos_bit_row_dct_dct_64[12] = { 15, 14, 13, 12, 11, 10,
122 10, 10, 10, 10, 10, 10 };
123
124static const TXFM_2D_CFG fwd_txfm_2d_cfg_dct_dct_64 = {
125 64, // .txfm_size
126 12, // .stage_num_col
127 12, // .stage_num_row
128 fwd_shift_dct_dct_64, // .shift
129 fwd_stage_range_col_dct_dct_64, // .stage_range_col
130 fwd_stage_range_row_dct_dct_64, // .stage_range_row
131 fwd_cos_bit_col_dct_dct_64, // .cos_bit_col
132 fwd_cos_bit_row_dct_dct_64, // .cos_bit_row
133 TXFM_TYPE_DCT64, // .txfm_type_col
134 TXFM_TYPE_DCT64
135}; // .txfm_type_row
136
137// ---------------- config fwd_dct_adst_4 ----------------
138static const int8_t fwd_shift_dct_adst_4[3] = { 2, 0, 0 };
139static const int8_t fwd_stage_range_col_dct_adst_4[4] = { 15, 16, 17, 17 };
140static const int8_t fwd_stage_range_row_dct_adst_4[6] = {
141 17, 17, 17, 18, 18, 18
142};
143static const int8_t fwd_cos_bit_col_dct_adst_4[4] = { 13, 13, 13, 13 };
144static const int8_t fwd_cos_bit_row_dct_adst_4[6] = { 13, 13, 13, 13, 13, 13 };
145
146static const TXFM_2D_CFG fwd_txfm_2d_cfg_dct_adst_4 = {
147 4, // .txfm_size
148 4, // .stage_num_col
149 6, // .stage_num_row
150 // 0, // .log_scale
151 fwd_shift_dct_adst_4, // .shift
152 fwd_stage_range_col_dct_adst_4, // .stage_range_col
153 fwd_stage_range_row_dct_adst_4, // .stage_range_row
154 fwd_cos_bit_col_dct_adst_4, // .cos_bit_col
155 fwd_cos_bit_row_dct_adst_4, // .cos_bit_row
156 TXFM_TYPE_DCT4, // .txfm_type_col
157 TXFM_TYPE_ADST4
158}; // .txfm_type_row
159
160// ---------------- config fwd_dct_adst_8 ----------------
161static const int8_t fwd_shift_dct_adst_8[3] = { 2, -1, 0 };
162static const int8_t fwd_stage_range_col_dct_adst_8[6] = {
163 15, 16, 17, 18, 18, 18
164};
165static const int8_t fwd_stage_range_row_dct_adst_8[8] = { 17, 17, 17, 18,
166 18, 19, 19, 19 };
167static const int8_t fwd_cos_bit_col_dct_adst_8[6] = { 13, 13, 13, 13, 13, 13 };
168static const int8_t fwd_cos_bit_row_dct_adst_8[8] = { 13, 13, 13, 13,
169 13, 13, 13, 13 };
170
171static const TXFM_2D_CFG fwd_txfm_2d_cfg_dct_adst_8 = {
172 8, // .txfm_size
173 6, // .stage_num_col
174 8, // .stage_num_row
175 // 0, // .log_scale
176 fwd_shift_dct_adst_8, // .shift
177 fwd_stage_range_col_dct_adst_8, // .stage_range_col
178 fwd_stage_range_row_dct_adst_8, // .stage_range_row
179 fwd_cos_bit_col_dct_adst_8, // .cos_bit_col
180 fwd_cos_bit_row_dct_adst_8, // .cos_bit_row
181 TXFM_TYPE_DCT8, // .txfm_type_col
182 TXFM_TYPE_ADST8
183}; // .txfm_type_row
184
185// ---------------- config fwd_dct_adst_16 ----------------
186static const int8_t fwd_shift_dct_adst_16[3] = { 2, -2, 0 };
187static const int8_t fwd_stage_range_col_dct_adst_16[8] = { 15, 16, 17, 18,
188 19, 19, 19, 19 };
189static const int8_t fwd_stage_range_row_dct_adst_16[10] = {
190 17, 17, 17, 18, 18, 19, 19, 20, 20, 20
191};
192static const int8_t fwd_cos_bit_col_dct_adst_16[8] = { 13, 13, 13, 13,
193 13, 13, 13, 13 };
194static const int8_t fwd_cos_bit_row_dct_adst_16[10] = { 12, 12, 12, 12, 12,
195 12, 12, 12, 12, 12 };
196
197static const TXFM_2D_CFG fwd_txfm_2d_cfg_dct_adst_16 = {
198 16, // .txfm_size
199 8, // .stage_num_col
200 10, // .stage_num_row
201 // 0, // .log_scale
202 fwd_shift_dct_adst_16, // .shift
203 fwd_stage_range_col_dct_adst_16, // .stage_range_col
204 fwd_stage_range_row_dct_adst_16, // .stage_range_row
205 fwd_cos_bit_col_dct_adst_16, // .cos_bit_col
206 fwd_cos_bit_row_dct_adst_16, // .cos_bit_row
207 TXFM_TYPE_DCT16, // .txfm_type_col
208 TXFM_TYPE_ADST16
209}; // .txfm_type_row
210
211// ---------------- config fwd_dct_adst_32 ----------------
212static const int8_t fwd_shift_dct_adst_32[3] = { 2, -4, 0 };
213static const int8_t fwd_stage_range_col_dct_adst_32[10] = {
214 15, 16, 17, 18, 19, 20, 20, 20, 20, 20
215};
216static const int8_t fwd_stage_range_row_dct_adst_32[12] = {
217 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 20
218};
219static const int8_t fwd_cos_bit_col_dct_adst_32[10] = { 12, 12, 12, 12, 12,
220 12, 12, 12, 12, 12 };
221static const int8_t fwd_cos_bit_row_dct_adst_32[12] = {
222 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12
223};
224
225static const TXFM_2D_CFG fwd_txfm_2d_cfg_dct_adst_32 = {
226 32, // .txfm_size
227 10, // .stage_num_col
228 12, // .stage_num_row
229 // 1, // .log_scale
230 fwd_shift_dct_adst_32, // .shift
231 fwd_stage_range_col_dct_adst_32, // .stage_range_col
232 fwd_stage_range_row_dct_adst_32, // .stage_range_row
233 fwd_cos_bit_col_dct_adst_32, // .cos_bit_col
234 fwd_cos_bit_row_dct_adst_32, // .cos_bit_row
235 TXFM_TYPE_DCT32, // .txfm_type_col
236 TXFM_TYPE_ADST32
237}; // .txfm_type_row
238// ---------------- config fwd_adst_adst_4 ----------------
239static const int8_t fwd_shift_adst_adst_4[3] = { 2, 0, 0 };
240static const int8_t fwd_stage_range_col_adst_adst_4[6] = { 15, 15, 16,
241 17, 17, 17 };
242static const int8_t fwd_stage_range_row_adst_adst_4[6] = { 17, 17, 17,
243 18, 18, 18 };
244static const int8_t fwd_cos_bit_col_adst_adst_4[6] = { 13, 13, 13, 13, 13, 13 };
245static const int8_t fwd_cos_bit_row_adst_adst_4[6] = { 13, 13, 13, 13, 13, 13 };
246
247static const TXFM_2D_CFG fwd_txfm_2d_cfg_adst_adst_4 = {
248 4, // .txfm_size
249 6, // .stage_num_col
250 6, // .stage_num_row
251 // 0, // .log_scale
252 fwd_shift_adst_adst_4, // .shift
253 fwd_stage_range_col_adst_adst_4, // .stage_range_col
254 fwd_stage_range_row_adst_adst_4, // .stage_range_row
255 fwd_cos_bit_col_adst_adst_4, // .cos_bit_col
256 fwd_cos_bit_row_adst_adst_4, // .cos_bit_row
257 TXFM_TYPE_ADST4, // .txfm_type_col
258 TXFM_TYPE_ADST4
259}; // .txfm_type_row
260
261// ---------------- config fwd_adst_adst_8 ----------------
262static const int8_t fwd_shift_adst_adst_8[3] = { 2, -1, 0 };
263static const int8_t fwd_stage_range_col_adst_adst_8[8] = { 15, 15, 16, 17,
264 17, 18, 18, 18 };
265static const int8_t fwd_stage_range_row_adst_adst_8[8] = { 17, 17, 17, 18,
266 18, 19, 19, 19 };
267static const int8_t fwd_cos_bit_col_adst_adst_8[8] = { 13, 13, 13, 13,
268 13, 13, 13, 13 };
269static const int8_t fwd_cos_bit_row_adst_adst_8[8] = { 13, 13, 13, 13,
270 13, 13, 13, 13 };
271
272static const TXFM_2D_CFG fwd_txfm_2d_cfg_adst_adst_8 = {
273 8, // .txfm_size
274 8, // .stage_num_col
275 8, // .stage_num_row
276 // 0, // .log_scale
277 fwd_shift_adst_adst_8, // .shift
278 fwd_stage_range_col_adst_adst_8, // .stage_range_col
279 fwd_stage_range_row_adst_adst_8, // .stage_range_row
280 fwd_cos_bit_col_adst_adst_8, // .cos_bit_col
281 fwd_cos_bit_row_adst_adst_8, // .cos_bit_row
282 TXFM_TYPE_ADST8, // .txfm_type_col
283 TXFM_TYPE_ADST8
284}; // .txfm_type_row
285
286// ---------------- config fwd_adst_adst_16 ----------------
287static const int8_t fwd_shift_adst_adst_16[3] = { 2, -2, 0 };
288static const int8_t fwd_stage_range_col_adst_adst_16[10] = {
289 15, 15, 16, 17, 17, 18, 18, 19, 19, 19
290};
291static const int8_t fwd_stage_range_row_adst_adst_16[10] = {
292 17, 17, 17, 18, 18, 19, 19, 20, 20, 20
293};
294static const int8_t fwd_cos_bit_col_adst_adst_16[10] = { 13, 13, 13, 13, 13,
295 13, 13, 13, 13, 13 };
296static const int8_t fwd_cos_bit_row_adst_adst_16[10] = { 12, 12, 12, 12, 12,
297 12, 12, 12, 12, 12 };
298
299static const TXFM_2D_CFG fwd_txfm_2d_cfg_adst_adst_16 = {
300 16, // .txfm_size
301 10, // .stage_num_col
302 10, // .stage_num_row
303 // 0, // .log_scale
304 fwd_shift_adst_adst_16, // .shift
305 fwd_stage_range_col_adst_adst_16, // .stage_range_col
306 fwd_stage_range_row_adst_adst_16, // .stage_range_row
307 fwd_cos_bit_col_adst_adst_16, // .cos_bit_col
308 fwd_cos_bit_row_adst_adst_16, // .cos_bit_row
309 TXFM_TYPE_ADST16, // .txfm_type_col
310 TXFM_TYPE_ADST16
311}; // .txfm_type_row
312
313// ---------------- config fwd_adst_adst_32 ----------------
314static const int8_t fwd_shift_adst_adst_32[3] = { 2, -4, 0 };
315static const int8_t fwd_stage_range_col_adst_adst_32[12] = {
316 15, 15, 16, 17, 17, 18, 18, 19, 19, 20, 20, 20
317};
318static const int8_t fwd_stage_range_row_adst_adst_32[12] = {
319 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 20
320};
321static const int8_t fwd_cos_bit_col_adst_adst_32[12] = {
322 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12
323};
324static const int8_t fwd_cos_bit_row_adst_adst_32[12] = {
325 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12
326};
327
328static const TXFM_2D_CFG fwd_txfm_2d_cfg_adst_adst_32 = {
329 32, // .txfm_size
330 12, // .stage_num_col
331 12, // .stage_num_row
332 // 1, // .log_scale
333 fwd_shift_adst_adst_32, // .shift
334 fwd_stage_range_col_adst_adst_32, // .stage_range_col
335 fwd_stage_range_row_adst_adst_32, // .stage_range_row
336 fwd_cos_bit_col_adst_adst_32, // .cos_bit_col
337 fwd_cos_bit_row_adst_adst_32, // .cos_bit_row
338 TXFM_TYPE_ADST32, // .txfm_type_col
339 TXFM_TYPE_ADST32
340}; // .txfm_type_row
341
342// ---------------- config fwd_adst_dct_4 ----------------
343static const int8_t fwd_shift_adst_dct_4[3] = { 2, 0, 0 };
344static const int8_t fwd_stage_range_col_adst_dct_4[6] = {
345 15, 15, 16, 17, 17, 17
346};
347static const int8_t fwd_stage_range_row_adst_dct_4[4] = { 17, 18, 18, 18 };
348static const int8_t fwd_cos_bit_col_adst_dct_4[6] = { 13, 13, 13, 13, 13, 13 };
349static const int8_t fwd_cos_bit_row_adst_dct_4[4] = { 13, 13, 13, 13 };
350
351static const TXFM_2D_CFG fwd_txfm_2d_cfg_adst_dct_4 = {
352 4, // .txfm_size
353 6, // .stage_num_col
354 4, // .stage_num_row
355 // 0, // .log_scale
356 fwd_shift_adst_dct_4, // .shift
357 fwd_stage_range_col_adst_dct_4, // .stage_range_col
358 fwd_stage_range_row_adst_dct_4, // .stage_range_row
359 fwd_cos_bit_col_adst_dct_4, // .cos_bit_col
360 fwd_cos_bit_row_adst_dct_4, // .cos_bit_row
361 TXFM_TYPE_ADST4, // .txfm_type_col
362 TXFM_TYPE_DCT4
363}; // .txfm_type_row
364
365// ---------------- config fwd_adst_dct_8 ----------------
366static const int8_t fwd_shift_adst_dct_8[3] = { 2, -1, 0 };
367static const int8_t fwd_stage_range_col_adst_dct_8[8] = { 15, 15, 16, 17,
368 17, 18, 18, 18 };
369static const int8_t fwd_stage_range_row_adst_dct_8[6] = {
370 17, 18, 19, 19, 19, 19
371};
372static const int8_t fwd_cos_bit_col_adst_dct_8[8] = { 13, 13, 13, 13,
373 13, 13, 13, 13 };
374static const int8_t fwd_cos_bit_row_adst_dct_8[6] = { 13, 13, 13, 13, 13, 13 };
375
376static const TXFM_2D_CFG fwd_txfm_2d_cfg_adst_dct_8 = {
377 8, // .txfm_size
378 8, // .stage_num_col
379 6, // .stage_num_row
380 // 0, // .log_scale
381 fwd_shift_adst_dct_8, // .shift
382 fwd_stage_range_col_adst_dct_8, // .stage_range_col
383 fwd_stage_range_row_adst_dct_8, // .stage_range_row
384 fwd_cos_bit_col_adst_dct_8, // .cos_bit_col
385 fwd_cos_bit_row_adst_dct_8, // .cos_bit_row
386 TXFM_TYPE_ADST8, // .txfm_type_col
387 TXFM_TYPE_DCT8
388}; // .txfm_type_row
389
390// ---------------- config fwd_adst_dct_16 ----------------
391static const int8_t fwd_shift_adst_dct_16[3] = { 2, -2, 0 };
392static const int8_t fwd_stage_range_col_adst_dct_16[10] = {
393 15, 15, 16, 17, 17, 18, 18, 19, 19, 19
394};
395static const int8_t fwd_stage_range_row_adst_dct_16[8] = { 17, 18, 19, 20,
396 20, 20, 20, 20 };
397static const int8_t fwd_cos_bit_col_adst_dct_16[10] = { 13, 13, 13, 13, 13,
398 13, 13, 13, 13, 13 };
399static const int8_t fwd_cos_bit_row_adst_dct_16[8] = { 12, 12, 12, 12,
400 12, 12, 12, 12 };
401
402static const TXFM_2D_CFG fwd_txfm_2d_cfg_adst_dct_16 = {
403 16, // .txfm_size
404 10, // .stage_num_col
405 8, // .stage_num_row
406 // 0, // .log_scale
407 fwd_shift_adst_dct_16, // .shift
408 fwd_stage_range_col_adst_dct_16, // .stage_range_col
409 fwd_stage_range_row_adst_dct_16, // .stage_range_row
410 fwd_cos_bit_col_adst_dct_16, // .cos_bit_col
411 fwd_cos_bit_row_adst_dct_16, // .cos_bit_row
412 TXFM_TYPE_ADST16, // .txfm_type_col
413 TXFM_TYPE_DCT16
414}; // .txfm_type_row
415
416// ---------------- config fwd_adst_dct_32 ----------------
417static const int8_t fwd_shift_adst_dct_32[3] = { 2, -4, 0 };
418static const int8_t fwd_stage_range_col_adst_dct_32[12] = {
419 15, 15, 16, 17, 17, 18, 18, 19, 19, 20, 20, 20
420};
421static const int8_t fwd_stage_range_row_adst_dct_32[10] = {
422 16, 17, 18, 19, 20, 20, 20, 20, 20, 20
423};
424static const int8_t fwd_cos_bit_col_adst_dct_32[12] = {
425 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12
426};
427static const int8_t fwd_cos_bit_row_adst_dct_32[10] = { 12, 12, 12, 12, 12,
428 12, 12, 12, 12, 12 };
429
430static const TXFM_2D_CFG fwd_txfm_2d_cfg_adst_dct_32 = {
431 32, // .txfm_size
432 12, // .stage_num_col
433 10, // .stage_num_row
434 // 1, // .log_scale
435 fwd_shift_adst_dct_32, // .shift
436 fwd_stage_range_col_adst_dct_32, // .stage_range_col
437 fwd_stage_range_row_adst_dct_32, // .stage_range_row
438 fwd_cos_bit_col_adst_dct_32, // .cos_bit_col
439 fwd_cos_bit_row_adst_dct_32, // .cos_bit_row
440 TXFM_TYPE_ADST32, // .txfm_type_col
441 TXFM_TYPE_DCT32
442}; // .txfm_type_row
Yaowu Xuf883b422016-08-30 14:01:10 -0700443#endif // AV1_FWD_TXFM2D_CFG_H_