Make optimize_mb_16x16() static.

It is not used outside this file.

Change-Id: Id0947180edab4c5f1f50589863350b21e97c25f1
This commit is contained in:
Ronald S. Bultje 2012-10-13 08:31:02 -07:00
parent 781f6ad7c6
commit e7a4bccaee

View File

@ -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);
}