OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebM project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 &vp9_idct32x32_1024_add_c, | 317 &vp9_idct32x32_1024_add_c, |
318 &vp9_idct32x32_1_add_msa, | 318 &vp9_idct32x32_1_add_msa, |
319 TX_32X32, 1), | 319 TX_32X32, 1), |
320 make_tuple(&vp9_fdct16x16_c, | 320 make_tuple(&vp9_fdct16x16_c, |
321 &vp9_idct16x16_256_add_c, | 321 &vp9_idct16x16_256_add_c, |
322 &vp9_idct16x16_10_add_msa, | 322 &vp9_idct16x16_10_add_msa, |
323 TX_16X16, 10), | 323 TX_16X16, 10), |
324 make_tuple(&vp9_fdct16x16_c, | 324 make_tuple(&vp9_fdct16x16_c, |
325 &vp9_idct16x16_256_add_c, | 325 &vp9_idct16x16_256_add_c, |
326 &vp9_idct16x16_1_add_msa, | 326 &vp9_idct16x16_1_add_msa, |
327 TX_16X16, 1))); | 327 TX_16X16, 1), |
| 328 make_tuple(&vp9_fdct8x8_c, |
| 329 &vp9_idct8x8_64_add_c, |
| 330 &vp9_idct8x8_12_add_msa, |
| 331 TX_8X8, 10), |
| 332 make_tuple(&vp9_fdct8x8_c, |
| 333 &vp9_idct8x8_64_add_c, |
| 334 &vp9_idct8x8_1_add_msa, |
| 335 TX_8X8, 1))); |
328 #endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE | 336 #endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
329 | 337 |
330 } // namespace | 338 } // namespace |
OLD | NEW |