transform.h

来自「h.264 影像壓縮 必須在 .net 的環境 下操作」· C头文件 代码 · 共 29 行

H
29
字号

/*!
 ***************************************************************************
 *
 * \file transform4x4.h
 *
 * \brief
*    prototypes of 4x4 transform functions
  *
 * \date
 *    10 July 2007
 *
 * \author
 *    Main contributors (see contributors.h for copyright, address and affiliation details)
 *    Alexis Michael Tourapis
 **************************************************************************/

#ifndef _TRANSFORM4X4_H_
#define _TRANSFORM4X4_H_

void forward4x4   (int (*block) [16], int (*tblock)[16], int pos_y, int pos_x);
void inverse4x4   (int (*tblock)[16], int (*block )[16], int pos_y, int pos_x);
void forward8x8   (int (*block) [16], int (*tblock)[16], int pos_y, int pos_x);
void inverse8x8   (int (*tblock)[16], int (*block )[16], int pos_y, int pos_x);
void hadamard4x4  (int (*block) [ 4], int (*tblock)[ 4]);
void ihadamard4x4 (int (*tblock)[ 4], int (*block) [ 4]);

#endif //_TRANSFORM8X8_H_

⌨️ 快捷键说明

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