mb_access.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:1k
源码类别:

Audio

开发平台:

Visual C++

  1. /*!
  2.  *************************************************************************************
  3.  * file mb_access.h
  4.  *
  5.  * brief
  6.  *    Functions for macroblock neighborhoods
  7.  *
  8.  * author
  9.  *     Main contributors (see contributors.h for copyright, address and affiliation details)
  10.  *     - Karsten S黨ring          <suehring@hhi.de>
  11.  *************************************************************************************
  12.  */
  13. #ifndef _MB_ACCESS_H_
  14. #define _MB_ACCESS_H_
  15. void CheckAvailabilityOfNeighbors(Macroblock *currMB);
  16. void (*getNeighbour)   (Macroblock *currMB, int xN, int yN, int mb_size[2], PixelPos *pix);
  17. void getAffNeighbour   (Macroblock *currMB, int xN, int yN, int mb_size[2], PixelPos *pix);
  18. void getNonAffNeighbour(Macroblock *currMB, int xN, int yN, int mb_size[2], PixelPos *pix);
  19. void get4x4Neighbour   (Macroblock *currMB, int xN, int yN, int mb_size[2], PixelPos *pix);
  20. int  mb_is_available(int mbAddr, Macroblock *currMB);
  21. void get_mb_pos (int mb_addr, int mb_size[2], int *x, int*y);
  22. void (*get_mb_block_pos) (int mb_addr, int *x, int*y);
  23. void get_mb_block_pos_normal (int mb_addr, int *x, int*y);
  24. void get_mb_block_pos_mbaff (int mb_addr, int *x, int*y);
  25. #endif