2013-09-19 07:35:34 +00:00
|
|
|
#ifndef TRANSFORM_H_
|
|
|
|
#define TRANSFORM_H_
|
2012-06-11 15:43:29 +00:00
|
|
|
/**
|
2013-09-18 14:29:30 +00:00
|
|
|
* \file
|
|
|
|
* \brief Transformations, such as quantization and DST.
|
|
|
|
*
|
|
|
|
* \author Marko Viitanen ( fador@iki.fi ),
|
|
|
|
* Tampere University of Technology,
|
|
|
|
* Department of Pervasive Computing.
|
|
|
|
* \author Ari Koivula ( ari@koivu.la ),
|
|
|
|
* Tampere University of Technology,
|
|
|
|
* Department of Pervasive Computing.
|
2012-06-11 15:43:29 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-18 09:16:03 +00:00
|
|
|
#include "global.h"
|
|
|
|
|
|
|
|
#include "encoder.h"
|
|
|
|
|
|
|
|
|
2013-03-07 15:42:00 +00:00
|
|
|
extern int32_t* g_quant_coeff[4][6][6];
|
2013-09-18 12:12:40 +00:00
|
|
|
extern const int32_t g_quant_intra_default_8x8[64];
|
2013-09-19 10:55:34 +00:00
|
|
|
extern const uint8_t g_chroma_scale[58];
|
|
|
|
|
2013-02-05 13:48:06 +00:00
|
|
|
|
2013-09-18 12:12:40 +00:00
|
|
|
void quant(encoder_control* encoder, int16_t* p_src, int16_t* p_des, int32_t width,
|
|
|
|
int32_t height, uint32_t *ac_sum, int8_t type, int8_t scan_idx );
|
|
|
|
void dequant(encoder_control* encoder, int16_t* q_coef, int16_t* coef, int32_t width, int32_t height,int8_t type);
|
2013-02-05 13:48:06 +00:00
|
|
|
|
2013-09-18 12:12:40 +00:00
|
|
|
void transform2d(int16_t *block,int16_t *coeff, int8_t block_size, int32_t mode);
|
|
|
|
void itransform2d(int16_t *block,int16_t *coeff, int8_t block_size, int32_t mode);
|
2013-03-07 15:42:00 +00:00
|
|
|
|
2013-02-05 13:48:06 +00:00
|
|
|
void scalinglist_init();
|
2013-09-18 12:12:40 +00:00
|
|
|
void scalinglist_process_enc( int32_t *coeff, int32_t *quant_coeff, int32_t quant_scales,
|
|
|
|
uint32_t height,uint32_t width, uint32_t ratio, int32_t size_num, uint32_t dc, uint8_t flat);
|
2013-03-07 15:42:00 +00:00
|
|
|
void scalinglist_process();
|
2013-09-18 12:12:40 +00:00
|
|
|
void scalinglist_set(int32_t *coeff, uint32_t list_id, uint32_t size_id, uint32_t qp);
|
2013-02-05 13:48:06 +00:00
|
|
|
void scalinglist_destroy();
|
2012-06-11 15:43:29 +00:00
|
|
|
|
|
|
|
#endif
|