EncJpegInit.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. -- Abstract :
  17. --
  18. ------------------------------------------------------------------------------*/
  19. /*------------------------------------------------------------------------------
  20. Table of contents
  21. 1. Include headers
  22. 2. Module defines
  23. 3. Data types
  24. 4. Function prototypes
  25. ------------------------------------------------------------------------------*/
  26. #ifndef __ENC_JPEG_INIT_H__
  27. #define __ENC_JPEG_INIT_H__
  28. /*------------------------------------------------------------------------------
  29. 1. Include headers
  30. ------------------------------------------------------------------------------*/
  31. #include "jpegencapi.h"
  32. #include "EncJpegQuantTables.h"
  33. #include "EncJpegInstance.h"
  34. /*------------------------------------------------------------------------------
  35. 2. Module defines
  36. ------------------------------------------------------------------------------*/
  37. /*------------------------------------------------------------------------------
  38. 3. Data types
  39. ------------------------------------------------------------------------------*/
  40. /*------------------------------------------------------------------------------
  41. 4. Function prototypes
  42. ------------------------------------------------------------------------------*/
  43. JpegEncRet JpegInit(const JpegEncCfg * pEncCfg, jpegInstance_s ** instAddr);
  44. void JpegShutdown(jpegInstance_s * data);
  45. #endif