Merge "Make build_inter_predictors static function"

This commit is contained in:
Jingning Han 2015-08-10 16:56:48 +00:00 committed by Gerrit Code Review
commit 3715a914b8
2 changed files with 1 additions and 6 deletions

View File

@ -153,7 +153,7 @@ MV average_split_mvs(const struct macroblockd_plane *pd,
return res;
}
void build_inter_predictors(MACROBLOCKD *xd, int plane, int block,
static void build_inter_predictors(MACROBLOCKD *xd, int plane, int block,
int bw, int bh,
int x, int y, int w, int h,
int mi_x, int mi_y) {

View File

@ -50,11 +50,6 @@ MV average_split_mvs(const struct macroblockd_plane *pd, const MODE_INFO *mi,
MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv,
int bw, int bh, int ss_x, int ss_y);
void build_inter_predictors(MACROBLOCKD *xd, int plane, int block,
int bw, int bh,
int x, int y, int w, int h,
int mi_x, int mi_y);
void vp9_build_inter_predictors_sby(MACROBLOCKD *xd, int mi_row, int mi_col,
BLOCK_SIZE bsize);