h264_pp_multibuffer.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 : Dec/PP multibuiffer handling
  17. -
  18. --------------------------------------------------------------------------------
  19. -
  20. - Version control information, please leave untouched.
  21. -
  22. - $RCSfile: h264_pp_multibuffer.h,v $
  23. - $Revision: 1.1 $
  24. - $Date: 2008/08/27 11:59:54 $
  25. -
  26. ------------------------------------------------------------------------------*/
  27. #ifndef H264_PP_MULTIBUFFER_H
  28. #define H264_PP_MULTIBUFFER_H
  29. #include "basetype.h"
  30. #include "dwl.h"
  31. #include "h264hwd_container.h"
  32. void h264PpMultiInit(decContainer_t * pDecCont, u32 maxBuff);
  33. u32 h264PpMultiAddPic(decContainer_t * pDecCont, const DWLLinearMem_t * data);
  34. u32 h264PpMultiRemovePic(decContainer_t * pDecCont,
  35. const DWLLinearMem_t * data);
  36. u32 h264PpMultiFindPic(decContainer_t * pDecCont, const DWLLinearMem_t * data);
  37. #endif /* H264_PP_MULTIBUFFER_H */