mp4dechwd_mbdesc.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_mbdesc.h,v $
  23. -- $Date: 2007/11/26 07:51:36 $
  24. -- $Revision: 1.1 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. /*****************************************************************************/
  28. #ifndef DECMBDESC_H_DEFINED
  29. #define DECMBDESC_H_DEFINED
  30. #include "basetype.h"
  31. typedef struct DecMBDesc_t
  32. {
  33. u8 typeOfMB; /* inter,interq,inter4v,intra,intraq,stuffing */
  34. u8 errorStatus; /* bit 7 indicates whether mb is concealed or not
  35. * bit 1 indicates if whole macro block was lost
  36. * bit 0 indicates if macro block texture was lost
  37. * (in data partitioned packets) */
  38. } DecMBDesc;
  39. #endif