mp4dechwd_mvstorage.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 : Motion vector storage definition
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: mp4dechwd_mvstorage.h,v $
  23. -- $Date: 2007/11/26 08:27:58 $
  24. -- $Revision: 1.1 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. #ifndef DECMVSTORAGE_H_DEFINED
  28. #define DECMVSTORAGE_H_DEFINED
  29. #include "basetype.h"
  30. /* 31 macro blocks, 4 motion vectors each, horizontal and vertical */
  31. enum
  32. {
  33. MV_STORAGE_SIZE = 368
  34. };
  35. typedef struct
  36. {
  37. i32 motionVectors[MV_STORAGE_SIZE];
  38. } DecMvStorage;
  39. #endif