⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transform.h

📁 H.264编码实现
💻 H
字号:

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

#ifndef _TRANSFORM_H_
#define _TRANSFORM_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]);
void hadamard4x2  (int (*block) [ 4], int (*tblock)[ 4]);
void ihadamard4x2 (int (*tblock)[ 4], int (*block) [ 4]);
void hadamard2x2  (int (*block)[16], int tblock[4]);
void ihadamard2x2 (int block[4], int tblock[4]);

#endif //_TRANSFORM_H_

⌨️ 快捷键说明

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