shithub: libvpx

Download patch

ref: ac220b8d2292b7d12ac9408b6b0449b975e9166e
parent: fe6eff7c55bc2c9a7bfa0e0d15a07b734b4a5436
parent: 07b87075320f03f4843554e2f73bfa4138c4e66c
author: Paul Wilkins <paulwilkins@google.com>
date: Tue Oct 30 03:23:33 EDT 2012

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

--- a/vp8/encoder/mbgraph.c
+++ b/vp8/encoder/mbgraph.c
@@ -357,19 +357,8 @@
   }
 }
 
-// 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];
--