Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 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 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame^] | 11 | #ifndef AV1_FWD_TXFM2D_CFG_H_ |
| 12 | #define AV1_FWD_TXFM2D_CFG_H_ |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 13 | #include "av1/common/enums.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame^] | 14 | #include "av1/common/av1_fwd_txfm1d.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 15 | // ---------------- config fwd_dct_dct_4 ---------------- |
| 16 | static const int8_t fwd_shift_dct_dct_4[3] = { 2, 0, 0 }; |
| 17 | static const int8_t fwd_stage_range_col_dct_dct_4[4] = { 15, 16, 17, 17 }; |
| 18 | static const int8_t fwd_stage_range_row_dct_dct_4[4] = { 17, 18, 18, 18 }; |
| 19 | static const int8_t fwd_cos_bit_col_dct_dct_4[4] = { 13, 13, 13, 13 }; |
| 20 | static const int8_t fwd_cos_bit_row_dct_dct_4[4] = { 13, 13, 13, 13 }; |
| 21 | |
| 22 | static 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 ---------------- |
| 37 | static const int8_t fwd_shift_dct_dct_8[3] = { 2, -1, 0 }; |
| 38 | static const int8_t fwd_stage_range_col_dct_dct_8[6] = { |
| 39 | 15, 16, 17, 18, 18, 18 |
| 40 | }; |
| 41 | static const int8_t fwd_stage_range_row_dct_dct_8[6] = { |
| 42 | 17, 18, 19, 19, 19, 19 |
| 43 | }; |
| 44 | static const int8_t fwd_cos_bit_col_dct_dct_8[6] = { 13, 13, 13, 13, 13, 13 }; |
| 45 | static const int8_t fwd_cos_bit_row_dct_dct_8[6] = { 13, 13, 13, 13, 13, 13 }; |
| 46 | |
| 47 | static 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 ---------------- |
| 62 | static const int8_t fwd_shift_dct_dct_16[3] = { 2, -2, 0 }; |
| 63 | static const int8_t fwd_stage_range_col_dct_dct_16[8] = { 15, 16, 17, 18, |
| 64 | 19, 19, 19, 19 }; |
| 65 | static const int8_t fwd_stage_range_row_dct_dct_16[8] = { 17, 18, 19, 20, |
| 66 | 20, 20, 20, 20 }; |
| 67 | static const int8_t fwd_cos_bit_col_dct_dct_16[8] = { 13, 13, 13, 13, |
| 68 | 13, 13, 13, 13 }; |
| 69 | static const int8_t fwd_cos_bit_row_dct_dct_16[8] = { 12, 12, 12, 12, |
| 70 | 12, 12, 12, 12 }; |
| 71 | |
| 72 | static 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 ---------------- |
| 87 | static const int8_t fwd_shift_dct_dct_32[3] = { 2, -4, 0 }; |
| 88 | static const int8_t fwd_stage_range_col_dct_dct_32[10] = { 15, 16, 17, 18, 19, |
| 89 | 20, 20, 20, 20, 20 }; |
| 90 | static const int8_t fwd_stage_range_row_dct_dct_32[10] = { 16, 17, 18, 19, 20, |
| 91 | 20, 20, 20, 20, 20 }; |
| 92 | static const int8_t fwd_cos_bit_col_dct_dct_32[10] = { 12, 12, 12, 12, 12, |
| 93 | 12, 12, 12, 12, 12 }; |
| 94 | static const int8_t fwd_cos_bit_row_dct_dct_32[10] = { 12, 12, 12, 12, 12, |
| 95 | 12, 12, 12, 12, 12 }; |
| 96 | |
| 97 | static 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 ---------------- |
| 112 | static const int8_t fwd_shift_dct_dct_64[3] = { 2, -2, -2 }; |
| 113 | static 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 | }; |
| 116 | static 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 | }; |
| 119 | static const int8_t fwd_cos_bit_col_dct_dct_64[12] = { 15, 15, 15, 15, 15, 14, |
| 120 | 13, 13, 13, 13, 13, 13 }; |
| 121 | static 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 | |
| 124 | static 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 ---------------- |
| 138 | static const int8_t fwd_shift_dct_adst_4[3] = { 2, 0, 0 }; |
| 139 | static const int8_t fwd_stage_range_col_dct_adst_4[4] = { 15, 16, 17, 17 }; |
| 140 | static const int8_t fwd_stage_range_row_dct_adst_4[6] = { |
| 141 | 17, 17, 17, 18, 18, 18 |
| 142 | }; |
| 143 | static const int8_t fwd_cos_bit_col_dct_adst_4[4] = { 13, 13, 13, 13 }; |
| 144 | static const int8_t fwd_cos_bit_row_dct_adst_4[6] = { 13, 13, 13, 13, 13, 13 }; |
| 145 | |
| 146 | static 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 ---------------- |
| 161 | static const int8_t fwd_shift_dct_adst_8[3] = { 2, -1, 0 }; |
| 162 | static const int8_t fwd_stage_range_col_dct_adst_8[6] = { |
| 163 | 15, 16, 17, 18, 18, 18 |
| 164 | }; |
| 165 | static const int8_t fwd_stage_range_row_dct_adst_8[8] = { 17, 17, 17, 18, |
| 166 | 18, 19, 19, 19 }; |
| 167 | static const int8_t fwd_cos_bit_col_dct_adst_8[6] = { 13, 13, 13, 13, 13, 13 }; |
| 168 | static const int8_t fwd_cos_bit_row_dct_adst_8[8] = { 13, 13, 13, 13, |
| 169 | 13, 13, 13, 13 }; |
| 170 | |
| 171 | static 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 ---------------- |
| 186 | static const int8_t fwd_shift_dct_adst_16[3] = { 2, -2, 0 }; |
| 187 | static const int8_t fwd_stage_range_col_dct_adst_16[8] = { 15, 16, 17, 18, |
| 188 | 19, 19, 19, 19 }; |
| 189 | static const int8_t fwd_stage_range_row_dct_adst_16[10] = { |
| 190 | 17, 17, 17, 18, 18, 19, 19, 20, 20, 20 |
| 191 | }; |
| 192 | static const int8_t fwd_cos_bit_col_dct_adst_16[8] = { 13, 13, 13, 13, |
| 193 | 13, 13, 13, 13 }; |
| 194 | static const int8_t fwd_cos_bit_row_dct_adst_16[10] = { 12, 12, 12, 12, 12, |
| 195 | 12, 12, 12, 12, 12 }; |
| 196 | |
| 197 | static 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 ---------------- |
| 212 | static const int8_t fwd_shift_dct_adst_32[3] = { 2, -4, 0 }; |
| 213 | static const int8_t fwd_stage_range_col_dct_adst_32[10] = { |
| 214 | 15, 16, 17, 18, 19, 20, 20, 20, 20, 20 |
| 215 | }; |
| 216 | static 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 | }; |
| 219 | static const int8_t fwd_cos_bit_col_dct_adst_32[10] = { 12, 12, 12, 12, 12, |
| 220 | 12, 12, 12, 12, 12 }; |
| 221 | static 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 | |
| 225 | static 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 ---------------- |
| 239 | static const int8_t fwd_shift_adst_adst_4[3] = { 2, 0, 0 }; |
| 240 | static const int8_t fwd_stage_range_col_adst_adst_4[6] = { 15, 15, 16, |
| 241 | 17, 17, 17 }; |
| 242 | static const int8_t fwd_stage_range_row_adst_adst_4[6] = { 17, 17, 17, |
| 243 | 18, 18, 18 }; |
| 244 | static const int8_t fwd_cos_bit_col_adst_adst_4[6] = { 13, 13, 13, 13, 13, 13 }; |
| 245 | static const int8_t fwd_cos_bit_row_adst_adst_4[6] = { 13, 13, 13, 13, 13, 13 }; |
| 246 | |
| 247 | static 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 ---------------- |
| 262 | static const int8_t fwd_shift_adst_adst_8[3] = { 2, -1, 0 }; |
| 263 | static const int8_t fwd_stage_range_col_adst_adst_8[8] = { 15, 15, 16, 17, |
| 264 | 17, 18, 18, 18 }; |
| 265 | static const int8_t fwd_stage_range_row_adst_adst_8[8] = { 17, 17, 17, 18, |
| 266 | 18, 19, 19, 19 }; |
| 267 | static const int8_t fwd_cos_bit_col_adst_adst_8[8] = { 13, 13, 13, 13, |
| 268 | 13, 13, 13, 13 }; |
| 269 | static const int8_t fwd_cos_bit_row_adst_adst_8[8] = { 13, 13, 13, 13, |
| 270 | 13, 13, 13, 13 }; |
| 271 | |
| 272 | static 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 ---------------- |
| 287 | static const int8_t fwd_shift_adst_adst_16[3] = { 2, -2, 0 }; |
| 288 | static const int8_t fwd_stage_range_col_adst_adst_16[10] = { |
| 289 | 15, 15, 16, 17, 17, 18, 18, 19, 19, 19 |
| 290 | }; |
| 291 | static const int8_t fwd_stage_range_row_adst_adst_16[10] = { |
| 292 | 17, 17, 17, 18, 18, 19, 19, 20, 20, 20 |
| 293 | }; |
| 294 | static const int8_t fwd_cos_bit_col_adst_adst_16[10] = { 13, 13, 13, 13, 13, |
| 295 | 13, 13, 13, 13, 13 }; |
| 296 | static const int8_t fwd_cos_bit_row_adst_adst_16[10] = { 12, 12, 12, 12, 12, |
| 297 | 12, 12, 12, 12, 12 }; |
| 298 | |
| 299 | static 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 ---------------- |
| 314 | static const int8_t fwd_shift_adst_adst_32[3] = { 2, -4, 0 }; |
| 315 | static 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 | }; |
| 318 | static 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 | }; |
| 321 | static 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 | }; |
| 324 | static 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 | |
| 328 | static 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 ---------------- |
| 343 | static const int8_t fwd_shift_adst_dct_4[3] = { 2, 0, 0 }; |
| 344 | static const int8_t fwd_stage_range_col_adst_dct_4[6] = { |
| 345 | 15, 15, 16, 17, 17, 17 |
| 346 | }; |
| 347 | static const int8_t fwd_stage_range_row_adst_dct_4[4] = { 17, 18, 18, 18 }; |
| 348 | static const int8_t fwd_cos_bit_col_adst_dct_4[6] = { 13, 13, 13, 13, 13, 13 }; |
| 349 | static const int8_t fwd_cos_bit_row_adst_dct_4[4] = { 13, 13, 13, 13 }; |
| 350 | |
| 351 | static 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 ---------------- |
| 366 | static const int8_t fwd_shift_adst_dct_8[3] = { 2, -1, 0 }; |
| 367 | static const int8_t fwd_stage_range_col_adst_dct_8[8] = { 15, 15, 16, 17, |
| 368 | 17, 18, 18, 18 }; |
| 369 | static const int8_t fwd_stage_range_row_adst_dct_8[6] = { |
| 370 | 17, 18, 19, 19, 19, 19 |
| 371 | }; |
| 372 | static const int8_t fwd_cos_bit_col_adst_dct_8[8] = { 13, 13, 13, 13, |
| 373 | 13, 13, 13, 13 }; |
| 374 | static const int8_t fwd_cos_bit_row_adst_dct_8[6] = { 13, 13, 13, 13, 13, 13 }; |
| 375 | |
| 376 | static 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 ---------------- |
| 391 | static const int8_t fwd_shift_adst_dct_16[3] = { 2, -2, 0 }; |
| 392 | static const int8_t fwd_stage_range_col_adst_dct_16[10] = { |
| 393 | 15, 15, 16, 17, 17, 18, 18, 19, 19, 19 |
| 394 | }; |
| 395 | static const int8_t fwd_stage_range_row_adst_dct_16[8] = { 17, 18, 19, 20, |
| 396 | 20, 20, 20, 20 }; |
| 397 | static const int8_t fwd_cos_bit_col_adst_dct_16[10] = { 13, 13, 13, 13, 13, |
| 398 | 13, 13, 13, 13, 13 }; |
| 399 | static const int8_t fwd_cos_bit_row_adst_dct_16[8] = { 12, 12, 12, 12, |
| 400 | 12, 12, 12, 12 }; |
| 401 | |
| 402 | static 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 ---------------- |
| 417 | static const int8_t fwd_shift_adst_dct_32[3] = { 2, -4, 0 }; |
| 418 | static 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 | }; |
| 421 | static const int8_t fwd_stage_range_row_adst_dct_32[10] = { |
| 422 | 16, 17, 18, 19, 20, 20, 20, 20, 20, 20 |
| 423 | }; |
| 424 | static 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 | }; |
| 427 | static const int8_t fwd_cos_bit_row_adst_dct_32[10] = { 12, 12, 12, 12, 12, |
| 428 | 12, 12, 12, 12, 12 }; |
| 429 | |
| 430 | static 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame^] | 443 | #endif // AV1_FWD_TXFM2D_CFG_H_ |