Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | bde4ac8 | 2016-11-28 15:26:06 -0800 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | bde4ac8 | 2016-11-28 15:26:06 -0800 | [diff] [blame] | 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #ifndef AV1_INV_TXFM1D_H_ |
| 13 | #define AV1_INV_TXFM1D_H_ |
| 14 | |
| 15 | #include "av1/common/av1_txfm.h" |
| 16 | |
| 17 | #ifdef __cplusplus |
| 18 | extern "C" { |
| 19 | #endif |
| 20 | |
| 21 | void av1_idct4_new(const int32_t *input, int32_t *output, const int8_t *cos_bit, |
| 22 | const int8_t *stage_range); |
| 23 | void av1_idct8_new(const int32_t *input, int32_t *output, const int8_t *cos_bit, |
| 24 | const int8_t *stage_range); |
| 25 | void av1_idct16_new(const int32_t *input, int32_t *output, |
| 26 | const int8_t *cos_bit, const int8_t *stage_range); |
| 27 | void av1_idct32_new(const int32_t *input, int32_t *output, |
| 28 | const int8_t *cos_bit, const int8_t *stage_range); |
| 29 | void av1_idct64_new(const int32_t *input, int32_t *output, |
| 30 | const int8_t *cos_bit, const int8_t *stage_range); |
| 31 | |
| 32 | void av1_iadst4_new(const int32_t *input, int32_t *output, |
| 33 | const int8_t *cos_bit, const int8_t *stage_range); |
| 34 | void av1_iadst8_new(const int32_t *input, int32_t *output, |
| 35 | const int8_t *cos_bit, const int8_t *stage_range); |
| 36 | void av1_iadst16_new(const int32_t *input, int32_t *output, |
| 37 | const int8_t *cos_bit, const int8_t *stage_range); |
| 38 | void av1_iadst32_new(const int32_t *input, int32_t *output, |
| 39 | const int8_t *cos_bit, const int8_t *stage_range); |
| 40 | |
| 41 | #ifdef __cplusplus |
| 42 | } |
| 43 | #endif |
| 44 | |
| 45 | #endif // AV1_INV_TXFM1D_H_ |