rv_framedesc.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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: rv_framedesc.h,v $
  23. -- $Date: 2009/03/11 14:00:12 $
  24. -- $Revision: 1.1 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. /*****************************************************************************/
  28. #ifndef RV_FRAMEDESC_H
  29. #define RV_FRAMEDESC_H
  30. #include "basetype.h"
  31. typedef struct
  32. {
  33. u32 frameNumber;
  34. u32 frameTimePictures;
  35. u32 picCodingType;
  36. u32 totalMbInFrame;
  37. u32 frameWidth; /* in macro blocks */
  38. u32 frameHeight; /* in macro blocks */
  39. u32 timeCodeHours;
  40. u32 timeCodeMinutes;
  41. u32 timeCodeSeconds;
  42. u32 vlcSet;
  43. u32 qp;
  44. } DecFrameDesc;
  45. #endif /* #ifndef RV_FRAMEDESC_H */