rv_strm.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 : Stream decoding top header file
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: rv_strm.h,v $
  23. -- $Date: 2009/03/11 14:00:12 $
  24. -- $Revision: 1.1 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. /*------------------------------------------------------------------------------
  28. Table of context
  29. 1. xxx...
  30. ------------------------------------------------------------------------------*/
  31. #ifndef RV_STRMDEC_H
  32. #define RV_STRMDEC_H
  33. #include "rv_container.h"
  34. enum
  35. {
  36. DEC_RDY,
  37. DEC_HDRS_RDY,
  38. DEC_PIC_HDR_RDY,
  39. DEC_PIC_HDR_RDY_RPR,
  40. DEC_PIC_HDR_RDY_ERROR,
  41. DEC_ERROR,
  42. DEC_END_OF_STREAM
  43. };
  44. /* function prototypes */
  45. u32 rv_StrmDecode(DecContainer * pDecContainer);
  46. #endif /* #ifndef RV_STRMDEC_H */