From 28164eb9624f716a92e65b8b82c7164a38a44ec0 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" <rbultje@google.com> Date: Fri, 7 Jun 2013 11:44:33 -0700 Subject: [PATCH] Fix segment feature data size. Change-Id: I4331cfd99a717938f4f970cad81c468cbf287b00 --- vp9/common/vp9_seg_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/common/vp9_seg_common.c b/vp9/common/vp9_seg_common.c index e54e6c7cbd..df7747c909 100644 --- a/vp9/common/vp9_seg_common.c +++ b/vp9/common/vp9_seg_common.c @@ -13,7 +13,7 @@ #include "vp9/common/vp9_seg_common.h" static const int seg_feature_data_signed[SEG_LVL_MAX] = { 1, 1, 0, 0 }; -static const int seg_feature_data_max[SEG_LVL_MAX] = { MAXQ, 63, 15, 0 }; +static const int seg_feature_data_max[SEG_LVL_MAX] = { MAXQ, 63, 3, 0 }; // These functions provide access to new segment level features. // Eventually these function may be "optimized out" but for the moment, -- GitLab