summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2011-10-27 12:35:36 +0100
committerPaul Wilkins <paulwilkins@google.com>2011-10-27 12:35:36 +0100
commitafb52f65f239a18135989e238f7ef9bc7b906571 (patch)
tree72f4945b9ec064e240dde036b57271b3e9d5621c
parent4081e5b3fe41a062a42e6171d6c4ebceb85f8d88 (diff)
downloadlibvpx-afb52f65f239a18135989e238f7ef9bc7b906571.tar
libvpx-afb52f65f239a18135989e238f7ef9bc7b906571.tar.gz
libvpx-afb52f65f239a18135989e238f7ef9bc7b906571.tar.bz2
libvpx-afb52f65f239a18135989e238f7ef9bc7b906571.zip
Resolve build problem
Resolved experimental branch build problem when seg_features not configured. Change-Id: Ia0f9b460a26dc3eac9844ee595a7b196e9faf6a5
-rw-r--r--vp8/common/seg_common.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/vp8/common/seg_common.c b/vp8/common/seg_common.c
index ef77dfc53..f7c2afdec 100644
--- a/vp8/common/seg_common.c
+++ b/vp8/common/seg_common.c
@@ -10,6 +10,7 @@
#include "vp8/common/seg_common.h"
+#if CONFIG_SEGFEATURES
const int segfeaturedata_signed[SEG_LVL_MAX] = {1, 1, 0, 0, 0, 0};
@@ -52,4 +53,6 @@ int is_segfeature_signed( SEG_LVL_FEATURES feature_id )
return ( segfeaturedata_signed[feature_id] );
}
-// TBD? Functions to read and write segment data with range / validity checking \ No newline at end of file
+// TBD? Functions to read and write segment data with range / validity checking
+
+#endif