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

Audio

开发平台:

Visual C++

  1. /*!
  2.  ************************************************************************
  3.  * file
  4.  *     me_fullfast.h
  5.  *
  6.  * author
  7.  *    Alexis Michael Tourapis        <alexis.tourapis@dolby.com>
  8.  *
  9.  * date
  10.  *    9 September 2006
  11.  *
  12.  * brief
  13.  *    Headerfile for Fast Full Search motion estimation
  14.  **************************************************************************
  15.  */
  16. #ifndef _ME_FULLFAST_H_
  17. #define _ME_FULLFAST_H_
  18. int FastFullPelBlockMotionSearch (Macroblock *currMB, imgpel* orig_pic, short ref, int list, int list_offset, 
  19.                                   char ***refPic, short ****tmp_mv, int pic_pix_x, int pic_pix_y, int blocktype, short pred_mv[2], short mv[2],
  20.                               int search_range,  int min_mcost, int lambda_factor, int apply_weights);
  21. void InitializeFastFullIntegerSearch (void);
  22. void ResetFastFullIntegerSearch (void);
  23. void ClearFastFullIntegerSearch (void);
  24. #endif