idct.h

来自「用MPEG-4对YUV视频文件编码压缩成divx视频文件」· C头文件 代码 · 共 16 行

H
16
字号
#ifndef _IDCT_H_
#define _IDCT_H_
typedef void (idctFunc) (short *const block);
typedef idctFunc *idctFuncPtr;

extern idctFuncPtr idct;

#ifndef _TRIMEDIA
void idct_int32_init();
idctFunc idct_int32;
#else
idctFunc idct8x8fix;
#endif

#endif							/* _IDCT_H_ */

⌨️ 快捷键说明

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