mbgraph: remove unused function, and make local function static.

Change-Id: I295c7bcf13b630cb9395585ede7311d85d785f25
This commit is contained in:
Ronald S. Bultje 2012-10-29 17:59:45 -07:00
Родитель 7944b4f239
Коммит 07b8707532
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
(
VP8_COMP *cpi
) {
static void separate_arf_mbs(VP8_COMP *cpi) {
VP8_COMMON *const cm = &cpi->common;
int mb_col, mb_row, offset, i;
int ncnt[4];