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

Audio

开发平台:

Visual C++

  1. /*!
  2.  ************************************************************************
  3.  * file refbuf.h
  4.  *
  5.  * brief
  6.  *    Declarations of the reference frame buffer types and functions
  7.  ************************************************************************
  8.  */
  9. #ifndef _REBUF_H_
  10. #define _REBUF_H_
  11. // global sub-pel image access variables
  12. int height_pad, width_pad;
  13. int height_pad_cr, width_pad_cr;
  14. imgpel *UMVLine4X (imgpel ****Pic, int y, int x);
  15. imgpel *FastLine4X(imgpel ****Pic, int y, int x);
  16. imgpel *UMVLine8X_chroma (imgpel ****Pic, int y, int x);
  17. imgpel *FastLine8X_chroma(imgpel ****Pic, int y, int x);
  18. #endif