jpeg_pp_pipeline.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 : JPEG decoder and PP pipeline support
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: jpeg_pp_pipeline.h,v $
  23. -- $Date: 2007/10/22 08:21:36 $
  24. -- $Revision: 1.2 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. #ifndef JPEG_PP_PIPELINE_H
  28. #define JPEG_PP_PIPELINE_H
  29. #include "decppif.h"
  30. i32 jpegRegisterPP(const void *decInst, const void *ppInst,
  31. void (*PPRun) (const void *, DecPpInterface *),
  32. void (*PPEndCallback) (const void *),
  33. void (*PPConfigQuery) (const void *, DecPpQuery *));
  34. i32 jpegUnregisterPP(const void *decInst, const void *ppInst);
  35. #endif /* #ifdef JPEG_PP_PIPELINE_H */