blob: 3866c38f87f217502d8a09dcd1583ee19c6ad98b [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 Chiang2cc057c2017-01-03 18:31:47 -080017typedef enum FWD_TXFM_OPT { FWD_TXFM_OPT_NORMAL } FWD_TXFM_OPT;
Angie Chiang96baa732015-11-18 15:17:18 -080018
19typedef struct FWD_TXFM_PARAM {
20 TX_TYPE tx_type;
21 TX_SIZE tx_size;
Angie Chiang96baa732015-11-18 15:17:18 -080022 int lossless;
Yaowu Xuf883b422016-08-30 14:01:10 -070023#if CONFIG_AOM_HIGHBITDEPTH
Angie Chiangd9a0cbb2016-03-21 14:34:25 -070024 int bd;
Yaowu Xuf883b422016-08-30 14:01:10 -070025#endif // CONFIG_AOM_HIGHBITDEPTH
Angie Chiang96baa732015-11-18 15:17:18 -080026} FWD_TXFM_PARAM;
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
hui suf11fb882017-03-27 14:56:33 -070032void av1_fwd_txfm(const int16_t *src_diff, tran_low_t *coeff, int diff_stride,
33 FWD_TXFM_PARAM *fwd_txfm_param);
Angie Chiang96baa732015-11-18 15:17:18 -080034
Yaowu Xuf883b422016-08-30 14:01:10 -070035#if CONFIG_AOM_HIGHBITDEPTH
hui suf11fb882017-03-27 14:56:33 -070036void av1_highbd_fwd_txfm(const int16_t *src_diff, tran_low_t *coeff,
37 int diff_stride, FWD_TXFM_PARAM *fwd_txfm_param);
Yaowu Xuf883b422016-08-30 14:01:10 -070038#endif // CONFIG_AOM_HIGHBITDEPTH
Angie Chiang96baa732015-11-18 15:17:18 -080039
Angie Chiang96baa732015-11-18 15:17:18 -080040#ifdef __cplusplus
41} // extern "C"
42#endif
43
Yaowu Xuf883b422016-08-30 14:01:10 -070044#endif // AV1_ENCODER_HYBRID_FWD_TXFM_H_