Merge "mbgraph: remove unused function, and make local function static." into experimental

This commit is contained in:
Paul Wilkins 2012-10-30 07:23:33 -07:00 коммит произвёл Gerrit Code Review
Родитель fe6eff7c55 07b8707532
Коммит ac220b8d22
1 изменённых файлов: 1 добавлений и 12 удалений

Просмотреть файл

@ -357,19 +357,8 @@ static void update_mbgraph_frame_stats
} }
} }
// Test for small magnitude (<= 1 pel mvs)
int small_mv(MV mv) {
if ((abs((int)mv.col) > 2) || (abs((int)mv.row) > 2))
return FALSE;
else
return TRUE;
}
// void separate_arf_mbs_byzz // void separate_arf_mbs_byzz
void separate_arf_mbs static void separate_arf_mbs(VP8_COMP *cpi) {
(
VP8_COMP *cpi
) {
VP8_COMMON *const cm = &cpi->common; VP8_COMMON *const cm = &cpi->common;
int mb_col, mb_row, offset, i; int mb_col, mb_row, offset, i;
int ncnt[4]; int ncnt[4];