idct.h

来自「h263 encoder」· C头文件 代码 · 共 28 行

H
28
字号
// Idct.h: interface for the CIdct class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_IDCT_H__D3C9E467_48B2_11D5_9DCC_5254AB2B9F00__INCLUDED_)
#define AFX_IDCT_H__D3C9E467_48B2_11D5_9DCC_5254AB2B9F00__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CIdct  
{
public:
	void idctref(short *block);
	void init_idctref(void);
	void init_idct(void);
	void idct(short *block);
	CIdct();
	virtual ~CIdct();

private:
	void idctcol(short *blk);
	void idctrow(short *blk);
};

#endif // !defined(AFX_IDCT_H__D3C9E467_48B2_11D5_9DCC_5254AB2B9F00__INCLUDED_)

⌨️ 快捷键说明

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