2013-02-07 11:51:23 -08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
2013-02-27 11:17:38 -08:00
|
|
|
#ifndef VP9_COMMON_VP9_IDCT_H_
|
|
|
|
#define VP9_COMMON_VP9_IDCT_H_
|
2013-02-07 11:51:23 -08:00
|
|
|
|
2013-02-27 12:29:06 -08:00
|
|
|
#include <assert.h>
|
|
|
|
|
2013-02-07 11:51:23 -08:00
|
|
|
#include "./vpx_config.h"
|
2013-03-07 12:24:35 -08:00
|
|
|
#include "vp9/common/vp9_common.h"
|
2013-10-02 14:13:33 -07:00
|
|
|
#include "vp9/common/vp9_enums.h"
|
2015-07-30 18:53:18 -07:00
|
|
|
#include "vpx_dsp/inv_txfm.h"
|
|
|
|
#include "vpx_dsp/txfm_common.h"
|
|
|
|
#include "vpx_ports/mem.h"
|
2013-02-26 16:27:41 -08:00
|
|
|
|
2014-01-18 12:16:11 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-07-26 16:52:55 -07:00
|
|
|
typedef void (*transform_1d)(const tran_low_t *, tran_low_t *);
|
2013-02-27 11:17:38 -08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
transform_1d cols, rows; // vertical and horizontal
|
|
|
|
} transform_2d;
|
|
|
|
|
2014-09-02 16:34:09 -07:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
2016-07-26 16:52:55 -07:00
|
|
|
typedef void (*highbd_transform_1d)(const tran_low_t *, tran_low_t *, int bd);
|
2013-10-02 14:13:33 -07:00
|
|
|
|
2014-09-02 16:34:09 -07:00
|
|
|
typedef struct {
|
2014-10-08 12:43:22 -07:00
|
|
|
highbd_transform_1d cols, rows; // vertical and horizontal
|
|
|
|
} highbd_transform_2d;
|
2014-09-02 16:34:09 -07:00
|
|
|
#endif // CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
|
|
|
|
void vp9_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
|
|
|
|
int eob);
|
|
|
|
void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
|
|
|
|
int eob);
|
|
|
|
void vp9_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride,
|
|
|
|
int eob);
|
2015-08-03 14:51:10 -07:00
|
|
|
void vp9_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride,
|
|
|
|
int eob);
|
2014-09-02 16:34:09 -07:00
|
|
|
void vp9_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride,
|
2013-10-11 18:27:12 -07:00
|
|
|
int eob);
|
2013-10-02 14:13:33 -07:00
|
|
|
|
2014-09-02 16:34:09 -07:00
|
|
|
void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
|
2013-10-11 15:49:05 -07:00
|
|
|
int stride, int eob);
|
2014-09-02 16:34:09 -07:00
|
|
|
void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
|
2013-10-11 15:49:05 -07:00
|
|
|
int stride, int eob);
|
2014-09-02 16:34:09 -07:00
|
|
|
void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
|
2013-10-11 15:49:05 -07:00
|
|
|
int stride, int eob);
|
2013-10-02 14:13:33 -07:00
|
|
|
|
2014-09-02 16:34:09 -07:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
2014-10-08 12:43:22 -07:00
|
|
|
void vp9_highbd_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
|
2014-09-02 16:34:09 -07:00
|
|
|
int eob, int bd);
|
2014-10-08 12:43:22 -07:00
|
|
|
void vp9_highbd_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
|
2014-09-02 16:34:09 -07:00
|
|
|
int eob, int bd);
|
2014-10-08 12:43:22 -07:00
|
|
|
void vp9_highbd_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride,
|
|
|
|
int eob, int bd);
|
|
|
|
void vp9_highbd_idct16x16_add(const tran_low_t *input, uint8_t *dest,
|
|
|
|
int stride, int eob, int bd);
|
|
|
|
void vp9_highbd_idct32x32_add(const tran_low_t *input, uint8_t *dest,
|
|
|
|
int stride, int eob, int bd);
|
|
|
|
void vp9_highbd_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input,
|
|
|
|
uint8_t *dest, int stride, int eob, int bd);
|
|
|
|
void vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input,
|
2014-09-02 16:34:09 -07:00
|
|
|
uint8_t *dest, int stride, int eob, int bd);
|
2014-10-08 12:43:22 -07:00
|
|
|
void vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input,
|
|
|
|
uint8_t *dest, int stride, int eob, int bd);
|
2014-09-02 16:34:09 -07:00
|
|
|
#endif // CONFIG_VP9_HIGHBITDEPTH
|
2014-01-18 12:16:11 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2013-02-27 11:17:38 -08:00
|
|
|
#endif // VP9_COMMON_VP9_IDCT_H_
|