idct.hh

来自「ac3的解码程序」· HH 代码 · 共 20 行

HH
20
字号
/*   File: idct.hh   Description:   Inverse Discreate Cosine Transformation*/class Idct { private:  short iclip[1024]; // clipping table  short *iclp; protected:  inline void idctrow(short *blk);  inline void idctcol(short *blk); public:  Idct();  ~Idct(){ /* delete clipping table */ };  void conversion(short *block);};

⌨️ 快捷键说明

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