ref: 8ff22bde6837858df5165995ddb29014a6218953
parent: adb8a160f98eae5b4955bb80d78352c27086ee2e
author: Ronald S. Bultje <rbultje@google.com>
date: Mon Oct 29 17:08:59 EDT 2012
decodframe: make local symbol static. Change-Id: Id55f3cd3c2f5857dbfd78703452740dfd63cdf41
--- a/vp8/decoder/decodframe.c
+++ b/vp8/decoder/decodframe.c
@@ -95,7 +95,7 @@
}
}
-void mb_init_dequantizer(VP8D_COMP *pbi, MACROBLOCKD *xd) {
+static void mb_init_dequantizer(VP8D_COMP *pbi, MACROBLOCKD *xd) {
int i;
int QIndex;
VP8_COMMON *const pc = &pbi->common;
--
⑨