idct.hh
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:0k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.    File: idct.hh
  3.    Description:
  4.    Inverse Discreate Cosine Transformation
  5. */
  6. class Idct {
  7.  private:
  8.   short iclip[1024]; // clipping table
  9.   short *iclp;
  10.  protected:
  11.   inline void idctrow(short *blk);
  12.   inline void idctcol(short *blk);
  13.  public:
  14.   Idct();
  15.   ~Idct(){ /* delete clipping table */ };
  16.   void conversion(short *block);
  17. };