jpegdechdrs.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*------------------------------------------------------------------------------
  2. -- --
  3. -- This software is confidential and proprietary and may be used --
  4. -- only as expressly authorized by a licensing agreement from --
  5. -- --
  6. -- Hantro Products Oy. --
  7. -- --
  8. -- (C) COPYRIGHT 2006 HANTRO PRODUCTS OY --
  9. -- ALL RIGHTS RESERVED --
  10. -- --
  11. -- The entire notice above must be reproduced --
  12. -- on all copies and should not be removed. --
  13. -- --
  14. --------------------------------------------------------------------------------
  15. --
  16. -- Description : Jpeg decoder header decoding header file
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: jpegdechdrs.h,v $
  23. -- $Revision: 1.1 $
  24. -- $Date: 2007/03/30 05:44:50 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. /*------------------------------------------------------------------------------
  28. Table of contents
  29. 1. Include headers
  30. 2. Module defines
  31. 3. Data types
  32. 4. Function prototypes
  33. ------------------------------------------------------------------------------*/
  34. #ifndef JPEGDECHDRS_H
  35. #define JPEGDECHDRS_H
  36. /*------------------------------------------------------------------------------
  37. 1. Include headers
  38. ------------------------------------------------------------------------------*/
  39. #include "basetype.h"
  40. #include "jpegdeccontainer.h"
  41. /*------------------------------------------------------------------------------
  42. 2. Module defines
  43. ------------------------------------------------------------------------------*/
  44. /*------------------------------------------------------------------------------
  45. 3. Data types
  46. ------------------------------------------------------------------------------*/
  47. /*------------------------------------------------------------------------------
  48. 4. Function prototypes
  49. ------------------------------------------------------------------------------*/
  50. JpegDecRet JpegDecDecodeFrameHdr(JpegDecContainer * pDecData);
  51. JpegDecRet JpegDecDecodeQuantTables(JpegDecContainer * pDecData);
  52. JpegDecRet JpegDecDecodeHuffmanTables(JpegDecContainer * pDecData);
  53. JpegDecRet JpegDecMode(JpegDecContainer * pDecData);
  54. JpegDecRet JpegDecMode(JpegDecContainer *);
  55. #endif /* #ifdef MODULE_H */