mp4dechwd_mbsetdesc.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 : algorithm header file
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: mp4dechwd_mbsetdesc.h,v $
  23. -- $Date: 2007/11/26 07:05:05 $
  24. -- $Revision: 1.1 $
  25. ------------------------------------------------------------------------------*/
  26. #ifndef DECMBSETDESC_DEFINED
  27. #define DECMBSETDESC_DEFINED
  28. #include "basetype.h"
  29. #include "dwl.h"
  30. #include "mp4decapi.h"
  31. typedef struct DecMbSetDesc_t
  32. {
  33. u32 *pCtrlDataAddr; /* pointer to asic control bits */
  34. DWLLinearMem_t ctrlDataMem;
  35. u32 *pRlcDataAddr; /* pointer to beginning of asic rlc data */
  36. DWLLinearMem_t rlcDataMem;
  37. u32 *pRlcDataCurrAddr; /* current write address */
  38. u32 *pRlcDataVpAddr; /* pointer to rlc data buffer in the
  39. * beginning of current video packet */
  40. u32 *pMvDataAddr; /* pointer to motion vector data */
  41. DWLLinearMem_t mvDataMem;
  42. u32 *pDcCoeffDataAddr; /* pointer to separately coded DC coeffs */
  43. DWLLinearMem_t DcCoeffMem;
  44. u32 rlcDataBufferSize; /* size of rlc data buffer (u32) */
  45. u32 oddRlc; /* half-word left empty from last rlc */
  46. u32 oddRlcVp; /* half-word left empty from last rlc */
  47. MP4DecOutput outData; /* Return PIC info */
  48. } DecMbSetDesc;
  49. #endif