transform8x8.h

来自「JM 11.0 KTA 2.1 Source Code」· C头文件 代码 · 共 40 行

H
40
字号

/*!
 ***************************************************************************
 *
 * \file transform8x8.h
 *
 * \brief
*    prototypes of 8x8 transform functions
  *
 * \date
 *    9. October 2003
 *
 * \author
 *    Main contributors (see contributors.h for copyright, address and affiliation details) 
 *    Yuri Vatis  vatis@hhi.de
 **************************************************************************/

#ifndef _TRANSFORM8X8_H_
#define _TRANSFORM8X8_H_

#include "global.h"

int    Mode_Decision_for_new_Intra8x8Macroblock (double lambda, int *min_cost);
int    Mode_Decision_for_new_8x8IntraBlocks (int b8, double lambda, int *min_cost);

void   intrapred_luma8x8(int img_x,int img_y, int *left_available, int *up_available, int *all_available);

double RDCost_for_8x8IntraBlocks(int *c_nz, int b8, int ipmode, double lambda, double min_rdcost, int mostProbableMode);

#ifdef USE_INTRA_MDDT
int    klt_luma8x8_sep_fast(int b8, int *coeff_cost, int ipmode);
int    dct_luma8x8(int b8,int *coeff_cost, int intra, int ipmode);
#else
int    dct_luma8x8(int b8,int *coeff_cost, int intra);
#endif

void   LowPassForIntra8x8Pred(int *PredPel, int block_up_left, int block_up, int block_left);

#endif //_TRANSFORM8X8_H_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?