h264hwd_cavlc.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 : Context Adaptive Variable Lengtch Code (CAVLC) decoding
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: h264hwd_cavlc.h,v $
  23. -- $Date: 2008/03/13 12:48:06 $
  24. -- $Revision: 1.1 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. #ifndef H264HWD_CAVLC_H
  28. #define H264HWD_CAVLC_H
  29. /*------------------------------------------------------------------------------
  30. 1. Include headers
  31. ------------------------------------------------------------------------------*/
  32. #include "basetype.h"
  33. #include "h264hwd_stream.h"
  34. /*------------------------------------------------------------------------------
  35. 2. Module defines
  36. ------------------------------------------------------------------------------*/
  37. /*------------------------------------------------------------------------------
  38. 3. Data types
  39. ------------------------------------------------------------------------------*/
  40. /*------------------------------------------------------------------------------
  41. 4. Function prototypes
  42. ------------------------------------------------------------------------------*/
  43. u32 h264bsdDecodeResidualBlockCavlc(strmData_t * pStrmData,
  44. u16 * coeffLevel, i32 nc, u32 maxNumCoeff);
  45. #endif /* #ifdef H264HWD_CAVLC_H */