home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Examples / c07 / inc / matrix.h < prev   
Encoding:
C/C++ Source or Header  |  1998-06-23  |  269 b   |  17 lines

  1. #ifndef __MATRIX_H
  2. #define __MATRIX_H
  3.  
  4. #include "jpeg.h"
  5.  
  6. typedef double MATRIX [JpegSampleWidth][JpegSampleWidth] ;
  7.  
  8. void InitializeDctMatrix () ;
  9.  
  10. extern MATRIX DctMatrix ;
  11. extern MATRIX IDctMatrix ;
  12.  
  13. void Multiply (MATRIX, MATRIX, MATRIX) ;
  14.  
  15.  
  16. #endif
  17.