idctref.h 187 B

1234567891011
  1. #pragma once
  2. class IDCTRef
  3. {
  4. public:
  5. void init();
  6. void idct(short *block);
  7. private:
  8. static bool initted;
  9. static double c[8][8]; /* cosine transform matrix for 8x1 IDCT */
  10. };