shithub: libvpx

Download patch

ref: 10afa9e2295f56faa6696bd8c48d99510bbaec0d
parent: edd66a996c0a2fa28fc0eee14d8a715db4945bff
parent: 8166657109215a34c0bfb58407258aa18961ea64
author: Paul Wilkins <paulwilkins@google.com>
date: Tue Oct 30 04:18:10 EDT 2012

Merge "Make implicit_segmentation-related code an experiment." into experimental

--- a/configure
+++ b/configure
@@ -224,6 +224,7 @@
     switchable_interp
     newbestrefmv
     new_mvref
+    implicit_segmentation
 "
 CONFIG_LIST="
     external_build
--- a/vp8/vp8_common.mk
+++ b/vp8/vp8_common.mk
@@ -78,7 +78,7 @@
 VP8_COMMON_SRCS-yes += common/swapyv12buffer.c
 VP8_COMMON_SRCS-$(CONFIG_POSTPROC_VISUALIZER) += common/textblit.c
 VP8_COMMON_SRCS-yes += common/treecoder.c
-VP8_COMMON_SRCS-yes += common/implicit_segmentation.c
+VP8_COMMON_SRCS-$(CONFIG_IMPLICIT_SEGMENTATION) += common/implicit_segmentation.c
 
 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/idct_x86.h
 VP8_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/subpixel_x86.h
--