idct.h 243 B

1234567891011121314
  1. #pragma once
  2. class IDCT
  3. {
  4. public:
  5. void init();
  6. void idct(short *block);
  7. private:
  8. void idctcol(short *blk);
  9. void idctrow(short *blk);
  10. static bool initted;
  11. static short iclip[1024]; /* clipping table */
  12. static short *iclp;
  13. };