home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Library / include / jpdecobk.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-17  |  498 b   |  25 lines

  1. #ifndef __DECOEFBK_H
  2. #define __DECOEFBK_H
  3. //
  4. //  Title:  JPEG Definitions and Utility Functions
  5. //
  6. //  Author:  John M. Miano  miano@colosseumbuilders.com
  7. //
  8.  
  9.  
  10. //
  11. //  Title: JPEG Decoder Coefficient Block Definition
  12. //
  13. //  Author:  John M. Miano  miano@colosseumbuilders.com
  14. //
  15. //  Description:
  16. //
  17. //    This type is used to hold DCT coefficients for a data unit.
  18. //
  19.  
  20. #include "jpeg.h"
  21.  
  22. typedef BYTE2 JpegDecoderCoefficientBlock [JpegSampleWidth][JpegSampleWidth] ;
  23.  
  24. #endif
  25.