blob: 36e7ee2c0db7a54c88d775fc2e9e92e67443da8c [file] [log] [blame]
Angie Chiang96baa732015-11-18 15:17:18 -08001/*
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Angie Chiang96baa732015-11-18 15:17:18 -08003 *
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07004 * 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.
Angie Chiang96baa732015-11-18 15:17:18 -080010 */
11
Yaowu Xuf883b422016-08-30 14:01:10 -070012#ifndef AV1_ENCODER_HYBRID_FWD_TXFM_H_
13#define AV1_ENCODER_HYBRID_FWD_TXFM_H_
Angie Chiang96baa732015-11-18 15:17:18 -080014
Yaowu Xuf883b422016-08-30 14:01:10 -070015#include "./aom_config.h"
Angie Chiang96baa732015-11-18 15:17:18 -080016
Angie Chiang96baa732015-11-18 15:17:18 -080017#ifdef __cplusplus
18extern "C" {
19#endif
20
hui suf11fb882017-03-27 14:56:33 -070021void av1_fwd_txfm(const int16_t *src_diff, tran_low_t *coeff, int diff_stride,
22 FWD_TXFM_PARAM *fwd_txfm_param);
Angie Chiang96baa732015-11-18 15:17:18 -080023
hui suf11fb882017-03-27 14:56:33 -070024void av1_highbd_fwd_txfm(const int16_t *src_diff, tran_low_t *coeff,
25 int diff_stride, FWD_TXFM_PARAM *fwd_txfm_param);
Angie Chiang96baa732015-11-18 15:17:18 -080026
Angie Chiang96baa732015-11-18 15:17:18 -080027#ifdef __cplusplus
28} // extern "C"
29#endif
30
Yaowu Xuf883b422016-08-30 14:01:10 -070031#endif // AV1_ENCODER_HYBRID_FWD_TXFM_H_