Idct.h
上传用户:szklck
上传日期:2007-01-22
资源大小:925k
文件大小:1k
源码类别:

图形图像处理

开发平台:

Visual C++

  1. // Idct.h: interface for the CIdct class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_IDCT_H__D3C9E467_48B2_11D5_9DCC_5254AB2B9F00__INCLUDED_)
  5. #define AFX_IDCT_H__D3C9E467_48B2_11D5_9DCC_5254AB2B9F00__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CIdct  
  10. {
  11. public:
  12. void idctref(short *block);
  13. void init_idctref(void);
  14. void init_idct(void);
  15. void idct(short *block);
  16. CIdct();
  17. virtual ~CIdct();
  18. private:
  19. void idctcol(short *blk);
  20. void idctrow(short *blk);
  21. };
  22. #endif // !defined(AFX_IDCT_H__D3C9E467_48B2_11D5_9DCC_5254AB2B9F00__INCLUDED_)