home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************
- cDCT.h
-
- 03/02/08 Xiaohong
- *************************************************************************/
- #ifndef _INCLUDE_CDCT_H_____________________________________________________
- #define _INCLUDE_CDCT_H_____________________________________________________
-
- /**********************************************************
- cDCT é╠ÉΘî╛
- **********************************************************/
- class cDCT
- {
- public:
- cDCT();
- ~cDCT();
-
- void fDCT(short* pBlock);
- void iDCT(short* pBlock);
- private:
-
- double m_fCoefficients[8][8];
- short m_nIclip[1024];
- short *m_pIclip;
-
- inline void IdctRow(short* pBlock);
- inline void IdctCol(short* pBloxk);
- };
-
- #endif