vp6decodemv.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. - Description : ...
  17. -
  18. --------------------------------------------------------------------------------
  19. -
  20. - Version control information, please leave untouched.
  21. -
  22. - $RCSfile: vp6decodemv.h,v $
  23. - $Revision: 1.1 $
  24. - $Date: 2008/04/14 10:13:24 $
  25. -
  26. ------------------------------------------------------------------------------*/
  27. #ifndef __VP6DECODEMV_H__
  28. #define __VP6DECODEMV_H__
  29. #include "basetype.h"
  30. #include "vp6dec.h"
  31. extern const u8 VP6HW_DefaultMvShortProbs[2][7];
  32. extern const u8 VP6HW_DefaultMvLongProbs[2][LONG_MV_BITS];
  33. extern const u8 VP6HW_DefaultIsShortProbs[2];
  34. extern const u8 VP6HW_DefaultSignProbs[2];
  35. extern const u8 VP6HWMvUpdateProbs[2][MV_NODES];
  36. void VP6HWConfigureMvEntropyDecoder(PB_INSTANCE * pbi, u8 FrameType);
  37. #endif /* __VP6DECODEMV_H__ */