1 /*
2  * Copyright (c) 2016, Alliance for Open Media. All rights reserved
3  *
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.
10  */
11 
12 #ifndef AV1_FWD_TXFM1D_H_
13 #define AV1_FWD_TXFM1D_H_
14 
15 #include "av1/common/av1_txfm.h"
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 void av1_fdct4_new(const int32_t *input, int32_t *output, const int8_t *cos_bit,
22                    const int8_t *stage_range);
23 void av1_fdct8_new(const int32_t *input, int32_t *output, const int8_t *cos_bit,
24                    const int8_t *stage_range);
25 void av1_fdct16_new(const int32_t *input, int32_t *output,
26                     const int8_t *cos_bit, const int8_t *stage_range);
27 void av1_fdct32_new(const int32_t *input, int32_t *output,
28                     const int8_t *cos_bit, const int8_t *stage_range);
29 #if CONFIG_TX64X64
30 void av1_fdct64_new(const int32_t *input, int32_t *output,
31                     const int8_t *cos_bit, const int8_t *stage_range);
32 #endif  // CONFIG_TX64X64
33 
34 void av1_fadst4_new(const int32_t *input, int32_t *output,
35                     const int8_t *cos_bit, const int8_t *stage_range);
36 void av1_fadst8_new(const int32_t *input, int32_t *output,
37                     const int8_t *cos_bit, const int8_t *stage_range);
38 void av1_fadst16_new(const int32_t *input, int32_t *output,
39                      const int8_t *cos_bit, const int8_t *stage_range);
40 void av1_fadst32_new(const int32_t *input, int32_t *output,
41                      const int8_t *cos_bit, const int8_t *stage_range);
42 #if CONFIG_EXT_TX
43 void av1_fidentity4_c(const int32_t *input, int32_t *output,
44                       const int8_t *cos_bit, const int8_t *stage_range);
45 void av1_fidentity8_c(const int32_t *input, int32_t *output,
46                       const int8_t *cos_bit, const int8_t *stage_range);
47 void av1_fidentity16_c(const int32_t *input, int32_t *output,
48                        const int8_t *cos_bit, const int8_t *stage_range);
49 void av1_fidentity32_c(const int32_t *input, int32_t *output,
50                        const int8_t *cos_bit, const int8_t *stage_range);
51 #if CONFIG_TX64X64
52 void av1_fidentity64_c(const int32_t *input, int32_t *output,
53                        const int8_t *cos_bit, const int8_t *stage_range);
54 #endif  // CONFIG_TX64X64
55 #endif  // CONFIG_EXT_TX
56 
57 #ifdef __cplusplus
58 }
59 #endif
60 
61 #endif  // AV1_FWD_TXFM1D_H_
62