vc1hwd_pp_pipeline.h 2.0 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 : VC-1 decoder and PP pipeline support
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: vc1hwd_pp_pipeline.h,v $
  23. -- $Date: 2008/12/08 13:44:02 $
  24. -- $Revision: 1.5 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. #ifndef VC1HWD_PP_PIPELINE_H
  28. #define VC1HWD_PP_PIPELINE_H
  29. i32 vc1RegisterPP(const void *decInst, const void *ppInst,
  30. void (*PPDecStartPp) (const void *, DecPpInterface *),
  31. void (*PPDecPipelineEndCallback) (const void *),
  32. void (*PPConfigQuery)(const void *, DecPpQuery *),
  33. void (*PPDisplayIndex)(const void *, u32),
  34. void (*PPBufferData) (const void *, u32, u32, u32));
  35. i32 vc1UnregisterPP(const void *decInst, const void *ppInst);
  36. #endif /* #ifdef VC1HWD_PP_PIPELINE_H */