mp4dechwd_vlc.h 2.2 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 :
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: mp4dechwd_vlc.h,v $
  23. -- $Date: 2007/11/26 10:06:47 $
  24. -- $Revision: 1.1 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. /*------------------------------------------------------------------------------
  28. Table of context
  29. 1. xxx...
  30. ------------------------------------------------------------------------------*/
  31. #ifndef STRMDEC_VLC_H
  32. #define STRMDEC_VLC_H
  33. #include "basetype.h"
  34. #include "mp4dechwd_container.h"
  35. /* constant definitions */
  36. /* function prototypes */
  37. u32 StrmDec_DecodeMcbpc(DecContainer *, u32, u32, u32 *);
  38. u32 StrmDec_DecodeCbpy(DecContainer *, u32, u32, u32 *);
  39. u32 mp4dechwd_vlcDec(DecContainer * pDecContainer, u32 mbNum, u32 blockNum);
  40. u32 StrmDec_DecodeDcCoeff(DecContainer * pDecContainer, u32 mbNum, u32 blockNum,
  41. i32 * dcCoeff);
  42. u32 StrmDec_DecodeMv(DecContainer * pDecContainer, u32 mbNum);
  43. u32 StrmDec_DecodeVlcBlock(DecContainer * pDecContainer, u32 mbNum,
  44. u32 blockNum);
  45. #endif