00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _ME_FULLSEARCH_H_
00020 #define _ME_FULLSEARCH_H_
00021 extern int FullPelBlockMotionSearch (Macroblock *currMB, MotionVector *pred_mv, MEBlock *mv_block,
00022 int min_mcost, int lambda_factor);
00023 extern int FullPelBlockMotionBiPred (Macroblock *currMB, int list,
00024 MotionVector *pred_mv1, MotionVector *pred_mv2, MotionVector *mv1, MotionVector *mv2, MEBlock *,
00025 int search_range, int min_mcost, int lambda_factor);
00026 extern int SubPelBlockMotionSearch (Macroblock *currMB, MotionVector *pred_mv, MEBlock *mv_block,
00027 int min_mcost, int* lambda_factor);
00028 extern int SubPelBlockSearchBiPred (Macroblock *currMB, MEBlock *mv_block, int list,
00029 MotionVector *pred_mv1, MotionVector *pred_mv2, MotionVector *mv1, MotionVector *mv2,
00030 int min_mcost, int* lambda_factor);
00031
00032 #endif
00033