h264hwd_slice_data.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 : Decode slice data, i.e. macroblocks of a slice, from the stream
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: h264hwd_slice_data.h,v $
  23. -- $Date: 2008/03/13 12:48:06 $
  24. -- $Revision: 1.1 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. /*------------------------------------------------------------------------------
  28. Table of contents
  29. 1. Include headers
  30. 2. Module defines
  31. 3. Data types
  32. 4. Function prototypes
  33. ------------------------------------------------------------------------------*/
  34. #ifndef H264HWD_SLICE_DATA_H
  35. #define H264HWD_SLICE_DATA_H
  36. /*------------------------------------------------------------------------------
  37. 1. Include headers
  38. ------------------------------------------------------------------------------*/
  39. #include "h264hwd_container.h"
  40. #include "basetype.h"
  41. #include "h264hwd_stream.h"
  42. #include "h264hwd_cfg.h"
  43. #include "h264hwd_slice_header.h"
  44. #include "h264hwd_storage.h"
  45. /*------------------------------------------------------------------------------
  46. 2. Module defines
  47. ------------------------------------------------------------------------------*/
  48. /*------------------------------------------------------------------------------
  49. 3. Data types
  50. ------------------------------------------------------------------------------*/
  51. /*------------------------------------------------------------------------------
  52. 4. Function prototypes
  53. ------------------------------------------------------------------------------*/
  54. u32 h264bsdDecodeSliceData( decContainer_t * pDecCont, strmData_t *pStrmData,
  55. sliceHeader_t *pSliceHeader);
  56. void h264bsdMarkSliceCorrupted(storage_t *pStorage, u32 firstMbInSlice);
  57. #endif /* #ifdef H264HWD_SLICE_DATA_H */