summaryrefslogtreecommitdiff
path: root/vp8/encoder
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2012-10-13 08:31:02 -0700
committerRonald S. Bultje <rbultje@google.com>2012-10-14 17:09:08 -0700
commite7a4bccaee301285875bbc0e7133c2a21cb690ec (patch)
tree17e1b585d600893b9a824530975c59b563cbcf79 /vp8/encoder
parent781f6ad7c68eda359526e546d825dfab754170c2 (diff)
downloadlibvpx-e7a4bccaee301285875bbc0e7133c2a21cb690ec.tar
libvpx-e7a4bccaee301285875bbc0e7133c2a21cb690ec.tar.gz
libvpx-e7a4bccaee301285875bbc0e7133c2a21cb690ec.tar.bz2
libvpx-e7a4bccaee301285875bbc0e7133c2a21cb690ec.zip
Make optimize_mb_16x16() static.
It is not used outside this file. Change-Id: Id0947180edab4c5f1f50589863350b21e97c25f1
Diffstat (limited to 'vp8/encoder')
-rw-r--r--vp8/encoder/encodemb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/encoder/encodemb.c b/vp8/encoder/encodemb.c
index cf1c8b3c3..a56305809 100644
--- a/vp8/encoder/encodemb.c
+++ b/vp8/encoder/encodemb.c
@@ -882,7 +882,7 @@ void vp8_optimize_mby_16x16(MACROBLOCK *x, const VP8_ENCODER_RTCD *rtcd) {
optimize_b_16x16(x, 0, PLANE_TYPE_Y_WITH_DC, ta, tl, rtcd);
}
-void optimize_mb_16x16(MACROBLOCK *x, const VP8_ENCODER_RTCD *rtcd) {
+static void optimize_mb_16x16(MACROBLOCK *x, const VP8_ENCODER_RTCD *rtcd) {
vp8_optimize_mby_16x16(x, rtcd);
vp8_optimize_mbuv_8x8(x, rtcd);
}